index-website-static/assets/css/style.css

1066 lines
23 KiB
CSS
Raw Normal View History

@charset "UTF-8";
:root {
--font: "Executive", Arial, sans-serif;
--title: "System", Arial, sans-serif;
--fs-x-small: 10px;
--fs-small: 12px;
--fs-normal: 16px;
--fs-medium: 20px;
--fs-big: 30px;
2025-12-19 10:18:22 +01:00
--fs-xbig: 38px;
--fs-button-bold: 22px;
2025-12-19 10:18:22 +01:00
--max-w-content: 700px;
--leading-tight: 1;
--leading-normal: 1.2;
--fw-normal: 400;
--fw-medium: 500;
--fw-bold: 600;
--grey-100: #d8d8d8;
--grey-200: #c8c8c8;
--grey-300: #b9b9b9;
--grey-400: #969696;
--grey-600: #6d6d6d;
--grey-800: #383838;
--color-bg: #161616;
--color-txt: #ffffff;
2025-12-19 10:18:22 +01:00
--color-txt-light: var(--grey-400);
--color-accent: #00ff00;
--color-accent-50: #e9ffe9;
--color-accent-100: #d8fdd8;
2025-12-19 10:18:22 +01:00
--dark: black;
--border: 1px solid var(--color-txt);
--border-light: 1px solid var(--grey-800);
--header-h: 80px;
--header-h-shrinked: 50px;
2025-12-19 12:33:59 +01:00
--menu-w: 420px;
--padding-body: 26px;
2025-12-23 19:17:52 +01:00
--padding-inner: 14px;
--radius-small: 4px;
2025-12-23 19:17:52 +01:00
--radius-btn: 4px;
--spacing: 30px;
--h-block: 30px;
--curve: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
2025-12-23 19:17:52 +01:00
@media screen and (max-width: 768px) {
:root {
--fs-medium: 20px;
--fs-big: 26px;
}
}
2025-12-23 19:17:52 +01:00
@media screen and (max-width: 768px) {
:root {
--fs-x-small: 10px;
--fs-small: 11px;
--fs-normal: 14px;
--fs-medium: 20px;
--fs-big: 30px;
--fs-x-big: 38px;
2025-12-23 19:17:52 +01:00
--header-h: 60px;
}
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
scroll-behavior: smooth;
}
a {
color: currentColor;
}
button {
background: none;
outline: none;
border: none;
color: var(--color-txt);
}
iframe {
border: none;
}
body {
font-family: var(--font);
line-height: var(--leading-normal);
font-size: var(--fs-normal);
color: var(--color-txt);
background-color: var(--color-bg);
width: 100vw;
overflow-x: hidden;
}
@keyframes add-border {
from {
border-bottom-color: transparent;
}
to {
border-bottom: var(--grey-800);
}
}
#site-header {
z-index: 900;
--gap: 3ch;
2025-12-23 17:29:27 +01:00
width: 100vw;
height: var(--header-h);
background-color: var(--color-bg);
2025-12-23 17:29:27 +01:00
padding: 0 var(--padding-body);
}
#site-header .site-header__inner {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--gap);
}
#site-header a {
text-decoration: none;
}
#site-header a:hover {
color: var(--grey-200);
}
#site-header #site-title {
flex-grow: 2;
}
#site-header #site-title svg {
width: 100px;
}
#site-header ul {
list-style-type: none;
display: flex;
align-items: center;
gap: var(--gap);
text-transform: uppercase;
}
#site-header #lang-toggle {
display: flex;
gap: 1ch;
}
#site-header #lang-toggle button:disabled {
color: var(--color-txt-light);
}
#site-header #menu-toggle {
cursor: pointer;
}
#site-header #menu-toggle svg {
width: 30px;
}
#site-header #menu-toggle .close {
display: none;
}
#site-header button:hover svg {
fill: var(--grey-200) !important;
}
2025-12-23 17:29:27 +01:00
#site-header.is-visible {
position: fixed;
top: 0;
}
2025-12-23 19:17:52 +01:00
#site-header.is-visible .site-header__inner {
border-bottom: var(--border-light);
}
2025-12-23 17:29:27 +01:00
#site-header.is-visible ~ main {
margin-top: var(--header-h);
}
2025-12-23 19:17:52 +01:00
@media screen and (max-width: 1080px) {
#nav-highlight {
display: none;
}
}
button {
cursor: pointer;
font-family: var(--font);
font-size: var(--fons-normal);
color: var(--color-txt);
}
button:hover {
color: var(--grey-100);
}
button a {
text-decoration: none;
width: 100%;
height: 100%;
}
button:disabled {
cursor: auto;
}
2025-12-19 10:18:22 +01:00
.soutenir a {
color: var(--color-accent);
}
.soutenir a:hover {
color: var(--color-accent) !important;
text-decoration: underline !important;
}
2025-12-19 12:33:59 +01:00
.btn--bold,
.btn--bold-inline {
display: block;
height: calc(var(--h-block) * 1);
border: var(--border);
2025-12-23 19:17:52 +01:00
border-radius: var(--radius-btn);
2025-12-19 12:33:59 +01:00
font-size: var(--fs-small);
text-transform: uppercase;
line-height: 1;
overflow: hidden;
white-space: nowrap;
}
.btn--bold a,
.btn--bold-inline a {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
padding: 0 2ch;
2025-12-23 19:17:52 +01:00
padding-top: 4px;
}
.btn--bold.no-link,
.btn--bold-inline.no-link {
display: flex;
align-items: center;
justify-content: center;
padding: 0 2ch;
padding-top: 4px;
2025-12-19 12:33:59 +01:00
}
.btn--bold {
background-color: var(--color-txt);
color: var(--color-bg);
}
.btn--bold:hover {
background-color: var(--color-accent);
border-color: var(--color-accent);
}
.btn--bold:hover a {
color: var(--color-bg);
}
2025-12-23 19:17:52 +01:00
.btn--bold-inline:hover {
background-color: var(--grey-800);
color: var(--color-txt);
}
2025-12-19 12:33:59 +01:00
.btn--bold-inline:hover a {
background-color: var(--grey-800);
color: var(--color-txt);
}
.btn__default {
--size: calc(var(--h-block) - 8px);
font-size: var(--fs-normal);
font-weight: var(--fw-normal);
height: var(--size);
padding-right: 1.5ch;
position: relative;
display: flex;
align-items: center;
gap: 0ch;
color: var(--color-accent);
font-weight: var(--fw-medium);
text-decoration: none;
cursor: pointer;
}
.btn__default .icon, .btn__default .txt {
z-index: 10;
}
.btn__default .icon {
width: var(--size);
height: var(--size);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-bg);
text-align: center;
}
.btn__default .icon svg {
fill: var(--color-bg);
width: 80%;
}
.btn__default .txt {
font-family: var(--font-title);
color: var(--color-accent);
font-size: var(--fs-normal);
font-weight: var(--fw-bold);
padding-left: 1ch;
}
.btn__default::after {
content: "";
display: block;
background-color: var(--color-accent);
border-radius: calc(var(--size) / 2);
width: var(--size);
height: var(--size);
position: absolute;
left: 0;
z-index: 0;
transition: width 0.2s;
}
.btn__default:hover .txt {
color: var(--color-bg);
display: block;
}
.btn__default:hover::after {
width: 100%;
}
2025-12-19 10:48:31 +01:00
.keywords {
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 1ch;
}
.keywords li {
height: var(--h-block);
border-radius: calc(var(--h-block) * 0.5);
border: var(--border-light);
font-size: var(--fs-normal);
overflow: hidden;
}
.keywords li a {
text-decoration: none;
width: 100%;
height: 100%;
display: flex;
align-items: center;
padding: 0 1.5ch;
line-height: 1;
padding-top: 2px;
}
.keywords li:hover {
border-color: var(--color-txt);
}
.keywords li:hover a {
color: currentColor;
}
.form__newsletter {
--size: 24px;
position: relative;
display: flex;
align-items: center;
position: relative;
}
.form__newsletter input[type=email] {
height: calc(var(--h-block) * 1.25);
width: 100%;
border-radius: calc(var(--h-block) * 0.625);
outline: none;
border: none;
padding: 0 2ch;
font-family: var(--font);
font-size: var(--fs-normal);
z-index: 40;
padding-top: 4px;
}
.form__newsletter input[type=email]::-moz-placeholder {
font-family: var(--font);
font-size: var(--fs-normal);
}
.form__newsletter input[type=email]::placeholder {
font-family: var(--font);
font-size: var(--fs-normal);
}
.form__newsletter input[type=email]:focus {
outline: 3px solid var(--grey-400);
}
.form__newsletter button[type=submit].btn--bold {
position: absolute;
right: 2px;
z-index: 100;
}
.form__newsletter button[type=submit].btn--bold {
--size: calc(var(--h-block)*1.25 - 4px);
font-family: var(--font);
font-size: var(--fs-button-bold);
height: var(--size);
display: flex;
align-items: center;
gap: 0.75ch;
color: var(--color-accent);
font-weight: var(--fw-medium);
text-decoration: none;
cursor: pointer;
}
.form__newsletter button[type=submit].btn--bold .icon, .form__newsletter button[type=submit].btn--bold .txt {
z-index: 10;
}
.form__newsletter button[type=submit].btn--bold .icon {
width: var(--size);
height: var(--size);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-bg);
text-align: center;
}
.form__newsletter button[type=submit].btn--bold .icon svg {
fill: var(--color-bg);
width: 80%;
}
.form__newsletter button[type=submit].btn--bold .txt {
position: relative;
top: 2px;
font-size: var(--fs-normal);
display: none;
padding-left: 1ch;
}
.form__newsletter button[type=submit].btn--bold::after {
content: "";
display: block;
background-color: var(--color-accent);
border-radius: calc(var(--size) / 2);
width: var(--size);
height: var(--size);
position: absolute;
right: 0;
z-index: 0;
transition: width 0.2s;
}
.form__newsletter button[type=submit].btn--bold:hover .txt {
color: var(--color-bg);
display: block;
}
.form__newsletter button[type=submit].btn--bold:hover::after {
width: 100%;
}
.list-socials {
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
max-width: 400px;
}
.list-socials a {
display: flex;
align-items: center;
text-decoration: none;
}
.list-socials .icon {
width: 24px;
height: 24px;
position: relative;
top: -2px;
}
.list-socials svg {
display: flex;
align-items: center;
width: 24px;
height: 24px;
}
.list-socials .text {
display: none;
}
2025-12-23 19:17:52 +01:00
@media screen and (min-width: 768px) {
.footer__socials .list-socials {
display: block;
}
.footer__socials .list-socials li {
margin-bottom: calc(var(--spacing) * 0.5);
-moz-column-break-inside: avoid;
break-inside: avoid;
}
.footer__socials .list-socials a {
gap: 1ch;
height: calc(var(--spacing) * 1);
}
.footer__socials .list-socials a::after {
content: "↗";
color: var(--grey-300);
}
.footer__socials .list-socials .text {
display: block;
line-height: 1;
}
}
2025-12-23 19:17:52 +01:00
.modal--share {
border: var(--border);
border-radius: var(--radius-btn);
background-color: var(--color-bg);
padding: var(--padding-inner);
padding-top: calc(var(--padding-inner) * 0.5);
padding-bottom: calc(var(--padding-inner) * 1.5);
}
.modal--share .modal-title {
display: none;
}
.modal--share .socials {
display: block;
list-style: none;
}
.modal--share .socials li {
font-size: var(--fs-normal);
padding-bottom: 6px;
border-bottom: var(--border-light);
padding-top: 6px;
}
.modal--share .socials li a {
display: flex;
align-items: center;
gap: 1ch;
text-decoration: none;
}
.modal--share .socials li .icon {
width: 20px;
height: 20px;
}
.modal--share .socials li .icon svg {
width: 100%;
height: 100%;
}
.modal--share .socials li .text {
position: relative;
top: 2px;
}
.modal--share .socials li:hover {
color: var(--color-accent);
}
.modal--share .socials li:hover .icon svg,
.modal--share .socials li:hover .icon svg path,
.modal--share .socials li:hover .icon svg rect {
fill: var(--color-accent) !important;
}
.modal--share .copy-link {
display: flex;
gap: 0.5ch;
margin-top: calc(var(--spacing) * 0.75);
}
.modal--share .copy-link .copy-link__field {
flex-grow: 1;
display: grid;
grid-template-columns: var(--h-block) 1fr;
}
.modal--share .copy-link .icon {
display: flex;
width: var(--h-block);
height: 100%;
align-items: center;
justify-content: center;
position: relative;
grid-row: 1;
grid-column: 1;
}
.modal--share .copy-link .icon svg {
width: 12px;
}
.modal--share .copy-link input {
font-size: var(--fs-small);
font-family: var(--font);
background: none;
border: none;
color: var(--color-txt);
padding-top: 2px;
grid-column: 1/end;
grid-row: 1;
padding-left: var(--h-block);
padding-right: 0.5ch;
border: var(--border-light);
border-radius: var(--radius-btn);
height: var(--h-block);
}
.modal--share .copy-link input:focus {
border-color: var(--color-txt);
outline: none;
}
.modal--share .copy-link button {
background-color: var(--color-txt);
color: var(--color-bg);
border-radius: var(--radius-btn);
padding: 0 1ch;
font-size: var(--fs-small);
padding-top: 2px;
}
.modal--share .copy-link button:hover {
background-color: var(--color-accent);
}
[data-template=subscription-newsletter] .p__baseline-big,
[data-template=thanks] .p__baseline-big,
[data-template=support] .p__baseline-big,
[data-template=store] .p__baseline-big {
font-family: var(--title);
font-size: var(--fs-big);
font-weight: var(--fw-bold);
line-height: 1.1;
text-align: center;
margin: calc(var(--spacing) * 1) 0;
}
[data-template=subscription-newsletter] .p__baseline-big strong,
[data-template=thanks] .p__baseline-big strong,
[data-template=support] .p__baseline-big strong,
[data-template=store] .p__baseline-big strong {
font-weight: var(--fw-bolf);
color: var(--color-accent);
}
[data-template=subscription-newsletter] .p__baseline-big .link-don,
[data-template=thanks] .p__baseline-big .link-don,
[data-template=support] .p__baseline-big .link-don,
[data-template=store] .p__baseline-big .link-don {
display: block;
color: var(--color-accent);
text-decoration: none;
}
[data-template=subscription-newsletter] .p__baseline-big .link-don:hover,
[data-template=thanks] .p__baseline-big .link-don:hover,
[data-template=support] .p__baseline-big .link-don:hover,
[data-template=store] .p__baseline-big .link-don:hover {
-webkit-text-decoration: underline 2px;
text-decoration: underline 2px;
text-underline-offset: 4px;
}
[data-template=subscription-newsletter] .p__baseline,
[data-template=thanks] .p__baseline,
[data-template=support] .p__baseline,
[data-template=store] .p__baseline {
font-size: var(--fs-medium);
font-weight: var(--fw-medium);
line-height: 1.1;
text-align: center;
margin: calc(var(--spacing) * 1) 0;
}
2025-12-23 19:17:52 +01:00
@media screen and (max-width: 768px) {
[data-template=subscription-newsletter] .p__baseline,
[data-template=thanks] .p__baseline,
[data-template=support] .p__baseline,
[data-template=store] .p__baseline {
text-align: center;
margin: var(--spacing) 0;
}
}
[data-template=subscription-newsletter] .p__details,
[data-template=thanks] .p__details,
[data-template=support] .p__details,
[data-template=store] .p__details {
font-size: var(--fs-small);
margin-bottom: 0.5em;
color: var(--grey-400);
}
[data-template=subscription-newsletter] .section__heading,
[data-template=thanks] .section__heading,
[data-template=support] .section__heading,
[data-template=store] .section__heading {
font-size: var(--fs-normal);
font-weight: var(--fw-medium);
line-height: 1;
text-align: center;
margin-top: calc(var(--spacing) * 0.5);
margin-bottom: calc(var(--spacing) * 1);
}
[data-template=subscription-newsletter] ul, [data-template=subscription-newsletter] ol,
[data-template=thanks] ul,
[data-template=thanks] ol,
[data-template=support] ul,
[data-template=support] ol,
[data-template=store] ul,
[data-template=store] ol {
margin-left: 3ch;
margin-bottom: 0.5em;
}
@keyframes add-border {
from {
border-bottom-color: transparent;
}
to {
border-bottom: var(--grey-800);
}
}
#site-header {
z-index: 900;
--gap: 3ch;
2025-12-23 17:29:27 +01:00
width: 100vw;
height: var(--header-h);
background-color: var(--color-bg);
2025-12-23 17:29:27 +01:00
padding: 0 var(--padding-body);
}
#site-header .site-header__inner {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--gap);
}
#site-header a {
text-decoration: none;
}
#site-header a:hover {
color: var(--grey-200);
}
#site-header #site-title {
flex-grow: 2;
}
#site-header #site-title svg {
width: 100px;
}
#site-header ul {
list-style-type: none;
display: flex;
align-items: center;
gap: var(--gap);
text-transform: uppercase;
}
#site-header #lang-toggle {
display: flex;
gap: 1ch;
}
#site-header #lang-toggle button:disabled {
color: var(--color-txt-light);
}
#site-header #menu-toggle {
cursor: pointer;
}
#site-header #menu-toggle svg {
width: 30px;
}
#site-header #menu-toggle .close {
display: none;
}
#site-header button:hover svg {
fill: var(--grey-200) !important;
}
2025-12-23 17:29:27 +01:00
#site-header.is-visible {
position: fixed;
top: 0;
}
2025-12-23 19:17:52 +01:00
#site-header.is-visible .site-header__inner {
border-bottom: var(--border-light);
}
2025-12-23 17:29:27 +01:00
#site-header.is-visible ~ main {
margin-top: var(--header-h);
}
2025-12-23 19:17:52 +01:00
@media screen and (max-width: 1080px) {
#nav-highlight {
display: none;
}
}
2025-12-19 10:18:22 +01:00
#site-menu {
position: fixed;
2025-12-19 12:33:59 +01:00
width: var(--menu-w);
2025-12-19 10:18:22 +01:00
height: calc(100dvh - var(--header-h));
height: calc(100vh - var(--header-h));
top: var(--header-h);
2025-12-19 12:33:59 +01:00
right: calc(var(--menu-w) * -1);
transition: right 0.3s ease-in;
2025-12-19 10:18:22 +01:00
background-color: var(--color-bg);
border-left: var(--border-light);
padding: var(--padding-body);
2025-12-19 12:33:59 +01:00
z-index: 1000;
2025-12-19 10:18:22 +01:00
display: flex;
flex-direction: column;
}
#site-menu form {
margin-top: calc(var(--spacing) * 1);
margin-bottom: calc(var(--spacing) * 1);
--icon: 40px;
display: grid;
grid-template-columns: var(--icon) 1fr;
}
#site-menu form input {
grid-column: 1/3;
grid-row: 1;
height: calc(var(--h-block) * 1.5);
width: 100%;
background: var(--color-bg);
border: 1px solid var(--color-txt);
padding-left: var(--icon);
font-family: var(--font);
font-size: var(--fs-normal);
color: var(--color-txt);
padding-top: 3px;
}
#site-menu form input::-moz-placeholder {
font-family: var(--font);
font-size: var(--fs-normal);
color: var(--color-txt);
}
#site-menu form input::placeholder {
font-family: var(--font);
font-size: var(--fs-normal);
color: var(--color-txt);
}
#site-menu form input:focus {
border-color: var(--color-accent);
outline: none;
}
#site-menu form .icon {
grid-column: 1;
grid-row: 1;
z-index: 10;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
#site-menu form .icon svg {
width: 20px;
}
#site-menu nav {
flex-grow: 1;
}
#site-menu nav ul {
list-style-type: none;
text-transform: uppercase;
}
#site-menu nav ul li {
2025-12-19 12:33:59 +01:00
font-size: var(--fs-normal);
2025-12-19 10:18:22 +01:00
}
#site-menu nav ul li a {
display: block;
text-decoration: none;
padding: 0.5em 0;
}
#site-menu nav ul li a:hover {
2025-12-19 12:33:59 +01:00
text-decoration: underline;
2025-12-19 10:18:22 +01:00
}
#site-menu nav ul .highlight {
text-transform: uppercase;
}
2025-12-19 12:33:59 +01:00
body.menu-open {
overflow: hidden;
}
body.menu-open main, body.menu-open footer, body.menu-open #nav-highlight {
transition: opacity 0.3s ease-in;
opacity: 0.1;
}
body.menu-open #site-menu {
right: 0;
}
body.menu-open #menu-toggle .open {
display: none;
}
body.menu-open #menu-toggle .close {
display: block !important;
}
#site-footer {
2025-12-19 10:18:22 +01:00
background-color: var(--dark);
padding: calc(var(--padding-body) * 2) var(--padding-body);
}
#site-footer .logo {
margin-top: calc(var(--spacing) * 0.25);
margin-bottom: calc(var(--spacing) * 1);
}
#site-footer .logo svg {
width: 100px;
}
#site-footer p {
margin: calc(var(--spacing) * 0.5) 0;
}
#site-footer p a {
text-decoration: none;
}
#site-footer p a:hover {
text-decoration: underline;
color: currentColor;
}
#site-footer .p__small {
font-size: var(--fs-x-small);
color: var(--grey-600);
}
#site-footer .footer__mentions p {
font-size: var(--fs-small);
color: var(--color-txt);
}
2025-12-23 19:17:52 +01:00
@media screen and (max-width: 768px) {
#site-footer {
margin-top: calc(var(--spacing) * 2);
}
#site-footer .footer__socials {
margin-top: calc(var(--spacing) * 0.75);
padding-top: calc(var(--spacing) * 0.25);
border-top: var(--border-light);
}
#site-footer .footer__socials .list-socials {
margin-top: calc(var(--spacing) * 0.5);
margin-bottom: calc(var(--spacing) * 0.75);
}
#site-footer .footer__mentions {
border-top: var(--border-light);
padding-top: calc(var(--spacing) * 0.25);
}
#site-footer .footer__mentions p {
font-size: var(--fs-small);
text-align: center;
}
}
2025-12-23 19:17:52 +01:00
@media screen and (min-width: 768px) {
#site-footer .site-footer__container {
display: grid;
grid-template-columns: 1fr 1fr;
-moz-column-gap: calc(var(--spacing) * 2);
column-gap: calc(var(--spacing) * 2);
max-width: 1200px;
margin: 0 auto;
}
#site-footer .footer__socials .container {
max-width: 400px;
-moz-columns: 2;
columns: 2;
margin-top: calc(var(--spacing) * 1);
}
#site-footer .footer__mentions {
grid-column: span 2;
}
#site-footer .footer__mentions p {
margin-top: calc(var(--spacing) * 1);
}
}
body {
min-height: 100dvh;
min-height: 100vh;
display: flex;
flex-direction: column;
}
body main {
flex-grow: 1;
padding: 0 var(--padding-body);
2025-12-19 10:18:22 +01:00
}
2025-12-19 10:48:31 +01:00
.page-enquete header {
2025-12-19 10:18:22 +01:00
max-width: var(--max-w-content);
margin: calc(var(--spacing) * 2) auto;
}
2025-12-19 10:48:31 +01:00
.page-enquete header .page-type {
2025-12-19 10:18:22 +01:00
text-transform: uppercase;
color: var(--color-txt-light);
margin-bottom: calc(var(--spacing) * 0.5);
}
2025-12-19 10:48:31 +01:00
.page-enquete header h2 {
2025-12-19 10:18:22 +01:00
font-size: var(--fs-xbig);
}
2025-12-19 10:48:31 +01:00
.page-enquete .section__article {
2025-12-19 10:18:22 +01:00
max-width: var(--max-w-content);
margin: calc(var(--spacing) * 3) auto;
}
2025-12-19 10:48:31 +01:00
.page-enquete .section__article a:hover {
2025-12-19 10:18:22 +01:00
color: var(--grey-200);
}
2025-12-19 10:48:31 +01:00
.page-enquete .section__article .section__title {
2025-12-19 10:18:22 +01:00
font-weight: normal;
text-transform: uppercase;
font-size: var(--fs-medium);
margin-bottom: calc(var(--spacing) * 1);
}
2025-12-23 17:29:27 +01:00
.page-enquete #hero {
2025-12-19 10:18:22 +01:00
width: 100vw;
position: relative;
left: calc(var(--padding-body) * -1);
margin: calc(var(--spacing) * 3) 0;
}
2025-12-23 17:29:27 +01:00
.page-enquete #hero figcaption {
2025-12-19 10:18:22 +01:00
color: var(--color-txt-light);
font-size: var(--fs-small);
max-width: var(--max-w-content);
margin: 0 auto;
padding-top: calc(var(--spacing) * 0.5);
}
2025-12-23 17:29:27 +01:00
.page-enquete #hero.hero-video figure {
2025-12-19 10:18:22 +01:00
width: 100%;
}
2025-12-23 17:29:27 +01:00
.page-enquete #hero.hero-video figure img {
2025-12-19 10:18:22 +01:00
width: 100%;
aspect-ratio: 16/9;
-o-object-fit: cover;
object-fit: cover;
}
2025-12-23 19:17:52 +01:00
@media screen and (min-width: 1080px) {
.page-enquete #banner--page {
height: calc(100vh - var(--header-h));
height: calc(100dvh - var(--header-h));
margin-bottom: calc((100vh - var(--header-h)) * -1);
margin-bottom: calc((100dvh - var(--header-h)) * -1);
padding: var(--padding-body);
padding-left: 0px;
position: sticky;
top: var(--header-h);
width: calc((100% - var(--max-w-content)) / 2);
display: flex;
flex-direction: column;
justify-content: space-between;
}
}
.page-enquete .modal--share {
position: absolute;
bottom: calc(var(--padding-body) + var(--h-block) + var(--spacing) * 0.25);
width: calc(100% - var(--padding-body));
2025-12-19 10:18:22 +01:00
}
2025-12-19 12:33:59 +01:00
.page-enquete #banner--page .btn--group {
display: flex;
flex-direction: column;
align-items: center;
gap: calc(var(--spacing) * 0.25);
}
2025-12-23 19:17:52 +01:00
.page-enquete #banner--page .btn--group > button {
2025-12-19 12:33:59 +01:00
width: 100%;
2025-12-23 19:17:52 +01:00
max-width: 160px;
2025-12-19 12:33:59 +01:00
}
.page-enquete #nav--page ul {
list-style: none;
}
.page-enquete #nav--page ul li {
text-align: center;
color: var(--color-txt-light);
}
.page-enquete #nav--page ul li a {
display: block;
padding: 0.3em 0;
text-decoration: none;
}
.page-enquete .short {
font-size: var(--fs-medium);
margin: auto;
max-width: var(--max-w-content);
}
2025-12-19 10:48:31 +01:00
.page-enquete #section__dl {
margin-top: calc(var(--spacing) * 1.5);
2025-12-19 10:18:22 +01:00
border-bottom: var(--border-light);
}
2025-12-19 10:48:31 +01:00
.page-enquete #section__dl .dl__group {
2025-12-19 10:18:22 +01:00
display: grid;
grid-template-columns: 40% 1fr;
border-top: var(--border-light);
padding: calc(var(--spacing) * 0.5) 0;
}
2025-12-19 10:48:31 +01:00
.page-enquete #section__dl dt {
2025-12-19 10:18:22 +01:00
color: var(--color-txt-light);
2025-12-19 10:48:31 +01:00
}
.page-enquete #section__dl ul:not(.keywords) {
list-style: none;
}
.page-enquete #section__dl ul:not(.keywords) li {
padding-bottom: 0.2em;
}
2025-12-19 12:33:59 +01:00
.page-enquete #section__synthese {
font-size: var(--fs-medium);
2025-12-19 10:48:31 +01:00
}
2025-12-19 12:33:59 +01:00
.page-enquete #section__synthese p + p {
margin-top: 0.5em;
2025-12-19 10:48:31 +01:00
}
2025-12-19 12:33:59 +01:00
.page-enquete #section__synthese h4 {
margin-top: 2em;
margin-bottom: 1em;
font-size: var(--fs-normal);
font-weight: normal;
-webkit-text-decoration: 1px underline var(--color-txt-light);
text-decoration: 1px underline var(--color-txt-light);
text-underline-offset: 3px;
2025-12-23 19:17:52 +01:00
}
@media screen and (max-width: 1080px) {
#banner--page {
display: none;
}
}/*# sourceMappingURL=style.css.map */