Organised sass folders

This commit is contained in:
Mike Francis 2014-06-20 15:59:08 +01:00
parent d444e9aeb2
commit 631f3f6f27
17 changed files with 238 additions and 83 deletions

39
scss/generic/_utilities.scss Executable file
View file

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