barebones/css/_utilities.scss

39 lines
450 B
SCSS
Raw Normal View History

2014-01-30 12:20:51 +01:00
.alignleft {
2014-03-31 17:19:42 +02:00
float: left;
2014-01-30 12:20:51 +01:00
}
img.alignleft {
2014-05-08 12:24:17 +02:00
margin-right: $base-margin-bottom;
2014-01-30 12:20:51 +01:00
}
.alignright {
2014-03-31 17:19:42 +02:00
float: right;
2014-01-30 12:20:51 +01:00
}
img.alignright {
2014-05-08 12:24:17 +02:00
margin-left : $base-margin-bottom;
2014-01-30 12:20:51 +01:00
}
.aligncenter {
2014-03-31 17:19:42 +02:00
display: block;
margin: {
left: auto;
right: auto;
}
2014-01-30 12:20:51 +01:00
}
2014-05-08 12:24:17 +02:00
img.aligncenter {
margin-bottom: $base-margin-bottom;
}
2014-01-30 12:20:51 +01:00
.clearfix {
2014-03-31 17:19:42 +02:00
&:before,
&:after{
content: '';
display: table;
line-height: 0;
}
&:after{
clear: both;
}
2014-01-30 12:20:51 +01:00
}