blob: a46326fc30a9e538c5385366c9fedfebc153bc71 (
plain)
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
|
.navbar-static-top {
margin-bottom: 20px;
}
.navbar-ci {
background: $style_color;
.navbar-brand {
color: #fff;
&:hover {
color: #fff;
}
}
.brand,
.nav > li > a {
color: #fff;
text-shadow: 0 1px 0 #167;
&:hover {
background: none;
}
}
.profile-holder {
position: relative;
img {
position: absolute;
top: -2px;
width: 24px;
@include border-radius(4px);
}
span {
margin-left: 35px;
}
}
}
|