-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle-base.css
More file actions
78 lines (76 loc) · 1.11 KB
/
style-base.css
File metadata and controls
78 lines (76 loc) · 1.11 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
font-size: 100%;
/* 16px */
}
body {
font-family: Georgia, serif;
letter-spacing: -0.01em;
word-spacing: 0.2em;
line-height: 1.8em;
width: 98%;
}
h1 {
font-size: 1.75rem;
/* 35px/16px */
color: black;
/* purple_400 */
}
h2 {
font-size: 1.5rem;
/* 28px/16px */
color: red;
/* red_400 */
}
h3 {
font-size: 1.05rem;
color: black;
/* blue_400 */
}
p {
text-indent: 0em;
margin-top: 0em;
}
ul{
margin-top: 0.5em;
}
li{
margin-bottom: 0.5em;
}
input,
select,
textarea,
xmp,
pre,
code {
font-family: inherit;
font-size: inherit;
}
/* :::: 可伸缩图像 :::: */
img {
max-width: 100%;
}
/* :::: 链接 :::: */
a {
color: blue;
}
a:link {
color: blue;
/* a red */
text-decoration: none;
}
a:visited {
color: #b44f4f;
}
a:hover {
color: #f00;
text-decoration: underline;
}
em {
font-style: normal;
font-weight: bold;
}