mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 02:17:36 +01:00
23 lines
315 B
SCSS
23 lines
315 B
SCSS
// ===========================================================================
|
|
// LISTS
|
|
|
|
|
|
|
|
%horizontal-list {
|
|
@extend %clearfix;
|
|
list-style: none;
|
|
|
|
li {
|
|
@include float-left;
|
|
margin: 0 2em 0 0;
|
|
|
|
&:last-child { margin-right: 0; }
|
|
}
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
@extend %block-text;
|
|
list-style-position: inside;
|
|
} |