Skip to content
Snippets Groups Projects
index.scss 683 B
Newer Older
AB0410's avatar
AB0410 committed
@import url(navbar.scss);

AB0410's avatar
AB0410 committed
.parent {
    animation: fadeInAnimation ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
 
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}


.parent{
    display: flex;
    align-items: center;
    height: 80vh;
    .row{
        align-items: center;
    }
    h1{
        margin: 0;
AB0410's avatar
AB0410 committed
        margin-bottom: 4vh;
AB0410's avatar
AB0410 committed
    }
}

@media screen and (max-width: 400px) {
    h3{
        margin-top: 2rem;
    }
}

AB0410's avatar
AB0410 committed
@media screen and (max-height: 420px) {
AB0410's avatar
AB0410 committed
    .parent{
        display: grid;
        img{
AB0410's avatar
AB0410 committed
            width: auto;
            margin-bottom: 2vh;
AB0410's avatar
AB0410 committed
        }
    }
}