-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.css
81 lines (69 loc) · 1.81 KB
/
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
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
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
.container {
display: flex;
position: relative;
width: fit-content;
padding-inline: 5px;
padding-top: 5px;
padding-bottom: 5px;
max-height: 41px;
border: 1px solid #3f3f3f;
border-radius: 15px;
background-color: #0f0f0fbb;
align-items: center;
justify-content: start;
flex-direction: row;
.seperator {
width: 0.6px;
height: 17px;
background-color: #3f3f3f;
}
.item {
display: flex;
width: fit-content;
padding-inline: 13px;
height: 30px;
border-radius: 10px;
align-items: center;
justify-content: start;
flex-direction: row;
cursor: pointer;
border: 1px solid transparent;
color: #ccc !important;
&:hover {
background-color: #323232cc;
border: 1px solid #3f3f3f;
}
.text {
font-size: 12px;
text-align: center;
display: flex;
position: relative;
margin-left: 7px;
height: fit-content;
font-family: "Inter", sans-serif;
width: fit-content;
align-items: center;
top: 0.4px;
font-weight: 500;
justify-content: center;
}
}
}
.item.active {
background-color: #323232cc;
border: 1px solid #3f3f3f !important;
}
/* Add to navbar.css */
@media (max-width: 400px) {
.container{
width: fit-content;
.item:nth-child(3),
.item:nth-child(4) {
display: none;
}
.item:nth-child(5){
margin-left: 4px;
}
}
}