41 lines
595 B
SCSS
41 lines
595 B
SCSS
|
|
/* main[role="main"] {
|
|
margin-top: 10vh;
|
|
@media (min-width: $breakpoint_desktop) {
|
|
margin-top: calc(10vh + 3rem);
|
|
}
|
|
} */
|
|
|
|
body {
|
|
background-color: lightgrey;
|
|
}
|
|
|
|
.layout-container {
|
|
display: flex;
|
|
}
|
|
|
|
main:has(#block-erabletheme-leprogramme-2) {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
@media screen and (min-width: $breakpoint_tablet) {
|
|
flex-direction: row-reverse;
|
|
}
|
|
}
|
|
|
|
strong {
|
|
font-weight: bold;
|
|
}
|
|
|
|
em {
|
|
font-style: italic;
|
|
}
|
|
|
|
#block-erabletheme-titredepage {
|
|
display: none;
|
|
}
|
|
|
|
// debug
|
|
/* * {
|
|
border: solid 1px red !important;
|
|
} */
|