mirror of
https://github.com/danog/sass-site.git
synced 2025-01-05 20:48:47 +01:00
28 lines
331 B
SCSS
28 lines
331 B
SCSS
// ===========================================================================
|
|
// LISTS
|
|
|
|
|
|
|
|
@mixin reset-list {
|
|
list-style: none;
|
|
padding: {
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
ul,
|
|
ol {
|
|
@extend %block-text;
|
|
list-style-position: inside;
|
|
|
|
nav & { @include reset-list; }
|
|
}
|
|
|
|
dl {
|
|
@extend %block-text;
|
|
}
|
|
|
|
dd { margin: 0; } |