_pills.scss
2.44 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.nav-pills{
.section-dark &,
.section-image &{
> li > a{
color: $gray-color;
}
> li{
> a:hover,
> a:focus{
background-color: #EEEEEE;
}
}
}
> li {
> a{
line-height: $mdb-btn-font-size-base * 2;
text-transform: uppercase;
font-size: $mdb-btn-font-size-base;
font-weight: $font-weight-bold;
min-width: 100px;
text-align: center;
color: $gray;
transition: all .3s;
&:hover{
background-color: rgba(200, 200, 200, 0.2);
}
}
i{
display: block;
font-size: 30px;
padding: 15px 0;
}
&.active > a{
&,
&:focus,
&:hover{
background-color: $brand-primary;
color: $white-color;
@include shadow-big-color($brand-primary);
}
}
}
&:not(.nav-pills-icons){
> li > a{
border-radius: $border-radius-extreme;
}
}
&.nav-stacked{
> li + li{
margin-top: 5px;
}
}
&.nav-pills-info{
> li {
&.active > a{
&,
&:focus,
&:hover{
background-color: $brand-info;
@include shadow-big-color($brand-info);
}
}
}
}
&.nav-pills-success{
> li {
&.active > a{
&,
&:focus,
&:hover{
background-color: $brand-success;
@include shadow-big-color($brand-success);
}
}
}
}
&.nav-pills-warning{
> li {
&.active > a{
&,
&:focus,
&:hover{
background-color: $brand-warning;
@include shadow-big-color($brand-warning);
}
}
}
}
&.nav-pills-danger{
> li {
&.active > a{
&,
&:focus,
&:hover{
background-color: $brand-danger;
@include shadow-big-color($brand-warning);
}
}
}
}
}
.tab-space{
padding: 20px 0 50px 0px;
}