blob: 652da46d7c8c416f27ab42ee1aef7828e3ff29eb (
plain) (
blame)
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
|
.nav-pills {
list-style-type: none;
margin: 0;
overflow: hidden;
padding: 0;
text-align: center;
li {
float: left;
padding: .5em;
&:first-child {
padding-left: 0;
}
&:last-child {
padding-right: 0;
}
}
}
.nav-link {
text-align: center;
text-decoration: none;
&:focus,
&:hover {
border: 0;
text-decoration: underline;
}
}
.nav-right {
float: right;
}
@media (max-width: 382px) {
.nav-right,
.nav-pills li {
float: none;
}
}
|