fastbin/styles/globals.css
2022-02-22 17:06:57 +05:30

26 lines
430 B
CSS

:root {
--bg-color: rgb(29, 29, 29);
--border-color: rgb(69, 69, 69);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body,
#__next {
width: 100%;
height: 100%;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
background-color: var(--bg-color);
}
a {
color: inherit;
text-decoration: none;
}