mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-14 13:49:40 -06:00
118 lines
2.2 KiB
CSS
118 lines
2.2 KiB
CSS
:root {
|
|
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
|
|
color-scheme: light dark;
|
|
color: rgba(255, 255, 255, 0.87);
|
|
background-color: #242424;
|
|
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
/* Generalized Stylings */
|
|
|
|
--env-var-color-1: #101828;
|
|
--env-var-color-2: #475467;
|
|
--env-var-color-3: #1570ef;
|
|
|
|
--env-var-color-4: #d0d5dd;
|
|
--env-var-color-5: #344054;
|
|
--env-var-color-6: #eaecf0;
|
|
--env-var-color-7: #7f56d9;
|
|
--env-var-color-8: #fff;
|
|
--env-var-color-9: #f2f2f2;
|
|
--env-var-color-10: #175cd3;
|
|
--env-var-color-11: #5d6b98;
|
|
--env-var-color-12: #182230;
|
|
--env-var-color-13: #f9fafb;
|
|
|
|
--env-var-radius-1: 4px;
|
|
--env-var-radius-2: 8px;
|
|
|
|
--env-var-width-1: 100vw;
|
|
--env-var-width-2: 360px;
|
|
|
|
--env-var-height-1: 100vh;
|
|
|
|
--env-var-spacing-1: 12px;
|
|
--env-var-spacing-2: 24px;
|
|
--env-var-spacing-3: 32px;
|
|
--env-var-spacing-4: 40px;
|
|
|
|
--env-var-font-size-small: 11px;
|
|
--env-var-font-size-medium: 13px;
|
|
--env-var-font-size-medium-plus: 14px;
|
|
--env-var-font-size-large: 16px;
|
|
--env-var-font-size-xlarge: 30px;
|
|
|
|
--env-var-img-width-1: 20px;
|
|
|
|
--env-var-default-1: 24px;
|
|
--env-var-default-2: 40px;
|
|
|
|
--env-var-shadow-1: 0px 4px 24px -4px rgba(16, 24, 40, 0.08),
|
|
0px 3px 3px -3px rgba(16, 24, 40, 0.03);
|
|
}
|
|
|
|
a {
|
|
font-weight: 500;
|
|
color: #646cff;
|
|
text-decoration: inherit;
|
|
}
|
|
|
|
a:hover {
|
|
color: #535bf2;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
display: flex;
|
|
place-items: center;
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3.2em;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
button {
|
|
border-radius: 8px;
|
|
border: 1px solid transparent;
|
|
padding: 0.6em 1.2em;
|
|
font-size: 1em;
|
|
font-weight: 500;
|
|
font-family: inherit;
|
|
background-color: #1a1a1a;
|
|
cursor: pointer;
|
|
transition: border-color 0.25s;
|
|
}
|
|
|
|
button:hover {
|
|
border-color: #646cff;
|
|
}
|
|
|
|
button:focus,
|
|
button:focus-visible {
|
|
outline: 4px auto -webkit-focus-ring-color;
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
:root {
|
|
color: #213547;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
a:hover {
|
|
color: #747bff;
|
|
}
|
|
|
|
button {
|
|
background-color: #f9f9f9;
|
|
}
|
|
}
|