chess-reclash-lending/styles/globals.css

31 lines
488 B
CSS
Raw Normal View History

2022-08-01 16:02:39 +03:00
html,
body {
padding: 0;
margin: 0;
2022-08-02 00:51:44 +03:00
font-size: 18px;
font-family: 'Londrina Solid', cursive;
-webkit-text-stroke: 0.06em #453831;
2022-08-01 16:02:39 +03:00
2022-08-02 00:51:44 +03:00
}
@import url('https://fonts.googleapis.com/css2?family=Londrina+Solid:wght@900&display=swap');
2022-08-01 16:02:39 +03:00
a {
color: inherit;
text-decoration: none;
2022-08-02 00:51:44 +03:00
-webkit-text-stroke: 0.06em #453831;
2022-08-01 16:02:39 +03:00
}
* {
2022-08-02 00:51:44 +03:00
transition: 0.3s;
2022-08-01 16:02:39 +03:00
box-sizing: border-box;
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
body {
color: white;
}
}