barebones/assets/sass/utils/_helpers.scss

77 lines
989 B
SCSS
Raw Normal View History

2015-10-14 14:03:16 +02:00
/**
* Clearing and floating
*/
.float-left {
float: left;
img & {
margin-right: $base-spacing-unit;
}
}
.float-right {
float: right;
img & {
margin-left : $base-spacing-unit;
}
}
.float-center {
display: block;
margin: {
left: auto;
right: auto;
}
img & {
margin-bottom: $base-spacing-unit;
}
}
.clearfix {
@extend clearfix;
}
/**
* Text aligments
*/
.align-left {
text-align: left;
2015-04-01 18:32:10 +02:00
}
2015-10-14 14:03:16 +02:00
.align-right {
text-align: right;
2015-04-01 18:32:10 +02:00
}
2015-10-14 14:03:16 +02:00
.align-center {
text-align: right;
2015-04-01 18:32:10 +02:00
}
2015-10-14 14:03:16 +02:00
/**
* Elements visibility
*/
2015-10-14 15:58:18 +02:00
.visible-on-mobile {
2015-10-14 14:03:16 +02:00
display: none !important;
@include resp-max($breakpoint-sm) {
display: block !important;
}
2015-04-01 18:32:10 +02:00
}
2015-10-14 15:58:18 +02:00
.visible-on-tablet {
2015-10-14 14:03:16 +02:00
display: none !important;
@include resp-max($breakpoint-md) {
display: block !important;
}
2015-04-01 18:32:10 +02:00
}
2015-10-14 15:58:18 +02:00
.visible-on-desktop {
2015-10-14 14:03:16 +02:00
@include resp-max($breakpoint-md) {
display: none !important;
}
2015-04-01 18:32:10 +02:00
}