-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.scss
More file actions
92 lines (71 loc) · 1.48 KB
/
App.scss
File metadata and controls
92 lines (71 loc) · 1.48 KB
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
@use "bootstrap/scss/functions" as *;
@use "bootstrap/scss/mixins" as *;
$body-color: #131214;
$body-secondary-color: #580078;
$body-tertiary-color: #fbf5fe;
$body-primary-bg: #fbf5fe;
$body-tertiary-bg: #52277c;
$font-family-base: "National Park";
$hr-color: #cf45ff;
@use "bootstrap/scss/bootstrap";
body {
background-color: $body-primary-bg !important;
font-family: "National Park", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
color: $body-secondary-color !important;
font-family: "Varela Round", sans-serif;
font-weight: bolder;
}
.nav-link {
font-family: "Varela Round", sans-serif;
font-weight: bolder;
}
#root {
min-height: 100vh;
display: flex;
flex-flow: column;
}
.nav {
.nav-link {
font-weight: 500 !important;
}
@-moz-document url-prefix() {
.nav-link {
font-weight: 600 !important;
}
}
.nav-link.active {
border-bottom-width: 3px;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
.nav-link:hover {
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
a:hover {
text-decoration: none !important;
}
}
a {
color: $body-color !important;
text-decoration: none !important;
}
a:hover {
text-decoration: underline !important;
}
.colored-bg {
color: $body-tertiary-color;
background-color: $body-tertiary-bg;
a {
color: $body-tertiary-color !important;
}
}
.footer {
margin-top: auto;
}
hr.hr {
border-color: $hr-color !important;
opacity: 0.5 !important;
}