Sha256: aa2863cea3d82fcfb7fa8b630854b02c8e5a1f926f71b5e1430199ba7ba57681
Contents?: true
Size: 1.2 KB
Versions: 3
Compression:
Stored size: 1.2 KB
Contents
@charset "utf-8"; $block-list-separator: 0.25rem !default; .block-list { list-style: none; li { padding: ($gap / 2); background: $light; margin-bottom: $block-list-separator; } li.is-left, &.is-left > li { text-align: left; } li.is-centered, &.is-centered > li { text-align: center; } li.is-right, &.is-right > li { text-align: right; } li.is-small, &.is-small > li { font-size: $small-font-size; padding: ($gap / 3); } li.is-normal, &.is-normal > li { font-size: $body-font-size; } li.is-large, &.is-large > li { font-size: $size-large; } li.has-radius, &.has-radius > li { border-radius: $radius; } @each $name, $pair in $colors { $color: nth($pair, 1); $color-invert: nth($pair, 2); li.is-#{$name}, &.is-#{$name} > li { background: $color; color: $color-invert; &.is-outlined, &.is-outlined > li { background: transparent; color: $color; border: 1px solid $color; } } } }
Version data entries
3 entries across 3 versions & 1 rubygems