mirror of
https://github.com/kemko/liquid.git
synced 2026-01-05 17:55:40 +03:00
38 lines
694 B
SCSS
38 lines
694 B
SCSS
.content__item {
|
|
margin-bottom: $spacing-unit * 2;
|
|
}
|
|
|
|
.highlight {
|
|
background: lighten($color-blue-1, 1);
|
|
}
|
|
|
|
.code-label {
|
|
padding: 4px 12px;
|
|
margin-bottom: 0;
|
|
font-size: 15px;
|
|
background: darken($color-blue-1, 5);
|
|
border: 1px solid $color-blue-2;
|
|
border-bottom: none;
|
|
border-radius: 3px 3px 0 0;
|
|
}
|
|
|
|
.code-label + .highlighter-rouge .highlight {
|
|
border-top: none;
|
|
border-radius: 0 0 3px 3px;
|
|
}
|
|
|
|
.version-badge {
|
|
padding: 4px;
|
|
margin-left: 10px;
|
|
font-size: 12px;
|
|
font-weight: 300;
|
|
background: lighten($color-blue-1, 1);
|
|
border: 1px solid $color-blue-2;
|
|
border-radius: 3px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.version-badge:before {
|
|
content: attr(data-version);
|
|
}
|