33 lines
360 B
SCSS
33 lines
360 B
SCSS
|
.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 {
|
||
|
*zoom:1;
|
||
|
&:before,
|
||
|
&:after{
|
||
|
content: " ";
|
||
|
display: table;
|
||
|
}
|
||
|
&:after{
|
||
|
clear: both;
|
||
|
}
|
||
|
}
|