-
Notifications
You must be signed in to change notification settings - Fork 0
/
css-category.css
48 lines (40 loc) · 1.2 KB
/
css-category.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*========================================有分类目录使用 category 第一个目录表 id="table-content" */
#table-content td:first-child {
width: 33%;
}
/* #table-content th:nth-child(2) { width: 80%; } */
#table-content td:last-child {
width: 33%;
}
/*========================================有分类目录使用 category 第一个目录表 id="table-content" */
/*========================================所有表格都按照如下比例显示 */
td:nth-child(1) {
width: 25%;
}
/* td:nth-child(2) {
width: 60%;
} */
td:nth-child(3) {
width: 15%;
}
/*========================================所有表格都按照如下比例显示 */
/*========================================返回主页的 a 标签的样式 */
.a-button {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 16px;
font-weight: bold;
padding: 10px 20px;
border: 2px solid #4c4c4c;
border-radius: 16px;
text-transform: uppercase;
letter-spacing: 1px;
background-color: #fff;
color: #4c4c4c;
transition: background-color 0.3s ease;
cursor: pointer;
}
.a-button:hover {
background-color: #4c4c4c;
color: #fff;
}
/*========================================返回主页的 a 标签的样式 */