mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
31 lines
505 B
SCSS
31 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;
|
|
}
|
|
}
|