mirror of
https://github.com/kemko/liquid.git
synced 2026-01-02 08:15:41 +03:00
32 lines
519 B
SCSS
32 lines
519 B
SCSS
.content__item {
|
|
margin-bottom: $spacing-unit * 2;
|
|
}
|
|
|
|
.highlight {
|
|
|
|
pre {
|
|
border-top: none;
|
|
border-radius: 0 0 3px 3px;
|
|
}
|
|
|
|
&:before {
|
|
content: "Example";
|
|
display: block;
|
|
padding: 8px 12px;
|
|
color: $color-slate;
|
|
background: #fff;
|
|
border: 1px solid $color-blue-2;
|
|
border-radius: 3px 3px 0 0;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
// Label every second code block with "Output"
|
|
& + .highlight:nth-of-type(2n) {
|
|
&:before {
|
|
content: "Output";
|
|
}
|
|
}
|
|
|
|
}
|