-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
50 lines (39 loc) · 1 KB
/
styles.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
/* You can add global styles to this file, and also import other style files */
@import "~bootstrap/dist/css/bootstrap.css";
@import "~font-awesome/css/font-awesome.css";
$primary-color: #029616;
$primary-color-hover: #b1c522;
body {
padding-top: 80px;
}
h1, h2, h3 {
margin-bottom: 1.5rem;
}
.navbar {
border-bottom: 3px solid #e7e7e7;
}
.navbar-light .navbar-brand {
color: $primary-color;
}
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
color: $primary-color-hover;
}
.list-group-item.active {
background-color: $primary-color;
border-color: $primary-color;
}
.btn-primary {
background-color: $primary-color;
border-color: $primary-color;
}
.btn-primary:hover {
background-color: $primary-color-hover;
border-color: $primary-color-hover;
}
.btn-primary.disabled, .btn-primary:disabled {
background-color: $primary-color;
border-color: $primary-color;
}
.form-control:focus {
border-color: $primary-color;
}