purist-css
Version:
Purist a complete reimagining of Yahoo's Pure to be less opinionated and more abstracted.
54 lines (45 loc) • 1 kB
CSS
/* ==========================================================================
#sections-core
========================================================================== */
/*
section
========================================================================== */
/**
* The section object sections off content from the rest of the document.
*
* Usage:
*
* <div class="o-section">
* <div class="o-section__body"></div>
* </div>
*/
.o-section,
.o-box {
box-sizing: border-box;
}
.o-section:after,
.o-box:after {
display: table;
content: "";
clear: both;
}
.o-section__body {
margin: 0 auto;
}
/*
box
========================================================================== */
/**
* The box object boxes off content from the rest of the document.
*
* Usage:
*
* <div class="o-box">
* </div>
*/
.o-box {
display: block;
}
.o-box > :last-child {
margin-bottom: 0;
}