-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
63 lines (63 loc) · 1.5 KB
/
style.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
:root {
--dombg-light: #e8ecf3;
--dombg-dark: #4d698e;
--domtext: #667c99;
--border-radius: 4px;
}
/* 给按钮之类的元素添加基本样式 */
.basicTheme {
display: block;
padding: 0.5em 1em;
margin: 1px 0.3em;
box-sizing: border-box;
font-size: 16px;
line-height: 1.5;
color: var(--domtext);
background-color: var(--dombg-light);
border: 2px solid transparent;
border-radius: var(--border-radius);
transition: border-color .2s, background .2s;
appearance: none;
}
/* 如果需要focus效果则继续添加此类 */
/* 比如下拉框、文本框 */
.basicTheme-focus:focus {
background-color: white;
outline-color: var(--dombg-dark);
}
/* 如果要深色背景色则添加此类(默认浅色背景) */
.darkbg {
background-color: var(--dombg-dark);
color: var(--dombg-light);
}
/* 默认的浅色背景 在basicTheme类中已经设置了 */
.lightbg {
background-color: var(--dombg-light);
color: var(--domtext);
}
/* 字体加粗 */
.blod {
font-weight: bold;
}
/* 居中 用于div */
.center-div {
width: fit-content;
display: flex;
justify-content: center;
align-items: center;
margin: 0.8em auto;
flex-wrap: wrap;
}
/* 给div用的,内容是checkbox和文字 */
.check-div {
display: flex;
align-items: center;
font-size: inherit;
margin: 0 0.5em;
color: var(--domtext);
}
/* 用于标题的文字(深色加粗) */
.intro {
color: var(--dombg-dark);
font-weight: bold;
}