scribd.github.io/assets/_sass/component/_section-heading.scss

29 lines
545 B
SCSS

////////////////////
// Variables
////////////////////
$border-width: 2px;
////////////////////
// Section Heading
////////////////////
.section-heading {
display: inline-block;
margin: 0 0 1em 0;
@extend .monospace;
font-size: rem-calc(14px);
line-height: 1;
&:before {
content: '';
display: inline-block;
margin-right: .5em;
width: $border-width;
height: 1em;
background-color: currentColor;
border-radius: $border-width;
vertical-align: top;
}
}