liuxiaolong
2022-06-28 37714b1093c04061e636e5b1d27179652e671c0a
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#header {
  background: $header-background-color;
 
  .navbar-toggle {
    height: $header-height;
    margin: 0;
    padding-right: 15px;
    border-radius: 0;
 
    .icon-bar {
      border: 1px solid $white;
      border-radius: 0;
    }
  }
 
  .navbar-brand {
    display: block;
    margin: 0;
    padding: 0;
 
    a {
      display: flex;
      align-items: center;
      height: $header-height;
      line-height: $header-height;
 
      svg.logo {
        transition: opacity 0.15s ease-in-out;
        @extend svg.logo.white;
 
        &:hover, &:focus, &:active {
          opacity: 0.6;
          outline: 0;
          text-decoration: none;
        }
      }
    }
  }
 
  ul.nav {
    li {
      a {
        color: $header-link-color;
        font-size: $header-font-size;
        font-family: $font-family-open-sans;
        font-weight: $font-weight-bold;
        height: $header-height;
        line-height: $header-height;
        padding: 0 10px;
        margin: 0;
        text-decoration: none;
 
        &:hover, &:focus, &:active {
          background-color: transparent;
          color: $header-link-color-hover;
          outline: 0;
 
          svg {
            fill: $header-link-color-hover;
          }
        }
 
        svg {
          fill: $header-link-color;
          position: relative;
          top: 2px;
          width: 14px;
          height: 14px;
          margin-right: 3px;
        }
      }
    }
  }
 
  .buttons {
    margin-top: 2px;
  }
}