2024-04-15 08:45:09 +02:00
|
|
|
@media print {
|
|
|
|
|
/* Hide header / footer infos. */
|
2025-11-24 11:58:20 +01:00
|
|
|
|
2024-04-15 08:45:09 +02:00
|
|
|
@page {
|
|
|
|
|
margin: 0;
|
|
|
|
|
size: auto;
|
|
|
|
|
|
|
|
|
|
@top-left {
|
|
|
|
|
content: none;
|
|
|
|
|
}
|
|
|
|
|
@top-right {
|
|
|
|
|
content: none;
|
|
|
|
|
}
|
|
|
|
|
@top-center {
|
|
|
|
|
content: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@bottom-left {
|
|
|
|
|
content: none;
|
|
|
|
|
}
|
|
|
|
|
@bottom-right {
|
|
|
|
|
content: none;
|
|
|
|
|
}
|
|
|
|
|
@bottom-center {
|
|
|
|
|
content: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-24 11:58:20 +01:00
|
|
|
.panel, nav {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* regle du light mode dupliqué*/
|
|
|
|
|
:root {
|
|
|
|
|
--color-background: #ffffff;
|
|
|
|
|
--color-primary: #000;
|
|
|
|
|
|
|
|
|
|
--color-secondary-rgb: 140, 140, 140;
|
|
|
|
|
--font-weight-light: 240;
|
|
|
|
|
}
|
2024-04-15 08:45:09 +02:00
|
|
|
body {
|
|
|
|
|
padding-top: 4rem;
|
2025-11-24 11:58:20 +01:00
|
|
|
background-image: none;
|
|
|
|
|
background-color: var(--color-background) !important;
|
2024-04-15 08:45:09 +02:00
|
|
|
}
|
|
|
|
|
|
2025-11-24 11:58:20 +01:00
|
|
|
.minimized #inactuel{
|
|
|
|
|
transform: none !important;
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
#logo h1{
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 100%;
|
|
|
|
|
grid-template-rows: auto;
|
|
|
|
|
}
|
|
|
|
|
#logo #actuel, #logo #inactuel{
|
|
|
|
|
grid-column: 1;
|
|
|
|
|
grid-row: 1;
|
|
|
|
|
}
|
|
|
|
|
#logo #actuel {
|
|
|
|
|
font-weight: 550;
|
|
|
|
|
color: rgb(254, 250, 254) !important;
|
|
|
|
|
text-shadow: -1px 0 var(--color-primary), 1px 0 var(--color-primary), 0 -1px var(--color-primary),0 1px var(--color-primary);
|
|
|
|
|
z-index: 100;
|
|
|
|
|
}
|
|
|
|
|
#logo #inactuel {
|
|
|
|
|
z-index: 0;
|
2024-04-15 08:45:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-title.fs-xxl {
|
|
|
|
|
font-size: 7rem !important;
|
|
|
|
|
line-height: 1 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#main-header {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#entry-btns {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
text-decoration: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-26 13:21:42 +01:00
|
|
|
article #main-content {
|
2024-04-15 08:45:09 +02:00
|
|
|
width: 60%;
|
|
|
|
|
margin: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|