2021-12-21 15:42:32 +01:00
|
|
|
body {
|
|
|
|
margin: 0;
|
2022-03-18 01:53:30 +01:00
|
|
|
display: grid;
|
2024-10-13 18:07:09 +02:00
|
|
|
grid-template-areas:
|
|
|
|
"header header"
|
|
|
|
"menu main"
|
|
|
|
"footer footer";
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
2023-01-11 20:06:57 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2021-12-21 15:42:32 +01:00
|
|
|
margin-top: 2em;
|
|
|
|
margin-left: 3em;
|
2023-01-11 20:06:57 +01:00
|
|
|
margin-right: 3em;
|
2024-10-13 18:07:09 +02:00
|
|
|
grid-area: header;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
2022-03-18 01:53:30 +01:00
|
|
|
header a {
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2023-01-18 00:19:40 +01:00
|
|
|
#header-glider {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header-glider img {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
header h2 {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2023-01-11 20:06:57 +01:00
|
|
|
#lang {
|
|
|
|
margin-top: 20px;
|
2024-04-04 21:29:29 +02:00
|
|
|
display: grid;
|
|
|
|
grid-auto-flow: column;
|
|
|
|
grid-column-gap: 1em;
|
|
|
|
grid-template-rows: fit-content(100%);
|
2023-01-11 20:06:57 +01:00
|
|
|
}
|
|
|
|
|
2024-04-04 21:29:29 +02:00
|
|
|
#lang a {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 150%;
|
2023-01-11 20:06:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#lang #choose {
|
2024-04-04 21:29:29 +02:00
|
|
|
color: #4970E1;
|
2023-01-11 20:06:57 +01:00
|
|
|
}
|
|
|
|
|
2024-04-04 21:29:29 +02:00
|
|
|
#lang a:hover {
|
|
|
|
color: #FA4DBA;
|
2023-01-11 20:06:57 +01:00
|
|
|
}
|
|
|
|
|
2021-12-26 12:34:51 +01:00
|
|
|
#header-links {
|
2022-03-18 01:53:30 +01:00
|
|
|
margin: 2em 0 2em 3em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-10-13 18:07:09 +02:00
|
|
|
grid-area: menu;
|
2021-12-26 12:34:51 +01:00
|
|
|
}
|
|
|
|
|
2022-03-18 01:53:30 +01:00
|
|
|
#header-links a {
|
2021-12-26 12:34:51 +01:00
|
|
|
color: black;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
2022-03-18 01:53:30 +01:00
|
|
|
#header-links a:hover {
|
2021-12-26 12:34:51 +01:00
|
|
|
color: white;
|
|
|
|
background-color: black;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
2024-04-04 22:26:28 +02:00
|
|
|
margin: 2em 3em 5em 1em;
|
2024-10-13 18:07:09 +02:00
|
|
|
grid-area: main;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
2021-12-24 13:17:11 +01:00
|
|
|
background-color: #304B99;
|
2021-12-21 15:42:32 +01:00
|
|
|
padding: 1em;
|
2022-11-17 00:26:23 +01:00
|
|
|
padding-bottom: 0;
|
2024-10-13 18:07:09 +02:00
|
|
|
grid-area: footer;
|
2022-03-18 01:53:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#buttons {
|
|
|
|
margin-top: 1em;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#fsf {
|
2022-03-18 01:53:30 +01:00
|
|
|
text-align: right;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
2023-05-04 23:16:08 +02:00
|
|
|
/* boutons avant la liste des 88x31. bien alignés au centre de la div */
|
|
|
|
.pred-buttons {
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
}
|
|
|
|
|
2021-12-21 15:42:32 +01:00
|
|
|
#footer-main {
|
|
|
|
display: grid;
|
2023-05-04 23:16:08 +02:00
|
|
|
grid-template-columns: 25% 50% 10% 15%;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#footer-text p {
|
|
|
|
justify-self: center;
|
|
|
|
margin: 0;
|
2021-12-24 13:17:11 +01:00
|
|
|
color: white;
|
2022-03-18 01:53:30 +01:00
|
|
|
text-align: center;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
2021-12-24 13:17:11 +01:00
|
|
|
#footer-text a, #footer-text span {
|
|
|
|
color: white;
|
2021-12-22 04:28:07 +01:00
|
|
|
}
|
|
|
|
|
2021-12-21 15:42:32 +01:00
|
|
|
#footer-contact {
|
|
|
|
padding-top: 1em;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer-link-email {
|
|
|
|
color: black;
|
|
|
|
text-decoration: underline dotted;
|
2021-12-22 04:28:07 +01:00
|
|
|
}
|
2022-03-18 01:53:30 +01:00
|
|
|
|
|
|
|
#buttons {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2022-11-17 00:26:23 +01:00
|
|
|
|
|
|
|
#buttons div {
|
|
|
|
margin-bottom: 1em;
|
2023-01-11 20:06:57 +01:00
|
|
|
}
|
2024-10-13 18:56:08 +02:00
|
|
|
|
|
|
|
@media only screen and (max-width: 641px) {
|
|
|
|
body {
|
|
|
|
grid-template-areas:
|
|
|
|
"header header"
|
|
|
|
"main main"
|
|
|
|
"menu menu"
|
|
|
|
"footer footer";
|
|
|
|
}
|
|
|
|
|
|
|
|
#header-links {
|
|
|
|
position: sticky;
|
|
|
|
bottom: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
flex-direction: row;
|
|
|
|
background-color: white;
|
|
|
|
border-top: solid black;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#lang {
|
|
|
|
justify-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
|
|
|
margin: 2em 1em 2em 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer-main {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pred-buttons {
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
}
|