mylloon.fr/static/css/contact.css

30 lines
454 B
CSS
Raw Normal View History

2023-10-13 15:53:26 +02:00
/* Parameters light */
@media (prefers-color-scheme: light) {
:root {
}
}
/* Parameters dark */
@media (prefers-color-scheme: dark) {
:root {
}
}
:root {
}
/* Page theme */
main {
color: var(--font-color);
font-size: var(--font-size);
padding: 2em 1em;
font-family: var(--font-family);
color: var(--font-color);
margin: 0 auto;
max-width: 640px; /* breakpoint */
}
/* breakpoint */
@media only screen and (max-width: 640px) {
}