blob: 8274eb5fd200f8c06c8d556771ba0c11f71983b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Page-specific styling for pages that make use of embedded
// RST documents that have been parsed into HTML.
$page_classes: (
uses-rst, // All pages that declare their use of the RST parser
);
@each $class in $page_classes {
.#{$class} {
.document li p {
margin-bottom: 0;
}
.document img {
margin-bottom: 20px;
}
}
}
|