-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_dark-theme.scss
93 lines (76 loc) · 1.45 KB
/
_dark-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
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
91
92
93
body {
&.dark-theme {
$box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
background-color: $bg-very-dark-blue;
color: $white;
h1,
h2,
h3,
h4 {
color: $white;
}
.header {
background: $dark-blue;
.theme-toggle {
color: $white;
}
}
.filters {
.search-icon {
color: $white;
}
.search-input {
color: $white;
background-color: $dark-blue;
&::placeholder {
color: $white;
}
}
.dropdown-header,
.dropdown-body {
background: $dark-blue;
}
.dropdown-body {
li {
&:hover {
background-color: lighten($color: $dark-blue, $amount: 5%);
}
}
}
}
.countries-grid {
.country {
color: $white;
background: $dark-blue;
span {
color: $white;
}
}
}
.loader {
background-color: $bg-very-dark-blue;
.spinner .icon {
color: $white;
}
}
.scroll-top {
background-color: $dark-blue;
}
.notifi-wrapper {
color: $white;
}
.btn {
background-color: $dark-blue;
color: $white;
box-shadow: $box-shadow;
}
.country-info {
li {
color: $dark-gray;
}
strong {
color: $white;
}
}
}
}