frontend/styles/globals.css

47 lines
817 B
CSS
Raw Normal View History

2022-08-26 15:28:20 +03:00
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
2022-08-27 01:37:17 +03:00
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
2022-08-26 15:28:20 +03:00
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
*::-webkit-scrollbar-track
{
border-radius: 10px;
background-color: #F5F5F5;
}
*::-webkit-scrollbar
{
width: 10px;
background-color: #F5F5F5;
}
*::-webkit-scrollbar-thumb
{
padding: 5px;
border-radius: 10px;
background-color: #13377D;
}
2022-08-26 15:28:20 +03:00
@media (prefers-color-scheme: dark) {
html {
2022-08-26 22:49:44 +03:00
color-scheme: white;
2022-08-26 15:28:20 +03:00
}
body {
2022-08-26 22:49:44 +03:00
color: #0E1A33;
background: White;
2022-08-26 15:28:20 +03:00
}
}