-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.css
51 lines (44 loc) · 831 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
.navbar {
position: fixed;
left: 3%;
top: 80px;
max-width: 100px;
width: 10%;
z-index: 3;
background-color: rgb(30, 30, 30);
border-radius: 25px;
}
.navbar-link {
height: 80px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
transition: background-color 0.5s, border-radius 0.5s;
text-decoration: none;
}
.top {
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.bottom {
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
.navbar-link:hover {
background-color: rgb(42, 101, 165);
border-radius: 20px;
}
.navbar-link img {
height: 30px;
margin-inline: 30px;
}
.navbar-link div {
font-size: 12px;
margin-top: 5px;
color: white;
}
#current {
border-radius: 20px;
background-color: rgb(42, 101, 165);
}