-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmystyles.scss
59 lines (50 loc) · 1.31 KB
/
mystyles.scss
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
/*-- scss:defaults --*/
// Fonts
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
// Colors
$black: #262406;
$white: #ffffff;
$primary: #042940;
$secondary: #005C53;
$accent1: #DBF227;
$accent2: #DB8655;
$accent3: #62771B;
// Base document colors
$navbar-bg: $primary; // navbar
$sidebar-bg: $accent3; // sidebar
$navbar-fg: $accent2; // navbar foreground elements
$navbar-hl: $accent1; // highlight color when hovering over navbar links
$body-bg: $white; // page background
$body-color: $black; // page text
$footer-bg: $secondary; // footer
$footer-fg: $accent1; // footer
$link-color: $secondary; // hyperlinks
/*-- scss:rules --*/
// CSS rules
h1 {
font-family: Raleway;
font-size: 2.5rem;
font-weight: 600;
color: $accent2;
text-transform: uppercase;
}
h2 {
color: $secondary;
font-family: Raleway;
font-size: 2.0rem;
font-weight: 600;
}
h3 {
color: $secondary;
font-family: Raleway;
font-size: 1.5rem;
font-weight: 500;
}
.sidebar-title {
color: $primary;
font-family: Raleway;
font-weight: 600;
}