aboutsummaryrefslogtreecommitdiff
path: root/_scss/components/_navigation.scss
blob: 3943f51a087aa78518352916705dfb92d23bd313 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
.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(min-width: 382px) {
  .nav-pills {
    li {
      display: inline-block;
      transform: perspective(1px) translateZ(0);
      transition-duration: .3s;
      transition-property: transform;
      transition-timing-function: ease-out;
      vertical-align: middle;

      &:active,
      &:focus,
      &:hover {
        transform: translateY(8px);
      }
    }
  }
}

@media (max-width: 382px) {
  .nav-right,
  .nav-pills li {
    float: none;
  }
}