blob: d4def18644b334ce887fa0db92f6b9231dc3d85d (
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
43
 | .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;
  &:active,
  &:focus,
  &:hover {
    border: 0;
    text-decoration: underline;
  }
}
.nav-right {
  float: right;
}
@media (max-width: 382px) {
  .nav-right,
  .nav-pills li {
    float: none;
  }
}
 |