purist-css
Version:
Purist a complete reimagining of Yahoo's Pure to be less opinionated and more abstracted.
49 lines (42 loc) • 975 B
CSS
/* ==========================================================================
#lists-core
========================================================================== */
/*
list-stack
========================================================================== */
/**
* The list-stack object is used to create vertical lists without bullets or
* indentation.
*
* Usage:
*
* <ul class="o-list-stack">
* <li></li>
* <li></li>
* <li></li>
* </ul>
*/
.o-list-stack,
.o-list-inline {
margin-left: 0;
padding-left: 0;
list-style: none;
}
/*
list-inline
========================================================================== */
/**
* The list-inline object is used to create inline lists without bullets or
* indentation.
*
* Usage:
*
* <ul class="o-list-inline">
* <li></li>
* <li></li>
* <li></li>
* </ul>
*/
.o-list-inline > li {
display: inline-block;
}