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
|
.nav-pills{
> 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);
}
}
}
&.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-danger);
}
}
}
}
}
.tab-space{
padding: 20px 0 50px 0px;
}
|