getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

Add item-list modifiers #243

Closed getdave closed 10 years ago

getdave commented 10 years ago

Add the following

.item-list {
    @include list-reset;
    @include clearfix;

    > li,
    .list-item {
        margin-bottom: $baseLineHeight;
        padding-bottom: $baseLineHeight;
        @include clearfix;
    }
}

.item-list--half {

    > li,
    .list-item {
        margin-bottom: $baseLineHeight/2;
        padding-bottom: $baseLineHeight/2;
    }
}

.item-list--double {

    > li,
    .list-item {
        margin-bottom: $baseLineHeight*2;
        padding-bottom: $baseLineHeight*2;
    }
}