summaryrefslogtreecommitdiff
path: root/css/main.scss
blob: 46e22fcda217293312fc6aaee0a1216622e52a4d (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
@import "fonts";

$backgroundColour: oklch(20% 0.041075 270);
$foregroundColour: oklch(25% 0.041075 270);
$textColour:       oklch(100% 0 0);
$highlightColour:  oklch(75% 0.292700 149.34);

$achernarColour: #007B34;

:root {
	font-family: "Raleway", "sans-serif";

	background-color: $backgroundColour;
	color:            $textColour;
}

* {
	margin:  0;
	padding: 0;

	box-sizing: border-box;
}

ol, ul {
	list-style-type: none;
}

li p::before {
	content: "\2014\0020";
}

@import "navigationBar.scss";
@import "frontPage.scss";
@import "content.scss";