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
|
|
|
|
*/
|
|
|
|
|
|
|
|
.visible-mobile {
|
|
|
|
display: none !important;
|
|
|
|
@include resp-max($breakpoint-sm) {
|
|
|
|
display: block !important;
|
|
|
|
}
|
2015-04-01 18:32:10 +02:00
|
|
|
}
|
|
|
|
|
2015-10-14 14:03:16 +02:00
|
|
|
.visible-tablet {
|
|
|
|
display: none !important;
|
|
|
|
@include resp-max($breakpoint-md) {
|
|
|
|
display: block !important;
|
|
|
|
}
|
2015-04-01 18:32:10 +02:00
|
|
|
}
|
|
|
|
|
2015-10-14 14:03:16 +02:00
|
|
|
.visible-desktop {
|
|
|
|
@include resp-max($breakpoint-md) {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2015-04-01 18:32:10 +02:00
|
|
|
}
|