mirror of
https://github.com/nicolabs/nicolabs.net.git
synced 2025-09-07 16:27:21 +02:00
25 lines
331 B
SCSS
25 lines
331 B
SCSS
ul {
|
|
list-style-type: disc;
|
|
margin-bottom: $small-spacing;
|
|
padding-left: $base-spacing;
|
|
}
|
|
|
|
ol {
|
|
list-style-type: decimal;
|
|
margin-bottom: $small-spacing;
|
|
padding-left: $base-spacing;
|
|
}
|
|
|
|
dl {
|
|
margin-bottom: $small-spacing;
|
|
|
|
dt {
|
|
font-weight: bold;
|
|
margin-top: $small-spacing;
|
|
}
|
|
|
|
dd {
|
|
margin: 0;
|
|
}
|
|
}
|