mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 10:28:05 +01:00
20 lines
282 B
SCSS
20 lines
282 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; }
|