66 lines
1007 B
CSS
66 lines
1007 B
CSS
nav {
|
|
padding-top: 50px;
|
|
}
|
|
|
|
@media screen and (min-width: 992px) {
|
|
nav {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
nav .nav-logo {
|
|
background-image: url(img/logo_text.png);
|
|
height: 100px;
|
|
width: 200px;
|
|
margin: auto;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
@media screen and (min-width: 992px) {
|
|
nav .nav-logo {
|
|
height: 250px;
|
|
background-image: url(img/logo.png);
|
|
}
|
|
}
|
|
|
|
.oi {
|
|
width: 2rem;
|
|
font-size: 1.1rem;
|
|
vertical-align: text-top;
|
|
top: -2px;
|
|
}
|
|
|
|
.nav-item {
|
|
font-size: 0.9rem;
|
|
padding-bottom: 0.5rem;
|
|
}
|
|
|
|
.nav-item:first-of-type {
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
.nav-item:last-of-type {
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
.nav-item ::deep a {
|
|
color: #533a20;
|
|
border-radius: 4px;
|
|
height: 3rem;
|
|
display: flex;
|
|
align-items: center;
|
|
line-height: 3rem;
|
|
}
|
|
|
|
.nav-item ::deep a.active {
|
|
background-color: rgba(255, 255, 255, 0.25);
|
|
color: #64ae24;
|
|
}
|
|
|
|
.nav-item ::deep a:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
color: #64ae24;
|
|
}
|