ada.wf/ui.css
2023-05-14 02:57:34 +02:00

34 lines
421 B
CSS

: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;
}
body {
max-width: var(--main-width);
margin-left: auto;
margin-right: auto;
}
h1 {
padding-bottom: 0;
}
a {
color:#C71585;
}
a:hover {
color: white;
}