ada.wf/ui.css

27 lines
368 B
CSS
Raw Normal View History

2023-05-14 02:50:07 +02:00
:root {
--main-width: 85vw;
}
/* large screen */
@media only screen and (min-width: 868px) {
:root {
--main-width: 50vw;
}
}
html {
font-family: Noto Sans;
scroll-behavior: smooth;
color: #C71585;
}
.content {
max-width: var(--main-width);
margin-left: auto;
margin-right: auto;
}