1 |
.nav { |
2 |
background: #000; |
3 |
border-bottom: 1px solid rgba(255, 255, 255, 0.2); |
4 |
padding: 10px; |
5 |
display: flex; |
6 |
justify-content: space-between; |
7 |
align-items: center; |
8 |
position: sticky; |
9 |
top: 0; |
10 |
left: 0; |
11 |
width: 100vw; |
12 |
z-index: 10000; |
13 |
} |
14 |
|
15 |
.logoWrapper img { |
16 |
height: 35px; |
17 |
width: 35px; |
18 |
} |
19 |
|
20 |
.logoWrapper { |
21 |
display: flex; |
22 |
align-items: center; |
23 |
text-decoration: none; |
24 |
} |
25 |
|
26 |
.logoWrapper span { |
27 |
margin-left: 10px; |
28 |
font-size: 1.1rem; |
29 |
} |
30 |
|
31 |
.ul { |
32 |
list-style: none; |
33 |
display: flex; |
34 |
align-items: center; |
35 |
justify-content: center; |
36 |
} |
37 |
|
38 |
.ul li { |
39 |
margin-left: 20px; |
40 |
} |
41 |
|
42 |
.ul li:first-child { |
43 |
margin-left: 0; |
44 |
} |
45 |
|
46 |
.ul li a { |
47 |
color: #ddd; |
48 |
} |
49 |
|
50 |
.ul li a.active, |
51 |
.ul li a:hover { |
52 |
color: #fff; |
53 |
} |
54 |
|
55 |
@media (min-width: 1350px) { |
56 |
.nav { |
57 |
padding: 10px 20px; |
58 |
} |
59 |
} |
60 |
|
61 |
@media (min-width: 971px) { |
62 |
.logoWrapper span { |
63 |
font-size: 1.2rem; |
64 |
} |
65 |
|
66 |
.logoWrapper img { |
67 |
height: 40px; |
68 |
width: 40px; |
69 |
} |
70 |
|
71 |
.nav { |
72 |
background: rgba(0, 0, 0, 0.2); |
73 |
backdrop-filter: blur(20px); |
74 |
display: grid; |
75 |
grid-template-columns: 5fr 20fr 5fr; |
76 |
} |
77 |
} |
78 |
|
79 |
@media (min-width: 971px) and (max-width: 1350px) { |
80 |
.nav { |
81 |
padding: 10px 10%; |
82 |
} |
83 |
} |