-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (55 loc) · 905 Bytes
/
Copy pathstyle.css
File metadata and controls
64 lines (55 loc) · 905 Bytes
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
/* Define global CSS variables */
:root {
--bg: #ebdbb2;
--text: #282828;
--link: #b57614;
--head: #076678;
}
/* Dark theme */
@media (prefers-color-scheme: dark) {
:root {
--bg: #282828;
--text: #fbf1c7;
--link: #fabd2f;
--head: #83a598;
}
}
/* global */
html {
font-family: monospace;
}
/* body */
body {
color: var(--text);
background-color: var(--bg);
font-size: 18px;
padding-left: 50px;
padding-right: 50px;
}
h1 {
color: var(--head);
font-weight: bold;
font-size: 50px;
text-align: center;
padding-left: 20px;
}
h2 {
font-weight: bold;
text-align: center;
}
#Intro {
padding-left: 250px;
padding-right: 250px;
text-align: center;
}
#fire {
display: block;
margin: 0 auto;
}
a {
color: var(--link);
}
a:hover {
color: var(--head);
font-size: 20px;
}