decor-6-site/assets/css/main.css

42 lines
576 B
CSS
Raw Normal View History

2026-01-05 19:33:15 +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);
font-size: var(--font-size);
line-height: var(--baseline);
2026-01-05 19:33:15 +01:00
}
a{
text-decoration: none;
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-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