Skip to content
Snippets Groups Projects
_team-card-full.scss 1.25 KiB
Newer Older
Erxleben, Fredo's avatar
Erxleben, Fredo committed

.title-content-container {

    /*
        Images are set to a 4:3 aspect ratio and made to
        fit by shrinking and centering.
    */
    .portrait {
        @include respond-to-medium(width,       6rem);
        @include respond-to-medium(height,      8rem);
        @include respond-to-medium(min-width,   6rem);
        @include respond-to-medium(min-height,  8rem);
        @include respond-to-medium(max-width,   6rem);
        @include respond-to-medium(max-height,  8rem);

        flex-shrink:    0; /* Don't shrink */

        object-fit:         cover;
        object-position:    center;
        max-height:         8rem;
        border-color:       white;
    }

    .contact {
        text-align: left;
    
        #contacts-general {
            margin-bottom:  1rem;
        }

        .org-long {
            @include font-text;
            @include font-small;
        }
    }

    .subject {
        text-align:     center;

        .name {
            @include font-very-large;
        }

        .position {
            /* Override default title section settings */
            @include font-text;
            @include font-small;
        }

    }

    @include medium-is-tablet {
        .contact {
            break-before:   always;
        }
    }
}