@blexar/framework
Version:
CSS framework to establish your favorite websites in mints, with user experience in mind.
44 lines (36 loc) • 774 B
text/stylus
/**
* Variables
*/
$display-1 ?= $font-size[13]
$display-2 ?= $font-size[12]
$display-3 ?= $font-size[11]
$display-4 ?= $font-size[10]
$header-1 ?= $font-size[8]
$header-2 ?= $font-size[7]
$header-3 ?= $font-size[6]
$header-4 ?= $font-size[5]
$header-5 ?= $font-size[4]
$header-6 ?= $font-size[3]
$header-defaults
margin-top: 0
margin-bottom: 0.5em
line-height: $lineheight
font-weight: $font-weight-semi-bold
/**
* Elements
*/
for $n in (1..6)
h{$n}, .h{$n}
font-size: lookup('$header-' + $n)
@extends $header-defaults
for $n in (1..3)
h{$n}, .h{$n}
&:not(:first-child)
margin-top: 1em
for $n in (1..4)
.display-{$n}
font-size: lookup('$display-' + $n)
&:not(:first-child)
margin-top: 1em
p, html
@extends $normal