-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_dark-mode.scss
More file actions
56 lines (47 loc) · 1017 Bytes
/
_dark-mode.scss
File metadata and controls
56 lines (47 loc) · 1017 Bytes
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
.dark-mode {
.main-container {
background-color: $darker;
}
.card,
.list-group-item {
background-color: $dark;
color: white;
.bg-dark {
background-color: $light !important;
}
}
.form-control {
background-color: $darker;
color: white;
}
.btn-light,
.btn-light:focus:active {
border-color: $darker;
background-color: $darker;
color: $light;
}
~ * .modal {
.modal-header {
color: white;
border-color: $dark;
}
.modal-content {
background-color: $darker !important;
border-color: $dark;
}
.modal-footer {
border-color: $dark;
}
p {
color: white;
}
.form-control {
background-color: $darker;
color: white;
border-color: $dark;
}
.close {
color: white;
}
}
}