You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
650 B
51 lines
650 B
7 years ago
|
// Position
|
||
|
.clearfix {
|
||
|
@include clearfix();
|
||
|
}
|
||
|
|
||
|
.float-left {
|
||
|
float: left !important;
|
||
|
}
|
||
|
|
||
|
.float-right {
|
||
|
float: right !important;
|
||
|
}
|
||
|
|
||
|
.relative {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.absolute {
|
||
|
position: absolute;
|
||
|
}
|
||
|
|
||
|
.fixed {
|
||
|
position: fixed;
|
||
|
}
|
||
|
|
||
|
.centered {
|
||
|
display: block;
|
||
|
float: none;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
|
||
|
.flex-centered {
|
||
|
align-items: center;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
// Spacing
|
||
|
@include margin-variant(0, 0);
|
||
|
|
||
|
@include margin-variant(1, $unit-1);
|
||
|
|
||
|
@include margin-variant(2, $unit-2);
|
||
|
|
||
|
@include padding-variant(0, 0);
|
||
|
|
||
|
@include padding-variant(1, $unit-1);
|
||
|
|
||
|
@include padding-variant(2, $unit-2);
|