Thème Ville d'Avray: correction de la couleur des titres par défaut

This commit is contained in:
Michael Bideau 2019-03-12 17:17:40 +00:00
parent e2d85266ec
commit d6ea9a62d9
2 changed files with 22 additions and 2 deletions

View File

@ -414,6 +414,24 @@ div#rub_service div.category h3,
height: 4px;
}
}
div.large div#rub_service h3,
div#rub_service h3 {
border-bottom: 2px solid $title-color;
}
div#steps ol {
& li.current {
background: $title-color;
color: $title-background;
}
}
@if ($responsive-steps == horizontal) {
@media screen and (max-width: $mobile-limit) {
div#steps ol li.current span.marker {
background: $title-color;
color: $title-background;
}
}
}
@media screen and (max-width: $mobile-limit) {

View File

@ -36,8 +36,8 @@ $cell-border: 1px solid transparent;
$border-radius: 0px;
$widget-border-radius: 3px;
$title-background: $primary-color;
$title-color: white;
$title-background: white;
$title-color: $primary-color;
$link-color: #96B313;
@ -49,3 +49,5 @@ $button-background: $link-color;
$button-hover-background: white;
$button-hover-color: $link-color;
$table-headers-background: $title-color !default;
$table-headers-color: $title-background !default;