This commit is contained in:
2026-06-23 16:04:57 +02:00
parent 223c5be097
commit 2bc69be75f
25 changed files with 1351 additions and 41 deletions

View File

@@ -651,3 +651,40 @@ footer[role="contentinfo"]{
}
}
// _____ _ _
// | ___|__ ___ | |_ _ __ ___ | |_ ___ ___
// | |_ / _ \ / _ \| __| '_ \ / _ \| __/ _ \/ __|
// | _| (_) | (_) | |_| | | | (_) | || __/\__ \
// |_| \___/ \___/ \__|_| |_|\___/ \__\___||___/
.footnote__citation{
text-decoration: underline;
text-decoration-style: dashed;
cursor: pointer;
}
aside.footnote-content{
display:none;
}
.fn-modale{
@include card;
// display: none;
opacity: 0;
transition: opacity 0.25s ease-in-out;
// transition-delay: ;
position: absolute;
// top:50%; left:50%;
z-index: 200;
max-width: 100em;
padding:1em 1.5em 1em 1em;
border: 1px dashed $bleu_site;
&.visible{
// display: block;
opacity: 1;
transition: opacity 0.25s ease-in-out;
}
}