ada.wf/ui.css

26 lines
341 B
CSS
Raw Normal View History

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