mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-31 23:10:44 +00:00
32 lines
505 B
SCSS
32 lines
505 B
SCSS
|
ul, ol {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
list-style-type: none;
|
||
|
|
||
|
&%default-ul {
|
||
|
list-style-type: disc;
|
||
|
margin-bottom: $base-line-height / 2;
|
||
|
padding-left: $base-line-height;
|
||
|
}
|
||
|
|
||
|
&%default-ol {
|
||
|
list-style-type: decimal;
|
||
|
margin-bottom: $base-line-height / 2;
|
||
|
padding-left: $base-line-height;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dl {
|
||
|
line-height: $base-line-height;
|
||
|
margin-bottom: $base-line-height / 2;
|
||
|
|
||
|
dt {
|
||
|
font-weight: bold;
|
||
|
margin-top: $base-line-height / 2;
|
||
|
}
|
||
|
|
||
|
dd {
|
||
|
margin: 0;
|
||
|
}
|
||
|
}
|