-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathshared.css
103 lines (101 loc) · 1.88 KB
/
shared.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
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
@font-face {
font-family: "Barlow";
src: url("fonts/Barlow-Regular.ttf");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Barlow";
src: url("fonts/Barlow-Regular.ttf");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Barlow";
src: url("fonts/Barlow-Italic.ttf");
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: "Barlow";
src: url("fonts/Barlow-Bold.ttf");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Barlow";
src: url("fonts/Barlow-BoldItalic.ttf");
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: "Barlow";
src: url("fonts/Barlow-Thin.ttf");
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: "Barlow";
src: url("fonts/Barlow-ThinItalic.ttf");
font-weight: 100;
font-style: italic;
}
/* https://colorkit.co/palette/fff500-00ff75-cd76ea-ffb443-ff5e5e-39dbff/ */
:root {
--yellow: #fff500;
--green: #00ff75;
--purple: #cd76ea;
--orange: #ffb443;
--red: #ff5e5e;
--blue: #39dbff;
--contrasted: #00819e;
--content-width: 80rem;
--spec-width: 800px;
--header-font-size: 1.6rem;
--brutal-border: 5px solid #000;
}
html, body {
margin: 0;
padding: 0;
font-family: Barlow;
}
main {
max-width: var(--content-width);
margin: auto;
min-height: 100vh;
padding: 1rem;
}
dd {
margin-bottom: 1rem;
}
a {
color: var(--contrasted);
text-decoration-thickness: 3px;
text-decoration-color: var(--blue);
}
a:hover {
text-decoration-color: var(--red);
}
dfn {
font-style: normal;
font-weight: 700;
}
var {
text-decoration: underline;
text-decoration-thickness: 3px;
text-decoration-color: #ccc;
}
code {
font-size: 1rem;
}
.early {
display: inline-block;
color: orangered;
font-weight: bold;
margin-left: 1rem;
}
.early::before, .early::after {
display: inline-block;
margin: 0 0.5rem;
content: "💥";
}