drupal-quartiersdedemain/web/themes/custom/quartiers_de_demain/scss/pages/_static.scss

46 lines
1.2 KiB
SCSS
Raw Normal View History

2024-02-27 22:14:29 +01:00
.node-type-static{
2024-03-01 10:27:22 +01:00
.layout-content{
// grid-column: 1 / span 12;
2024-03-04 11:51:52 +01:00
grid-row: 1;
2024-03-01 10:27:22 +01:00
.content_container{
2024-03-05 15:46:58 +01:00
margin-bottom: 3rem;
2024-03-01 10:27:22 +01:00
#block-quartiers-de-demain-titredepage{
grid-column: 3 /span 9;
grid-row: 1;
margin-top: 3rem;
2024-05-07 13:22:13 +02:00
@media(max-width: 500px){
margin-top: 1rem;
grid-column: 2 /span 9;
}
2024-03-01 10:27:22 +01:00
h1{
text-transform: uppercase;
color: $red_QDD ;
font-size: $font-large;
font-weight: 300;
2024-02-27 22:14:29 +01:00
}
2024-03-01 10:27:22 +01:00
}
article.node-type-static{
grid-column: 3 /span 9;
grid-row: 2;
2024-05-07 13:22:13 +02:00
@media(max-width: 500px){
grid-column: 2 /span 9;
}
2024-03-01 10:27:22 +01:00
div.field_body{
h2{
font-size: $font-medium;
font-weight: 600;
margin-bottom: 0;
}
p{
margin-top: 0;
}
2024-02-27 22:14:29 +01:00
}
}
}
}
2024-03-01 10:27:22 +01:00
2024-02-27 22:14:29 +01:00
}
2024-03-04 11:51:52 +01:00