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

72 lines
1.2 KiB
SCSS
Raw Normal View History

2017-07-06 15:49:29 +02:00
@import "colors";
@import "constants";
.card {
padding: ($default-spacer * 3) ($default-spacer * 2);
border: 1px solid $border-grey;
margin-bottom: $default-spacer * 2;
background: #FFFFFF;
2017-07-06 15:49:29 +02:00
.notice {
font-size: 16px;
color: #666666;
margin-top: -8px;
margin-bottom: 16px;
}
2018-06-26 17:00:01 +02:00
.card-title {
font-weight: bold;
font-size: 20px;
margin-bottom: $default-spacer * 2;
}
2017-07-06 15:49:29 +02:00
&.featured {
2021-09-20 15:04:24 +02:00
border-top: 8px solid $blue-france-500;
2017-07-06 15:49:29 +02:00
.card-title {
2021-09-20 15:04:24 +02:00
color: $blue-france-500;
2017-07-06 15:49:29 +02:00
}
}
&.warning {
border-top: 8px solid $orange;
.card-title {
color: $orange;
}
}
2018-06-26 17:00:01 +02:00
&.feedback {
max-width: 600px;
margin: 30px auto;
padding: ($default-spacer * 2) ($default-spacer * 4);
font-size: small;
border: 1px dashed $border-grey;
background: $light-yellow;
.card-title {
margin-bottom: $default-spacer;
}
b {
font-weight: bold;
}
2017-07-06 15:49:29 +02:00
}
2019-02-21 16:23:03 +01:00
ul {
list-style-type: disc;
list-style-position: inside;
padding-left: $default-padding;
}
ol {
list-style-type: decimal;
list-style-position: inside;
padding-left: $default-padding;
}
2019-02-21 16:23:03 +01:00
p:not(:last-of-type) {
margin-bottom: $default-spacer;
}
2017-07-06 15:49:29 +02:00
}