33 lines
395 B
SCSS
33 lines
395 B
SCSS
|
|
.navigation-2 {
|
||
|
|
|
||
|
|
&::before {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
content: " ";
|
||
|
|
position: absolute;
|
||
|
|
backdrop-filter: blur(14px);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
h3 {
|
||
|
|
margin-top: 0;
|
||
|
|
margin-bottom: 0;
|
||
|
|
line-height: 3rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navbar-nav {
|
||
|
|
|
||
|
|
a.nav-link {
|
||
|
|
//font-size: 15px;
|
||
|
|
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
padding: 2.5rem 1rem 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.dropdown-toggle::after {
|
||
|
|
font-size:60%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|