-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.css
61 lines (51 loc) · 1.21 KB
/
global.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
:root {
--very-green: rgb(110, 231, 183);
--very-black: #101010;
--font-primary: 'Nova Mono';
--font-secondary: 'Space Mono';
}
::selection {
background-color: var(--very-green);
color: var(--very-black);
}
@font-face {
font-family: 'Nova Mono';
font-style: normal;
font-weight: 400;
src: local(''),
url('/fonts/nova-mono-v13-latin-regular.woff2') format('woff2'),
url('/fonts/nova-mono-v13-latin-regular.woff') format('woff');
}
@font-face {
font-family: 'Space Mono';
font-style: normal;
font-weight: 400;
src: local(''),
url('/fonts/space-mono-v6-latin-regular.woff2') format('woff2'),
url('/fonts/space-mono-v6-latin-regular.woff') format('woff');
}
@font-face {
font-family: 'Space Mono';
font-style: normal;
font-weight: 700;
src: local(''), url('/fonts/space-mono-v6-latin-700.woff2') format('woff2'),
url('/fonts/space-mono-v6-latin-700.woff') format('woff');
}
body {
background-color: var(--very-black);
font-family: var(--font-primary);
}
p a,
li a {
color: var(--very-green);
}
p a:hover,
li a:hover {
text-decoration: underline;
}
._font-secondary {
font-family: var(--font-secondary);
}
._very-shadow {
box-shadow: 8px 8px 0px var(--very-green);
}