venissieux: more css class options for cell (#78019) #288

Merged
tjund merged 4 commits from wip/78019-vennissieux-more-cell-options into main 2023-05-31 10:06:37 +02:00
2 changed files with 28 additions and 1 deletions

View File

@ -222,6 +222,33 @@ div#section-une {
}
}
.cell-bordered {
.gru-content &.cell {
border: 1px solid $primary-color;
}
}
.cell-green {
.gru-content &.cell {
background-color: #e5f2f0;
a {
color: #01516a;
}
div.links-list ul > li > a:hover {
color: $cell-entry-hover-color
}
}
}
.cell-red-title {
.gru-content &.cell {
h2:first-child {
color: $secondary-color;
}
}
}
div#rub_service {
h2 {
text-align: left;

View File

@ -21,7 +21,7 @@ $title-transform: uppercase;
$title-font-family: Oswald, sans-serif;
$title-weight: 300;
$title-font-size: 1.5rem;
$title-padding: 0.7rem 0.5rem;
$title-padding: 1rem 1rem 0;
$button-background: $primary-color;
$button-hover-background: darken($primary-color, 20%);