barebones/css/_utilities.scss

33 lines
367 B
SCSS
Raw Normal View History

2014-01-30 12:20:51 +01:00
.alignleft {
float: left;
}
img.alignleft {
margin-right: $column-gutter * 1px;
}
.alignright {
float: right;
}
img.alignright {
margin-left : $column-gutter * 1px;
}
.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.clearfix {
&:before,
&:after{
2014-02-06 16:16:07 +01:00
content: '';
2014-01-30 12:20:51 +01:00
display: table;
2014-02-06 16:16:07 +01:00
line-height: 0;
2014-01-30 12:20:51 +01:00
}
&:after{
clear: both;
}
}