blob: 749a03e4e55b7d77cf84b291c480553f65c88e93 (
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
 | .nav-pills {
  list-style-type: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: center;
  li {
    float: left;
    padding: .5em;
  }
}
.nav-link {
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  &:active,
  &:focus,
  &:hover {
    border: 0;
    text-decoration: none;
  }
}
.nav-right {
  float: right;
}
@media (max-width: 382px) {
  .nav-right,
  .nav-pills li {
    float: none;
  }
}
 |