-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (68 loc) · 1.09 KB
/
style.css
File metadata and controls
83 lines (68 loc) · 1.09 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
:root {
color-scheme: light dark;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
body {
width: 960px;
margin: 0px auto 40px;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
overflow-y: scroll;
}
a {
text-decoration: none;
color: rgb(0, 0, 255);
}
a:hover {
text-decoration: underline;
}
a:visited {
color: rgb(0, 0, 255);
}
main {
padding-top: 1px;
}
main header h2 {
margin-left: 20px;
margin-top: 40px;
margin-bottom: 50px;
font-size: 18pt;
}
.back, .back a {
font-size: 11pt;
color: #666;
}
.back i {
margin-right: 2px;
}
p.back i {
font-size: 10pt;
color: #888;
margin-right: 3px;
}
@media (prefers-color-scheme: dark) {
body {
background-color: rgb(39, 39, 37);
color: #eee;
}
a {
color: rgb(0, 133, 255);
}
a:visited {
color: rgb(0, 133, 255);
}
.back, .back a {
color: #888;
}
p.back i {
color: #888;
}
}