-
Notifications
You must be signed in to change notification settings - Fork 323
Expand file tree
/
Copy pathnavBar.css
More file actions
74 lines (63 loc) · 1.04 KB
/
navBar.css
File metadata and controls
74 lines (63 loc) · 1.04 KB
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
@import "../../../data/styles.css";
.nav-container {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
.navbar {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 3vh;
z-index: 999;
}
.nav-background {
width: 380px;
height: 40px;
padding-left: 0%;
padding-right: 0%;
background: #fff;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
border-radius: 40px;
}
.nav-list {
display: flex;
justify-content: space-between;
list-style: none;
align-items: center;
margin-left: -16px;
margin-right: 20px;
margin-top: 11px;
}
.nav-item {
font-weight: bold;
font-size: 80%;
}
.active {
color: var(--link-color) !important;
}
.nav-item a {
text-decoration: none;
color: var(--primary-color);
}
.nav-item a:hover {
color: var(--link-color);
transition: color 0.3s ease-in-out;
}
@media (max-width: 600px) {
.navbar {
margin-left: 25%;
margin-right: 25%;
width: 80%;
font-size: 80%;
}
.nav-background {
width: 80%;
height: 40px;
}
.nav-item {
font-weight: bold;
}
}