Skip to content
Snippets Groups Projects
_cards.scss 708 B
Newer Older
.flex-cards {
    display: flex;
    flex-flow: wrap;
    justify-content: space-evenly;

    margin-top: 1rem;
    margin-bottom: 1rem;
    @include drop-shadow;
    margin: 0.5rem;

    .badge {
        @include drop-shadow(
            $offset-x:  0.2rem,
            $offset-y:  0.2rem,
            $color:     rgba(black, 0.25)
        );
    }
    display:            flex;
    justify-content:    center;
    align-items:        center;
    
    padding: .5rem;

    .card-title {
        margin-bottom:  .5rem;
        margin-top:     .5rem;
    }
}

.card-img-equal {
    width: 100%;
    object-fit: cover;
}