Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

33 lines
503 B

/**
* list
*
* styles and mixins for ul-element
*
*
* @author Björn Hase
*
*/
@mixin cripsy-boilerplate-list {
.list {
list-style-position: outside;
&--horizontal {
.list__item {
float: left;
}
}
}
.d-list {
&--horizontal {
.d-list__title, .d-list__content {
float: left;
}
.d-list__content {
clear: left;
}
}
}
}