initial commit

This commit is contained in:
Julie Blanc 2026-01-10 18:33:22 +01:00
commit 21711bd5dd
253 changed files with 78415 additions and 0 deletions

81
assets/style-print.css Normal file
View file

@ -0,0 +1,81 @@
/* NEPASTOUCHERCECODE ------------------------------------- */
/* ---------------------------------------------------------- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
}
a {
color: currentColor;
}
#btn-print{
display: none;
}
/* CODEPOURLAPAGE ----------------------------------------- */
/* ---------------------------------------------------------- */
@page{
size: 148mm 210mm;
margin-top: 10mm;
margin-bottom: 10mm;
}
@page:left{
margin-left: 10mm;
margin-right: 12mm;
@left-middle{
content: counter(page);
}
}
@page:right{
margin-left: 12mm;
margin-right: 11mm;
@right-middle{
content: counter(page);
}
}
@page:first{
@top-left-corner { content: none; }
@top-left { content: none; }
@top-center { content: none; }
@top-right { content: none; }
@top-right-corner { content: none; }
@left-top { content: none; }
@left-middle { content: none; }
@left-bottom { content: none; }
@right-top { content: none; }
@right-middle { content: none; }
@right-bottom { content: none; }
@bottom-left-corner { content: none; }
@bottom-left { content: none; }
@bottom-center { content: none; }
@bottom-right { content: none; }
@bottom-right-corner { content: none; }
}
.couverture{
break-after: page;
}
/* VOTRECODE ------------------------------------------------ */
/* ---------------------------------------------------------- */
:root{
font-family: 'Sentient';
font-size: 14px;
}
figure, img{
width: 200px;
}

23
assets/style-screen.css Normal file
View file

@ -0,0 +1,23 @@
@import "modules/base.css";
#btn-print{
color: IndianRed;
border: 2px solid currentColor;
background: Lavender;
font-size: 30px;
border-radius: 10px;
a{
color: currentColor;
text-decoration: none;
padding: 0.75ch 1ch;
}
}
figure, img{
width: 200px;
}