forked from gurayyarar/AdminBSBMaterialDesign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme-teal.scss
92 lines (73 loc) · 1.94 KB
/
theme-teal.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
@import '_theme-color-variables';
.theme-teal {
.navbar {
background-color: $theme-teal;
}
.navbar-brand {
color: $theme-teal-navbar-brand;
&:hover {
color: $theme-teal-navbar-brand_hover;
}
&:active {
color: $theme-teal-navbar-brand_active;
}
&:focus {
color: $theme-teal-navbar-brand_focus;
}
}
.nav {
> li {
> a {
color: $theme-teal-nav-anchor;
&:hover {
background-color: $theme-teal-nav-anchor_hover;
}
&:focus {
background-color: $theme-teal-nav-anchor_focus;
}
}
}
.open {
> a {
background-color: $theme-teal-nav-anchor-opened;
&:hover {
background-color: $theme-teal-nav-anchor-opened_hover;
}
&:focus {
background-color: $theme-teal-nav-anchor-opened_focus;
}
}
}
}
.bars {
color: $theme-teal-bar;
}
.sidebar {
.menu {
.list {
li.active {
background-color: $theme-teal-menu-list-active;
> :first-child {
i, span {
color: $theme-teal;
}
}
}
.toggled {
background-color: $theme-teal-menu-list-toggled;
}
.ml-menu {
background-color: $theme-teal-menu-list-submenu;
}
}
}
.legal {
background-color: $theme-teal-legal-bg;
.copyright {
a {
color: $theme-teal !important;
}
}
}
}
}