spaCy/website/styles/globals.css

27 lines
443 B
CSS
Raw Normal View History

2022-11-10 02:18:01 +03:00
html,
body {
2022-11-10 03:01:24 +03:00
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell,
Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
2022-11-10 02:18:01 +03:00
}
a {
2022-11-10 03:01:24 +03:00
color: inherit;
text-decoration: none;
2022-11-10 02:18:01 +03:00
}
* {
2022-11-10 03:01:24 +03:00
box-sizing: border-box;
2022-11-10 02:18:01 +03:00
}
@media (prefers-color-scheme: dark) {
2022-11-10 03:01:24 +03:00
html {
color-scheme: dark;
}
body {
color: white;
background: black;
}
2022-11-10 02:18:01 +03:00
}