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

49 lines
782 B
SCSS
Raw Normal View History

2024-11-05 19:02:31 +01:00
@import 'colors';
@import 'constants';
@import 'mixins';
2017-07-06 16:25:51 +02:00
2024-11-05 19:02:31 +01:00
.table {
// TODO : tester de remplacer par l'élément table uniquement
2017-07-06 16:25:51 +02:00
width: 100%;
2017-07-27 16:02:35 +02:00
tbody tr {
2023-11-28 14:59:18 +01:00
border-top: 1px solid var(--border-default-grey);
2017-07-27 16:02:35 +02:00
}
td,
2024-11-05 19:02:31 +01:00
th[scope='row'] {
2017-07-27 16:02:35 +02:00
@include vertical-padding($default-spacer);
vertical-align: middle;
}
th,
td.libelle {
2017-07-27 16:02:35 +02:00
text-align: left;
font-weight: bold;
padding: (3 * $default-spacer) 2px;
2017-07-06 16:25:51 +02:00
&.padded {
padding-left: (2 * $default-spacer);
}
2019-01-30 17:20:02 +01:00
}
&.vertical {
2017-10-16 17:39:01 +02:00
font-size: 16px;
line-height: 22px;
2017-07-11 16:50:29 +02:00
2017-07-27 16:02:35 +02:00
tr {
border-top: none;
}
th,
td.libelle {
2017-07-27 16:02:35 +02:00
@include vertical-padding($default-spacer);
&.header-section {
2021-09-20 15:04:24 +02:00
color: $blue-france-500;
font-size: 20px;
}
2017-07-11 16:50:29 +02:00
}
2017-07-06 16:25:51 +02:00
}
}