-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy pathNav.module.css
More file actions
109 lines (93 loc) · 1.55 KB
/
Nav.module.css
File metadata and controls
109 lines (93 loc) · 1.55 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.nav {
padding: 40px 40px 0 40px;
z-index: 2;
justify-content: space-between;
}
@media (max-width: 769px) {
.nav {
z-index: 2;
display: flex;
flex-direction: column;
}
.imgfluid {
width: 100%;
}
.navbar-buttons {
margin: 20px auto;
column-gap: 20px;
}
}
.github-link {
color: black;
display: flex;
align-items: center;
font-size: 30px;
font: bolder;
}
.github-link:hover {
color: #006dff;
}
.nav-title {
font-size: 1.8rem;
color: var(--green-400);
}
.navbar-nav {
margin-left: 140px;
column-gap: 25px;
}
.nav-item {
color: var(--dark-600);
text-decoration: none;
font-size: 1.1rem;
font-weight: 500;
padding: 8px 16px;
border-radius: 8px;
transition: all 0.3s ease;
}
.nav-item:hover {
color: var(--green-400);
background-color: rgba(0, 109, 255, 0.1);
}
.nav-item.active {
color: var(--green-white-100);
position: relative;
}
.nav-item.active::before {
content: "";
position: absolute;
width: 14px;
height: 14px;
top: 50%;
left: -30px;
background: var(--green-400);
border-radius: 5px;
transform: rotate(45deg) translateY(-70%);
}
.nav-link {
color: inherit;
}
.navbar-buttons {
column-gap: 20px;
}
.logo-link {
text-decoration: none;
}
.navbar-responsive-menu {
display: none !important;
}
@media screen and (max-width: 1100px) {
.d-none-1100 {
display: none;
}
.navbar-responsive-menu {
display: block !important;
}
.navbar-nav {
margin-left: 90px;
}
}
@media screen and (max-width: 960px) {
.navbar-nav {
display: none !important;
}
}