ada.wf/ui.css

34 lines
421 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:57:34 +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:57:34 +02:00
h1 {
padding-bottom: 0;
}
2023-05-14 02:50:07 +02:00
2023-05-14 02:57:34 +02:00
a {
color:#C71585;
}
a:hover {
color: white;
}