File size: 3,245 Bytes
9f00a05
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
.material-symbols-outlined {
   font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.f-nav #icon-container {
   display: flex;
   align-items: center;
}

img {
   width: 100%;
   height: 100%;
   padding-top: 5px;
}

.f-nav-container {
   min-width: 5vw;
   min-height: 10vh;
   display: inline;
}

.f-nav {
   top: 0;
   letter-spacing: 2px;
   font-size: 22px;
   left: 0;
   right: 0;
   min-height: 10vh;
   padding: 0 25px;
   box-sizing: border-box;
   background-color: var(--background-nav);
   box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
   -webkit-backdrop-filter: var(--backdrop-filter);
   backdrop-filter: var(--backdrop-filter);
   transition: 0.35s ease;
   border-radius: 15px;
   width: fill;
   margin: 15px;
   z-index: 100;
   position: fixed;
}

.f-nav .icon:hover {
   transform: translateY(-15%) scale(1.03);
   font-weight: 800;
}

.f-nav .icon {
   position: absolute;
   float: left;
   text-transform: uppercase;
   font-size: 30px;
   font-family: "Inter", sans-serif;
   cursor: pointer;
   color: var(--text-primary);
   font-weight: 600;
   margin-left: 5px;
   font-style: normal;
   text-decoration: none;
   transition: all 0.2s ease;
   height: 5vh;
   top: 18%;
}

.f-nav-right {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   text-transform: uppercase;
   font-size: 18px;
   color: var(--text-primary);
   font-weight: 600;
   right: 2%;
}

.f-nav-right .navbar-link {
   margin-left: 10px;
   text-transform: uppercase;
   cursor: pointer;
   color: var(--text-primary);
   font-weight: 800;
   right: 2%;
   font-family: "Inter", sans-serif;
   font-style: normal;
   text-decoration: none;
   transition: all 0.2s ease;
   transform: translateX(0%);
}

@media (orientation: portrait) {
   .f-nav-right .navbar-link {
      margin-left: 10px;
      text-transform: uppercase;
      font-size: 2.5vw;
      cursor: pointer;
      color: var(--text-primary);
      font-weight: 800;
      right: 2%;
      font-family: "Inter", sans-serif;
      font-style: normal;
      text-decoration: none;
      transition: all 0.2s ease;
      transform: translateX(0%);
   }
   .f-nav-right .navbar-link:hover {
      text-transform: uppercase;
      cursor: pointer;
      font-weight: 800;
      font-family: "Inter", sans-serif;
      font-style: normal;
      font-size: 3vw;
      transform: translateX(-20%);
   }
}

.f-nav-right .navbar-link:hover {
   text-transform: uppercase;
   cursor: pointer;
   font-weight: 800;
   font-family: "Inter", sans-serif;
   font-style: normal;
   font-size: 3vh;
   transform: translateX(-20%);
}

.navbar-icon {
   margin-right: 5px;
   transition: all 0.2s ease;
}

.navbar-link {
   margin-right: 5px;
}

.navbar-link:hover > .settings-icon {
   animation: spin 0.5s;
   animation-timing-function: cubic-bezier(0, 1.04, 0.91, 0.99);
}

@media (max-width: 768px) {
   .f-nav-right .navbar-link an {
      display: none;
   }
   .f-nav-right .fa-solid {
      display: inline;
   }
   .f-nav-right .navbar-link {
      font-size: 4.5vw;
   }
}

@keyframes spin {
   from {
      transform: rotate(0deg);
   }
   to {
      transform: rotate(360deg);
   }
}

@media (orientation: portrait) {
   img {
      height: 40px;
   }
}