75 lines
817 B
SCSS
75 lines
817 B
SCSS
@import "colors";
|
|
@import "constants";
|
|
|
|
.pull-left {
|
|
float: left;
|
|
}
|
|
|
|
.pull-right {
|
|
float: right;
|
|
}
|
|
|
|
.clearfix {
|
|
clear: both;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|
|
.text-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.width-100 {
|
|
width: 100%;
|
|
}
|
|
|
|
.empty-text {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
margin: 60px 0;
|
|
}
|
|
|
|
.empty-text-details {
|
|
margin-bottom: 60px;
|
|
text-align: center;
|
|
|
|
.empty-text + & {
|
|
margin-top: -50px;
|
|
}
|
|
}
|
|
|
|
.highlighted {
|
|
background: $orange-bg;
|
|
color: $black;
|
|
}
|
|
|
|
.mt-1 {
|
|
margin-top: $default-spacer;
|
|
}
|
|
|
|
.mt-2 {
|
|
margin-top: 2 * $default-spacer;
|
|
}
|
|
|
|
.mt-4 {
|
|
margin-top: 4 * $default-spacer;
|
|
}
|
|
|
|
.mt-8 {
|
|
margin-top: 8 * $default-spacer;
|
|
}
|
|
|
|
.mb-2 {
|
|
margin-bottom: 2 * $default-spacer;
|
|
}
|
|
|
|
.mb-1 {
|
|
margin-bottom: $default-spacer;
|
|
}
|