-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (99 loc) · 2.08 KB
/
style.css
File metadata and controls
123 lines (99 loc) · 2.08 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
:root {
--footer-bg-color: white;
--footer-text-color: black;
--thm-l-accent: #022d62;
--thm-l-background-primary: #ccd5e0;
--thm-l-background-secondary: #e4e7eb;
--thm-l-background-tertiary: #fff;
--thm-l-border-primary: #bbb;
--thm-l-border-secondary: #ddd;
--thm-l-text-primary: #444;
--thm-l-text-secondary: #666;
--thm-l-text-tertiary: #bbb;
--thm-d-accent: #3c7bc7;
--thm-d-background-primary: #1d1d1d;
--thm-d-background-secondary: #262626;
--thm-d-background-tertiary: #323232;
--thm-d-background-tertiary-hover: #444444;
--thm-d-background-modifier-hover: #44444480;
--thm-d-border-primary: #444444;
--thm-d-border-secondary: #3a3a3a;
--thm-d-text-primary: #eee;
--thm-d-text-secondary: #aaa;
--thm-d-text-tertiary: #666;
--thm-d-modal-backdrop: #0a0a0aa0;
}
@font-face {
font-family: "Cascadia Mono";
src: local("Cascadia Mono"), url(assets/fonts/CascadiaMono.ttf);
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
hr,
dl,
dd,
ol,
ul,
figure {
margin: 0;
padding: 0;
}
/* --- */
footer {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding-bottom: 12px;
text-align: center;
background-color: var(--footer-bg-color);
}
/* --- */
#footer-content {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
text-align: center;
}
#footer-content * {
margin-inline: 16px;
}
/* --- */
footer hr {
width: 24px;
border: solid var(--footer-text-color) 0.7px;
opacity: 0.6;
margin-bottom: 12px;
transition: width 0.2s;
}
footer:hover hr {
width: 192px;
transition: width 0.2s;
}
/* --- */
footer a:link {
text-decoration: underline;
text-underline-offset: 2.25px;
text-decoration-thickness: 1.5px;
color: var(--footer-text-color);
background-color: none;
transition: background-color 0.2s, color 0.2s;
}
footer a:visited {
color: var(--footer-text-color);
}
footer a:hover {
text-decoration: none;
color: var(--footer-bg-color);
background-color: var(--footer-text-color);
transition: background-color 0.2s, color 0.2s;
}