demarches-normaliennes/app/assets/stylesheets/utils.scss

64 lines
684 B
SCSS
Raw Normal View History

@import "colors";
2019-10-17 15:13:50 +02:00
@import "constants";
.pull-left {
float: left;
}
.pull-right {
float: right;
}
.clearfix {
clear: both;
}
2017-05-05 14:59:00 +02:00
.center {
text-align: center;
}
2017-06-13 17:46:08 +02:00
.text-right {
text-align: right;
}
.hidden {
display: none;
}
2017-07-24 10:01:53 +02:00
.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;
}
2019-10-17 15:13:50 +02:00
.mt-2 {
margin-top: 2 * $default-spacer;
}
2020-06-09 18:16:49 +02:00
2021-06-09 17:51:12 +02:00
.mt-4 {
margin-top: 4 * $default-spacer;
}
2020-06-09 18:16:49 +02:00
.mb-2 {
margin-bottom: 2 * $default-spacer;
}