-
Notifications
You must be signed in to change notification settings - Fork 3
/
stylesheet.css
71 lines (55 loc) · 1002 Bytes
/
stylesheet.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
header, main, footer {
padding-left: 300px;
}
@media only screen and (max-width : 992px) {
header, main, footer {
padding-left: 0;
}
}
body.light-mode {
background-color: white;
color: black;
}
body.dark-mode {
background-color: #202123;
color: white;
}
body.light-mode h2 {
color: #8d6e63;
}
body.dark-mode h2 {
color: #a1887f;
}
body.light-mode #toggle-mode {
background-color: #8d6e63;
}
body.dark-mode #toggle-mode {
background-color: #a1887f;
}
body.light-mode #nav-mobile {
background-color: white;
}
body.dark-mode #nav-mobile {
background-color: #202123;
}
body.light-mode li a {
color: black;
}
body.dark-mode li a {
color: white;
}
body.light-mode .subheader {
color: #595959 !important;
}
body.dark-mode .subheader {
color: #ABABAB !important;
}
body.light-mode nav {
background-color: #8d6e63;
}
body.dark-mode nav {
background-color: #a1887f;
}
body, h2, #toggle-mode, #nav-mobile, a, nav {
transition: background-color 1s ease, color 1s ease;
}