forked from fineanmol/Hacktoberfest2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.css
60 lines (60 loc) · 1.05 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
.navbar{
padding:.5rem 2rem
}
nav{
background-color:var(--nav-color)
}
.navbar-nav{
width:100%
}
.navbar-brand{
line-height:1;
margin-right:1rem
}
.navbar-brand svg{
height:37px;
width:auto;
vertical-align:middle
}
.navbar-light .navbar-nav .nav-link{
color:var(--text);
position:relative;
padding:5px;
margin:0 10px!important
}
.navbar-light .navbar-nav .active{
background-color:#f1ffc5
}
.navbar-light .navbar-nav .active>.nav-link{
color:#df271a;
font-weight:700
}
.navbar-light .navbar-nav .nav-link::before{
background-color:currentColor;
bottom:-1px;
content:"";
height:1px;
left:auto;
right:0;
position:absolute;
-webkit-transition:width .2s ease-in-out;
-o-transition:width .2s ease-in-out;
transition:width .2s ease-in-out;
width:0
}
.navbar-light .navbar-nav .nav-link:hover{
color:#000
}
.navbar-light .navbar-nav .nav-link:hover::before{
left:0;
right:auto;
width:100%
}
.nav-link svg{
width:auto;
height:25px;
vertical-align:text-top
}
.navbar-light .navbar-nav .nav-link:hover{
color:#dc143c
}