aboutsummaryrefslogtreecommitdiff
path: root/assets/css/_root.scss
blob: 568691e5d57ee2ba32ce2bf2d5b72ca6ade46d46 (plain)
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
:root {
	--font-heading: "Roboto Slab", "Segoe UI";
	--font-body: Arial, Helvetica, sans-serif;
	--font-mono: "Fira Code", "Consolas" , monospace;

	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	font-family: var(--font-body);

	--body-background: #efefef;
	--body-color: #212121;

	--header-background: #ffffff;
	--header-color: var(--accent-1);

	--footer-background: #212121;
	--footer-color: #ffffff;

	--accent-1: hsl(152, 90%, 20%);
	--accent-2: hsl(152, 90%, 30%);
	--accent-3: hsl(152, 90%, 40%);
	--accent-4: hsl(152, 90%, 60%);
	--accent-5: hsl(152, 90%, 80%);

	--shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
}

$floatingRadius: 0.5rem;

$breakpointTablet: 480px;
$breakpointDesktop: 1024px;