Pageworks / papertrain

Papertrain: a Craft CMS 3 framework
http://download.papertrain.io
MIT License
5 stars 2 forks source link

Add Base Headings Class #145

Closed codewithkyle closed 5 years ago

codewithkyle commented 5 years ago
@import 'settings';
@import 'mixins';
@import '../../../utils/styles/tools/typography';

.g-heading{
    &.-h1{
        @include u-h1;
    }

    &.-h2{
        @include u-h2;
    }

    &.-h3{
        @include u-h3;
    }

    &.-h4{
        @include u-h4;
    }

    &.-h5{
        @include u-h5;
    }

    &.-h6{
        @include u-h6;
    }

    &.-light{
        font-weight: $light;
    }

    &.-medium{
        font-weight: $medium;
    }

    &.-heavy{
        font-weight: $heavy;
    }

    &.-white{
        color: $white;
    }

    &.-purple{
        color: $purple-1;
    }

    &.-teal{
        color: $teal-1;
    }
}