blob: 76874793be1cee17f1bae22d02edc5f9f565e2aa (
plain) (
blame)
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
|
$monospaceFont: "Fira Mono", "monospace";
$contentWidth: 72rem;
$padding: 1rem;
$separatorWidth: 0.25rem;
$shadowColour: color-mix(in srgb, black, transparent 50%);
:root {
font-family: "Raleway", "sans-serif";
scroll-behavior: smooth;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
--backgroundColour: oklch( 25% 0 0);
--foregroundColour: oklch( 20% 0 0);
--textColour: oklch(100% 0 0);
background-color: var(--backgroundColour);
color: var(--textColour);
z-index: -1;
// Default.
//&.dark { }
&.light {
--backgroundColour: oklch(96.875% 0 0);
--foregroundColour: oklch(93.750% 0 0);
--textColour: oklch(25% 0 0);
}
}
a, a:visited {
color: var(--textColour);
}
code {
font-family: $monospaceFont;
}
ul {
list-style: none;
li p::before {
content: "\2022\0020";
}
}
@import "header.scss";
@import "page.scss";
@import "footer.scss";
|