mirror of
https://github.com/GuerillaStudio/now-playing
synced 2024-11-09 16:51:53 +00:00
28 lines
410 B
SCSS
28 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;
|
||
|
}
|