51 lines
952 B
CSS
51 lines
952 B
CSS
.navbar {
|
|
background-color: var(--ligther-color);
|
|
border-radius: 50px 50px 0 0;
|
|
border: #eceff2 solid 1px;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.nav-item {
|
|
font-size: 0.9rem;
|
|
padding-bottom: 0.5rem;
|
|
}
|
|
|
|
.nav-item ::deep a {
|
|
color: var(--darker-color);
|
|
display: flex;
|
|
align-items: center;
|
|
line-height: 1.4;
|
|
justify-content: center;
|
|
}
|
|
|
|
.nav-item ::deep a > div {
|
|
width: 4.3rem;
|
|
height: 4.3rem;
|
|
border-radius: 100px;
|
|
justify-content: center;
|
|
padding-bottom: 0.1rem;
|
|
-webkit-transition: all .3s ease-out;
|
|
transition: all .3s ease-out;
|
|
}
|
|
|
|
.nav-item ::deep a.active > div {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
/*.nav-item a:hover :not(.active) {*/
|
|
/* background-color: rgba(255, 255, 255, 0.1);*/
|
|
/* color: var(--primary-color);*/
|
|
/*}*/
|
|
|
|
|
|
.nav-item ::deep a i {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.nav-item ::deep a span {
|
|
font-size: 0.9rem;
|
|
}
|