-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.css
54 lines (40 loc) · 791 Bytes
/
navbar.css
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
nav {
display: flex;
flex-direction: column;
/* backdrop-filter: blur(5.5px); */
/* background-color: rgba(250, 250, 250, 0.25); */
background-color: rgba(42,43,54,255);
/* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); */
width: 200px;
padding: 10px;
min-height: 100vh;
/* align-items: self; */
position: fixed;
z-index: 100;
}
nav div {
padding: 10px;
}
nav div a {
color: white;
text-decoration: none;
}
nav span {
font-size: 18px;
cursor: default;
color: white;
font-size: 20px;
text-align: center;
padding:10px;
}
nav div:hover {
background-color: lightskyblue;
color: black;
}
.item .link {
display: flex;
}
.item .link .icon,
.item .link .text {
font-size: 20px;
}