Skip to content
Snippets Groups Projects
navbar.scss 854 B
Newer Older
AB0410's avatar
AB0410 committed
nav{
AB0410's avatar
AB0410 committed
    margin-top: 1vh;
AB0410's avatar
AB0410 committed
    margin-left: 5vw;
    margin-right: 5vw;
AB0410's avatar
AB0410 committed
    align-self: center;
AB0410's avatar
AB0410 committed
    border-radius: .40rem;
AB0410's avatar
AB0410 committed
    border: 1px #d4d4d4 solid;
}

AB0410's avatar
AB0410 committed
.navbar{
AB0410's avatar
AB0410 committed
    background-color: #e9e9e9 !important;
.nav-link{
    font-size: 18px;
}

AB0410's avatar
AB0410 committed
.icons{
    flex-direction: row;
    img{
        width: 40px !important;
    }
    li{
        padding: 0 5px 0 5px;
    }
}.icons img:hover{
    transform: scale(1.03);
AB0410's avatar
AB0410 committed
}

.nav-link.active{
    border-bottom: 1px solid rgba(0, 0, 0, 0.179);
    transition: border-bottom-width 0.1s ease-in-out, border-color 0.1s ease-in-out;
}

.nav-link.active{
    border-bottom: 1px solid rgba(0, 0, 0, 0.179);
AB0410's avatar
AB0410 committed
    animation: slide-in 0.4s ease-in-out forwards;
AB0410's avatar
AB0410 committed
    }
    @keyframes slide-in {
    from {
    width: 0;
    border-bottom-width: 0;
    }
    to {
    width: 100%;
    border-bottom-width: 1px;
    }
    }