Skip to content
Snippets Groups Projects
portfolio.scss 1.64 KiB
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;
     }
}

// Not sure about these because they're applied to html but did not figure out another way
html{
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.html::-webkit-scrollbar { 
    display: none;
AB0410's avatar
AB0410 committed
}

AB0410's avatar
AB0410 committed
.parent{
    display: flex;
    .row{
        align-items: center;
        --bs-gutter-x:0;
AB0410's avatar
AB0410 committed
        justify-content: center;
AB0410's avatar
AB0410 committed
        .card{
            margin-bottom: 2vh;
AB0410's avatar
AB0410 committed
            margin-left: 1vh;
            margin-right: 1vh;
            .card-title{
                text-decoration: underline;
            }
            .btn{
                background-color: #e6b294;
                border-color: #e6b294;
                transition: ease-in-out 0.2s;
            }.btn:hover{
                transform: scale(1.05);
                transition: ease-in-out 0.2s;
                color: black;
            }
            .img-fluid{
                width: 38px;
                border-radius: .25rem;
                border: solid #e6b294 1px;
                transition: ease-in-out 0.2s;
            }
            .img-fluid:hover{
                transform: scale(1.06);
                transition: ease-in-out 0.2s;
            }
AB0410's avatar
AB0410 committed
        }
    }
    h1{
        margin: 0;
        padding-bottom: 1.5vw;
AB0410's avatar
AB0410 committed
    }
}

@media screen and (max-width: 400px) {

}

@media screen and (max-height: 400px) {
    .parent{
        display: grid;
        h1{
            text-align: center;
        }
AB0410's avatar
AB0410 committed
    }
}