2017-07-06 15:49:29 +02:00
|
|
|
@import "colors";
|
|
|
|
@import "constants";
|
|
|
|
|
2023-11-14 11:24:15 +01:00
|
|
|
|
|
|
|
[data-fr-theme="dark"] .card {
|
|
|
|
background: none;
|
|
|
|
border: 1px solid var(--background-action-low-blue-france);
|
|
|
|
}
|
2023-11-13 11:22:14 +01:00
|
|
|
|
2017-07-06 15:49:29 +02:00
|
|
|
.card {
|
|
|
|
padding: ($default-spacer * 3) ($default-spacer * 2);
|
|
|
|
border: 1px solid $border-grey;
|
2023-07-06 17:36:28 +02:00
|
|
|
margin-bottom: $default-spacer * 4;
|
2018-06-25 18:07:16 +02:00
|
|
|
background: #FFFFFF;
|
2020-07-28 15:15:56 +02:00
|
|
|
|
2018-06-26 17:00:01 +02:00
|
|
|
.card-title {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 20px;
|
2023-06-26 18:27:40 +02:00
|
|
|
line-height: 1.5rem;
|
2018-06-26 17:00:01 +02:00
|
|
|
margin-bottom: $default-spacer * 2;
|
2023-06-26 18:27:40 +02:00
|
|
|
|
|
|
|
a:not(:hover) {
|
|
|
|
background-image: none; // remove DSFR underline
|
|
|
|
}
|
2018-06-26 17:00:01 +02:00
|
|
|
}
|
|
|
|
|
2023-06-27 14:33:49 +02:00
|
|
|
.logo {
|
|
|
|
width: auto;
|
|
|
|
max-width: 50px;
|
2023-07-17 14:48:32 +02:00
|
|
|
height: 100%;
|
2023-06-27 14:33:49 +02:00
|
|
|
margin-right: $default-spacer * 2;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2019-11-13 18:09:17 +01:00
|
|
|
|
|
|
|
b {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2017-07-06 15:49:29 +02:00
|
|
|
}
|
2019-02-21 16:23:03 +01:00
|
|
|
|
2022-03-22 15:00:26 +01:00
|
|
|
&.no-list {
|
|
|
|
ul {
|
|
|
|
list-style: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-31 16:43:20 +02:00
|
|
|
:not(.fr-downloads-group):not(.fr-pagination) > ul {
|
2020-01-27 14:28:23 +01:00
|
|
|
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
|
|
|
}
|