Style li not in news-jobs cards and h3

This commit is contained in:
Lucie Anglade 2023-09-05 16:09:32 +02:00
parent 05306e141f
commit fa6abe042e
1 changed files with 27 additions and 2 deletions

View File

@ -50,7 +50,7 @@ a:hover,
iframe {
border: none;
height: 50em;
height: 45em;
width: 100%;
}
@ -69,6 +69,19 @@ ul {
padding: 0;
}
/* Titles */
#introduction h3::after,
#page-qui-sommes-nous h3::after,
#page-communaute h3::after,
#page-adhesions h3::after {
background: var(--light-orange);
content: "";
display: block;
height: 0.2em;
width: 1.5em;
}
/* Header and Footer */
header {
@ -177,7 +190,7 @@ main > section {
display: inline;
}
.news-jobs > article section:last-of-type li:not(:last-of-type):after {
.news-jobs > article section:last-of-type li:not(:last-of-type)::after {
content: ",";
}
@ -200,3 +213,15 @@ main > section {
.news-jobs section {
padding: 1em;
}
/* Who, Community, Membership */
#page-qui-sommes-nous main li,
#page-communaute main li,
#page-adhesions main li {
list-style: initial;
}
#page-adhesions h4 {
margin-bottom: 0.5em;
}