2026-01-05 19:33:15 +01:00
|
|
|
* {
|
2026-03-24 00:46:25 +01:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-font-smoothing: antialiased;
|
|
|
|
|
-o-font-smoothing: antialiased;
|
|
|
|
|
text-rendering: geometricPrecision;
|
2026-01-05 19:33:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
body{
|
|
|
|
|
font-family: var(--fontFamily);
|
2026-03-24 00:46:25 +01:00
|
|
|
font-size: var(--font-size);
|
|
|
|
|
line-height: var(--baseline);
|
2026-01-05 19:33:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a{
|
|
|
|
|
text-decoration: none;
|
2026-03-24 00:46:25 +01:00
|
|
|
color: currentColor;
|
2026-01-05 19:33:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover{text-decoration: underline;}
|
|
|
|
|
img{ width: 100%;}
|
2026-04-01 15:22:18 +02:00
|
|
|
main{ margin-bottom: 150px;}
|
2026-03-24 00:46:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-03-10 16:24:39 +01:00
|
|
|
/* Classes pour le responsive */
|
|
|
|
|
.show-for-small-only{ display: block;}
|
|
|
|
|
.hide-for-small-only{ display: none;}
|
2026-01-05 19:33:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-03-08 11:09:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|