-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathimgweb.css
76 lines (68 loc) · 1.26 KB
/
imgweb.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
64
65
66
67
68
69
70
71
72
73
74
75
76
body {
font-family: miranafont, "Hiragino Sans GB", STXihei, "Microsoft YaHei", SimSun, sans-serif;
}
body::before {
content: '';
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
will-change: transform;
z-index: -1;
background-image: url('/');
background-repeat: no-repeat;
background-position: top right;
background-size: cover;
}
.content {
position: fixed;
height: 100%;
width: 100%;
top: 0;
left: 0;
display: -webkit-box;
-webkit-box-pack: center;
-webkit-box-align: center;
}
.content::before {
content: '';
position: absolute;
will-change: transform;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: -1;
background-image: url(grid.png);
background-attachment: fixed;
}
.warp {
color: #EAEADF;
padding: 4px 10px;
border-radius: 13px;
background: rgba(0, 0, 0, .7);
}
h3 {
margin: 10px 0;
padding: 0;
border-bottom: 1px solid #ccc;
color: #eee;
font-weight: normal;
font-size: 21px;
line-height: 1.5;
}
h3:before {
content: "「";
margin-right: 5px;
color: #FF6D6D;
}
h3:after {
content: "」";
margin-left: 5px;
color: #FF6D6D;
}
li {
font-size: 16.8px;
margin: 10px 0;
}