30 lines
454 B
CSS
30 lines
454 B
CSS
|
/* 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) {
|
||
|
}
|