-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (79 loc) · 1.22 KB
/
style.css
File metadata and controls
92 lines (79 loc) · 1.22 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body {
font-family: Arial, sans-serif;
background: #17181c;
margin: 0;
padding: 0;
color: #e2e2e2;
}
.container {
max-width: 500px;
margin: 40px auto;
padding: 24px;
background: #23243a;
border-radius: 10px;
box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
h1, h2 {
margin: 0;
text-align: center;
}
h1 {
font-size: 2em;
margin-bottom: 10px;
}
h2 {
font-size: 1.15em;
font-weight: normal;
color: #8bd5d5;
margin-bottom: 16px;
}
.desc {
margin-bottom: 18px;
line-height: 1.6;
}
.section-title {
font-size: 1.1em;
margin-top: 22px;
color: #42e0e0;
border-bottom: 1px solid #32343f;
padding-bottom: 4px;
margin-bottom: 7px;
}
ul {
padding-left: 22px;
}
a {
color: #66d9ef;
text-decoration: none;
transition: color 0.15s;
}
a:hover {
color: #ae81ff;
text-decoration: underline;
}
.footer {
text-align: center;
margin-top: 28px;
color: #888;
font-size: 0.95em;
}
#sprite {
position: fixed;
/*top: 20px; */
bottom: 20px;
right: 20px;
width: 128px;
z-index: 1000;
pointer-events: none;
}
@media (max-width: 540px) {
body {
padding: 0 8px 24px;
}
.container {
margin: 24px auto;
padding: 20px;
width: 100%;
box-sizing: border-box;
}
}