-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.scss
45 lines (32 loc) · 1.1 KB
/
theme.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
/*-- scss:defaults --*/
$darkblue: #08306b;
$lightblue: #4292c6;
$white: #ffffff;
$lightgray: #f0f0f0;
$primary: $darkblue;
$secondary: $lightblue;
$body-bg: $white;
$body-color: #333333;
$font-size-base: 1rem;
$font-family-sans-serif: "Lato", "Open Sans", "Montserrat", "Roboto", sans-serif;
$font-family-monospace: "Fira Code", "SFMono-Regular", "Menlo", "Monaco", "Consolas", monospace;
$headings-font-family: "Fira Sans", $font-family-sans-serif;
$headings-font-weight: 600;
$headings-color: $primary;
$link-color: $secondary;
$link-hover-color: darken($secondary, 15%);
/*-- scss:rules --*/
.navbar {
background-color: $white;
}
.navbar-nav .nav-link {
color: $darkblue;
}
.navbar-nav .nav-link.active {
color: $darkblue;
font-weight: 600;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
color: darken($darkblue, 25%);
}