demarches-normaliennes/app/assets/stylesheets/new_design/labels.scss
gregoirenovel 1a4cef818d Set the line-height of the labels
So that their heights are fixed
2017-10-23 12:44:21 +02:00

37 lines
609 B
SCSS

@import "colors";
@import "constants";
.label {
display: inline-block;
padding: 4px $default-spacer;
background: $grey;
border: 1px solid transparent;
color: #FFFFFF;
border-radius: 4px;
font-size: 12px;
line-height: 18px;
&.instruction {
background-color: #FFFFFF;
color: $blue;
border: 1px solid $blue;
}
&.construction {
background-color: #FFFFFF;
color: $black;
border: 1px solid $black;
}
&.closed {
background-color: $green;
}
&.refused {
background-color: $dark-red;
}
&.without-continuation {
background-color: $black;
}
}