CoastalCommitsPastes/client/styles/globals.css
2022-03-06 22:16:08 -08:00

31 lines
538 B
CSS

:root {
--main-content-width: 800px;
--gap: 8px;
--gap-half: calc(var(--gap) / 2);
--gap-double: calc(var(--gap) * 2);
--border-radius: 4px;
--font-size: 16px;
}
@media screen and (max-width: 768px) {
:root {
--main-content-width: 100%;
}
}
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;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}