Better looking CSS custom styles (title h1 h2 h3)

Better looking CSS custom styles (title h1 h2 h3)

Rendering

Commonly used styles in Blog Garden

/*Title h1 h2 h3 style*/
#content {
    color: black;
    font: 0.875em/1.5em"Microsoft YaHei", "PTSans", "Arial", sans-serif;
    font-size: 16px;
}
#content h1 {
    background: #2B6695;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
    color: #FFFFFF;
    font-family:"Microsoft YaHei", "Songti", "HeiTi", Arial;
    font-size: 18px;
    font-weight: bold;
    height: 25px;
    line-height: 25px;
    margin: 18px 0 !important;
    padding: 8px 0 5px 5px;
    text-shadow: 2px 2px 3px #222222;
}
#content h2 {
    background: #2B6600;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
    color: #FFFFFF;
    font-family:"Microsoft YaHei", "Songti", "HeiTi", Arial;
    font-size: 15px;
    font-weight: bold;
    height: 24px;
    line-height: 23px;
    margin: 12px 0 !important;
    padding: 5px 0 5px 10px;
    text-shadow: 2px 2px 3px #222222;
}
#content h3 {
    background: #5B9600;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
    color: #FFFFFF;
    font-family:"Microsoft YaHei", "Songti", "HeiTi", Arial;
    font-size: 13px;
    font-weight: bold;
    height: 24px;
    line-height: 20px;
    margin: 12px 0 !important;
    padding: 5px 0 5px 10px;
    text-shadow: 2px 2px 3px #222222;
}

Button Style

CSS

/*Recommend/Dislike button*/
#div_digg {
    position:fixed;
    bottom:10px;
    width:140px;
    right:390px;
    border:2px solid #6FA833;
    padding:10px;
    background-color:#fff;
    border-radius:5px 5px 5px 5px !important;
    box-shadow:0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
}

The above is the details of the more beautiful CSS custom styles (title h1 h2 h3). For more information about CSS custom h2 h3 styles, please pay attention to other related articles on 123WORDPRESS.COM!

<<:  A brief discussion on several situations where adding indexes to MySQL does not take effect

>>:  html a link tag title attribute line break mouse hover prompt content line break effect

Recommend

JS uses map to integrate double arrays

Table of contents Preface Simulating data Merged ...

Tutorial on installing MySQL 8.0.11 under Linux

1. Go to the official website to download the ins...

Vue uses v-model to encapsulate the entire process of el-pagination components

Use v-model to bind the paging information object...

Getting Started Tutorial on Using TS (TypeScript) in Vue Project

Table of contents 1. Introducing Typescript 2. Co...

CentOS6.9+Mysql5.7.18 source code installation detailed tutorial

CentOS6.9+Mysql5.7.18 source code installation, t...

MySQL pessimistic locking and optimistic locking implementation

Table of contents Preface Actual Combat 1. No loc...

How to view the storage location of MySQL data files

We may have a question: After we install MySQL lo...

Selection and thinking of MySQL data backup method

Table of contents 1. rsync, cp copy files 2. sele...

Hexadecimal color codes (full)

Red and pink, and their hexadecimal codes. #99003...

How to create, start, and stop a Docker container

1. A container is an independently running applic...

UDP connection object principle analysis and usage examples

I wrote a simple UDP server and client example be...