mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-25 12:32:22 -06:00
* Fix stylelint "declaration-block-no-redundant-longhand-properties" Co-authored-by: Matt Wang <matt@matthewwang.me>
34 lines
522 B
SCSS
34 lines
522 B
SCSS
// Labels (not the form kind)
|
|
|
|
.label,
|
|
.label-blue {
|
|
display: inline-block;
|
|
padding-top: 0.16em 0.56em;
|
|
margin-right: $sp-2;
|
|
margin-left: $sp-2;
|
|
color: $white;
|
|
text-transform: uppercase;
|
|
vertical-align: middle;
|
|
background-color: $blue-100;
|
|
@include fs-2;
|
|
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.label-green {
|
|
background-color: $green-200;
|
|
}
|
|
|
|
.label-purple {
|
|
background-color: $purple-100;
|
|
}
|
|
|
|
.label-red {
|
|
background-color: $red-200;
|
|
}
|
|
|
|
.label-yellow {
|
|
color: $grey-dk-200;
|
|
background-color: $yellow-200;
|
|
}
|