Skip to content
Snippets Groups Projects
_blockquote.scss 460 B
Newer Older
  • Learn to ignore specific revisions
  • .blockquote {
        @extend %h3;
        position: relative;
        font-weight: $weight--black;
        text-align: center;
    
        &__cite,
        &__job-title {
            @include responsive-font-sizes(15px, 17px);
            display: block;
            font-style: normal;
            color: $color--darkest-blue;
            text-transform: uppercase;
        }
    
        &__cite {
            h5 {
                margin: 0;
            }
        }
    
        &__job-title {
            font-weight: $weight--normal;
        }