Skip to content
Snippets Groups Projects
_wrapper.scss 1.7 KiB
Newer Older
  • Learn to ignore specific revisions
  •     &--small {
            max-width: $wrapper--small;
            margin: 0 auto;
        }
    
    
    Chris Lawton's avatar
    Chris Lawton committed
        &--medium {
            max-width: $wrapper--medium;
            margin: 0 auto;
        }
    
    
        &--large {
            max-width: $site-width;
            margin: 0 auto;
        }
    
        &--main {
    
            padding: 20px 20px 0;
    
            background-color: $color--white;
        }
    
    
        &--breakout {
            position: relative;
            right: 50%;
            left: 50%;
            width: 100vw;
            margin-right: -50vw;
            margin-left: -50vw;
        }
    
        &--blockquote {
            padding: 1rem 0;
            margin-top: 2rem;
            margin-bottom: 2rem;
            background: $color--light-grey;
    
            @include media-query(tablet-portrait) {
                padding: 4rem 0;
                margin-top: 4rem;
                margin-bottom: 4rem;
            }
    
            svg {
                position: absolute;
                display: none;
                width: 110px;
                height: 110px;
                fill: $color--white;
    
                @include media-query(tablet-portrait) {
                    display: block;
                }
    
                &:first-child {
                    top: 0;
                    left: 0;
                    transform: rotate(90deg);
                }
    
                &:last-child {
                    right: 0;
                    bottom: 0;
                    transform: rotate(-90deg);
                }
            }
        }
    
        &--dark-bg {
            padding: 2rem 20px;
            color: $color--white;
    
    
            @include media-query(tablet-portrait) {
                padding: 4rem 20px;
            }
        }
    
        &--streamfield {
            margin-bottom: 2rem;
    
    
            @include media-query(tablet-portrait) {
    
                margin-bottom: 4rem;