28 lines
450 B
CSS
28 lines
450 B
CSS
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;
|
|
}
|
|
|
|
:root {
|
|
--black-0f: #0f0f0f;
|
|
--black-1e: #1e1e1e;
|
|
--black-2d: #2d2d2d;
|
|
|
|
--def-blue: #00aaff;
|
|
--def-orange: #ff5300;
|
|
--def-red: #ff0000;
|
|
--def-green: #00ff00;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|