No notes defined.
<div class="box box--padded box--border-tertiary">
<h2>Box: Tertiary Border</h2>
<p>Lipsum has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
<div class="box box--padded box--border-tertiary">
<h2>Box: Tertiary Border</h2>
<p>{{ lorem }}</p>
</div>
$box__border-width: $border-accent-width*2;
.box {
background: $offwhite;
margin-bottom: $spacing-lg;
&__content,
&--padded {
@include box__padding;
> *:first-child {
margin-top: 0;
}
> *:last-child {
margin-bottom: 0;
}
}
&--white {
background: white;
}
&--tertiary {
background: $tertiary;
color: white;
}
&--border-tertiary {
background: white;
border: $box__border-width solid $tertiary;
}
}