barebones/css/_utilities.scss
2014-02-14 11:47:14 +00:00

35 lines
No EOL
355 B
SCSS
Executable file

.alignleft {
float: left;
}
img.alignleft {
margin-right: $gutter * 1px;
}
.alignright {
float: right;
}
img.alignright {
margin-left : $gutter * 1px;
}
.aligncenter {
display: block;
margin: {
left: auto;
right: auto;
}
}
.clearfix {
&:before,
&:after{
content: '';
display: table;
line-height: 0;
}
&:after{
clear: both;
}
}