-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.css
58 lines (49 loc) · 795 Bytes
/
common.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
body {
font-family: Microsoft Yahei;
font-size: 35px;
font-weight: 100;
color: #fbfdfe;
text-align: center;
background: #2a2a2a;
padding: 50px;
}
@media screen and (max-width: 1000px) {
body {
font-size: 30px;
}
}
@media screen and (max-width: 500px) {
body {
font-size: 25px;
}
}
.title {
overflow: hidden;
height: 100px;
line-height: 100px;
}
.title:after {
content: '——';
margin-left: 20px;
}
.title:before {
content: '——';
margin-right: 20px;
}
.subtitle {
font-size: 12px;
position: relative;
top: -30px;
}
.subtitle a {
color: #fff;
}
.note {
text-align: left;
margin-top: 50px;
font-size: 14px;
line-height: 1.5;
}
.note hr {
border-color: #aaa;
}