-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
75 lines (61 loc) · 1.08 KB
/
style.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
body {
margin: 40px auto;
max-width: 650px;
line-height: 1.6;
font-size: 18px;
padding: 0 10px;
font-family: "Inter",
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Helvetica,
Arial,
sans-serif,
"Apple Color Emoji",
"Segoe UI Emoji";
}
#domains {
font-size: 14px;
background-color: #F1F1F1;
}
a {
color: #0077aa;
text-decoration: none;
}
a:hover {
color:#4882e0;
}
h1, h2, h3 {
line-height: 1.2;
}
.erisa {
color: #C63B65;
}
ul {
list-style-type: none;
margin-top: 0px;
}
p {
margin-bottom: 9px;
}
li::before {
content: "- ";
}
@media (prefers-color-scheme: dark) {
body {
background-color: #1e1e1e;
color: white;
}
a {
color: #3391ff;
}
}
/* inter-regular - latin */
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
unicode-range: U+0-7C,U+7D-FFFF;
src: local(''),
url('../fonts/inter-v8-latin-regular.woff2') format('woff2') /* Chrome 26+, Opera 23+, Firefox 39+ */
}