-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjargon.css
More file actions
75 lines (65 loc) · 1.3 KB
/
jargon.css
File metadata and controls
75 lines (65 loc) · 1.3 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
:root {
--body-bg: #fafafa;
--body-color: #555;
--link-color: #222;
--link-color-hover: #000;
}
@media (prefers-color-scheme: dark) {
:root {
--body-bg: #212529;
--body-color: #6c757d;
--link-color: #dee2e6;
--link-color-hover: #fff;
}
}
body {
color: #222;
background: #fff;
}
a {
color: #0033cc;
}
body.dark-theme {
color: #eee;
background: #061626;
}
body.dark-theme a {
color: #809fff;
}
h1 {
margin-top: 35% !important;
font-family: 'Noto Serif', serif !important;
font-weight: 700 !important;
}
p {
font-family: 'EB Garamond', serif !important;
}
.page-header {
border-bottom: 1px solid #888 !important;
}
.footer {
text-align: right !important;
background-color: #f5f5f5;
}
.container {
max-width: 540px !important;
-webkit-animation: fadein .5s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein .5s; /* Firefox < 16 */
-ms-animation: fadein .5s; /* Internet Explorer */
-o-animation: fadein .5s; /* Opera < 12.1 */
animation: fadein .5s;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}