mirror of
https://github.com/kemko/liquid.git
synced 2026-01-06 02:05:41 +03:00
34 lines
491 B
SCSS
34 lines
491 B
SCSS
.content__item {
|
|
margin-bottom: $spacing-unit * 2;
|
|
}
|
|
|
|
.code-block {
|
|
pre {
|
|
border-radius: 0 0 3px 3px;
|
|
border-top: none;
|
|
}
|
|
|
|
&:before {
|
|
padding: 8px 12px;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
font-weight: bold;
|
|
color: $color-white;
|
|
background: $color-blue-5;
|
|
border-bottom: none;
|
|
border-radius: 3px 3px 0 0;
|
|
}
|
|
}
|
|
|
|
.code-block--input {
|
|
&:before {
|
|
content: 'Input';
|
|
}
|
|
}
|
|
|
|
.code-block--output {
|
|
&:before {
|
|
content: 'Output';
|
|
}
|
|
}
|