mirror of
https://github.com/GuerillaStudio/now-playing
synced 2024-11-09 14:11:53 +00:00
27 lines
410 B
SCSS
27 lines
410 B
SCSS
/* ----------------------------------------------------------- */
|
|
/* == layout */
|
|
/* ----------------------------------------------------------- */
|
|
|
|
/* BFC to the rescue */
|
|
.mod {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.clear,
|
|
.line,
|
|
.row {
|
|
clear: both;
|
|
}
|
|
|
|
/* blocks that must contain floats */
|
|
.clearfix:after,
|
|
.line:after,
|
|
.mod:after {
|
|
display: table;
|
|
clear: both;
|
|
content: "";
|
|
}
|
|
|
|
.inbl {
|
|
display: inline-block;
|
|
}
|