You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
491 B
CSS
33 lines
491 B
CSS
:root {
|
|
--max-width: 1100px;
|
|
--border-radius: 12px;
|
|
|
|
--on-background: #242424;
|
|
--on-background-secondary: #6F6F6F;
|
|
--background: #fff;
|
|
--divider: #efefef;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
max-width: 100vw;
|
|
overflow-x: hidden;
|
|
user-select: none;
|
|
cursor: none;
|
|
}
|
|
|
|
body {
|
|
color: var(--on-background);
|
|
background: var(--background);
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
} |