mirror of https://github.com/luizdepra/hugo-coder.git

Mathieu Scheltienne
07.07.2024 f850eb85badf5542c0b38e0fe6c8817454498c2c
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
.navigation {
  height: 6rem;
  width: 100%;
 
  a,
  span {
    display: inline;
    font-size: 1.7rem;
    font-family: $font-family;
    font-weight: 600;
    color: $fg-color;
  }
 
  a {
 
    &:hover,
    &:focus {
      color: $link-color;
    }
  }
 
  .navigation-title {
    letter-spacing: 0.1rem;
    text-transform: uppercase;
  }
 
  .navigation-list {
    float: right;
    list-style: none;
    margin-bottom: 0;
    margin-top: 0;
 
    @media only screen and (max-width: 768px) {
      position: relative;
      top: 2rem;
      right: 0;
      z-index: 5;
      visibility: hidden;
      opacity: 0;
      padding: 0;
      max-height: 0;
      width: 100%;
      background-color: $bg-color;
      border-top: solid 2px $alt-bg-color;
      border-bottom: solid 2px $alt-bg-color;
      transition: opacity 0.25s, max-height 0.15s linear;
    }
 
    .navigation-item {
      float: left;
      margin: 0;
      position: relative;
 
      @media only screen and (max-width: 768px) {
        float: none !important;
        text-align: center;
 
        a,
        span {
          line-height: 5rem;
        }
      }
 
      a,
      span {
        margin-left: 1rem;
        margin-right: 1rem;
      }
    }
 
    .separator {
      @media only screen and (max-width: 768px) {
        display: none;
      }
    }
 
    .menu-separator {
      @media only screen and (max-width: 768px) {
        border-top: 2px solid $fg-color;
        margin: 0 8rem;
 
        span {
          display: none;
        }
      }
    }
  }
 
  #dark-mode-toggle {
    margin: 1.7rem 0;
    font-size: 2.4rem;
    line-height: inherit;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
    position: fixed;
  }
 
  #menu-toggle {
    display: none;
 
    @media only screen and (max-width: 768px) {
      display: initial;
      position: relative;
      visibility: hidden;
 
      &:checked+label>i {
        color: $alt-bg-color;
      }
 
      &:checked+label+ul {
        visibility: visible;
        opacity: 1;
        max-height: 100rem;
      }
 
      &:focus-visible+label {
        outline-style: auto;
      }
    }
  }
 
  .menu-button {
    display: none;
 
    @media only screen and (max-width: 768px) {
      position: relative;
      display: block;
      font-size: 2.4rem;
      font-weight: 400;
    }
 
    i {
 
      &:hover,
      &:focus {
        color: $alt-fg-color;
      }
    }
  }
 
  i {
    color: $fg-color;
    cursor: pointer;
 
    &:hover,
    &:focus {
      color: $link-color;
    }
  }
}