2017-12-05 16:07:05 +01:00
|
|
|
@import "colors";
|
2019-10-17 15:13:50 +02:00
|
|
|
@import "constants";
|
2017-12-05 16:07:05 +01:00
|
|
|
|
2017-05-03 16:50:36 +02:00
|
|
|
.pull-left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pull-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearfix {
|
|
|
|
clear: both;
|
|
|
|
}
|
2017-05-05 14:59:00 +02:00
|
|
|
|
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-05-22 16:56:09 +02:00
|
|
|
|
2017-06-13 17:46:08 +02:00
|
|
|
.text-right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2017-05-22 16:56:09 +02:00
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-07-24 10:01:53 +02:00
|
|
|
|
|
|
|
.width-100 {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2017-09-20 17:07:09 +02:00
|
|
|
|
|
|
|
.empty-text {
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
margin: 60px 0;
|
|
|
|
}
|
2017-12-05 16:07:05 +01:00
|
|
|
|
2018-06-28 11:14:02 +02:00
|
|
|
.empty-text-details {
|
|
|
|
margin-bottom: 60px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
.empty-text + & {
|
|
|
|
margin-top: -50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-05 16:07:05 +01:00
|
|
|
.highlighted {
|
|
|
|
background: $orange-bg;
|
|
|
|
color: $black;
|
|
|
|
}
|
2019-10-17 15:13:50 +02:00
|
|
|
|
2021-11-22 14:46:10 +01:00
|
|
|
|
|
|
|
|
2021-07-06 15:23:55 +02:00
|
|
|
.mt-1 {
|
|
|
|
margin-top: $default-spacer;
|
|
|
|
}
|
|
|
|
|
2019-10-17 15:13:50 +02:00
|
|
|
.mt-2 {
|
|
|
|
margin-top: 2 * $default-spacer;
|
|
|
|
}
|
2020-06-09 18:16:49 +02:00
|
|
|
|
2021-11-22 14:46:10 +01:00
|
|
|
.mt-3 {
|
|
|
|
margin-top: 3 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
2021-06-09 17:51:12 +02:00
|
|
|
.mt-4 {
|
|
|
|
margin-top: 4 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
2021-08-02 10:38:27 +02:00
|
|
|
.mt-8 {
|
|
|
|
margin-top: 8 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
2021-11-22 14:46:10 +01:00
|
|
|
.mb-1 {
|
|
|
|
margin-bottom: $default-spacer;
|
|
|
|
}
|
|
|
|
|
2020-06-09 18:16:49 +02:00
|
|
|
.mb-2 {
|
|
|
|
margin-bottom: 2 * $default-spacer;
|
|
|
|
}
|
2021-06-18 11:15:10 +02:00
|
|
|
|
2021-11-22 14:46:10 +01:00
|
|
|
.mb-3 {
|
|
|
|
margin-bottom: 3 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mb-4 {
|
|
|
|
margin-bottom: 4 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mb-8 {
|
|
|
|
margin-bottom: 8 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pt-1 {
|
|
|
|
padding-top: $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pt-2 {
|
|
|
|
padding-top: 2 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pt-3 {
|
|
|
|
padding-top: 3 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pt-4 {
|
|
|
|
padding-top: 4 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pt-8 {
|
|
|
|
padding-top: 8 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pb-1 {
|
|
|
|
padding-bottom: $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pb-2 {
|
|
|
|
padding-bottom: 2 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pb-3 {
|
|
|
|
padding-bottom: 3 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pb-4 {
|
|
|
|
padding-bottom: 4 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pb-8 {
|
|
|
|
padding-bottom: 8 * $default-spacer;
|
2021-06-18 11:15:10 +02:00
|
|
|
}
|