52 lines
822 B
CSS
52 lines
822 B
CSS
:root {
|
|
--bg-0: #080b12;
|
|
--bg-1: #101624;
|
|
--bg-2: #171f32;
|
|
--card: #1a2436;
|
|
--card-soft: #202d45;
|
|
--line: #2a3854;
|
|
--text: #ebf1ff;
|
|
--text-muted: #99a8cb;
|
|
--accent: #53d8fb;
|
|
--accent-soft: rgba(83, 216, 251, 0.17);
|
|
--danger: #ff718f;
|
|
--ok: #84f4a1;
|
|
--radius-lg: 18px;
|
|
--radius-md: 12px;
|
|
--radius-sm: 9px;
|
|
--shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
|
|
--font-main: "Manrope", "IBM Plex Sans", "Segoe UI", sans-serif;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
min-height: 100%;
|
|
background: radial-gradient(circle at 22% -10%, #1f355e 0%, var(--bg-0) 45%) fixed;
|
|
color: var(--text);
|
|
font-family: var(--font-main);
|
|
}
|
|
|
|
button,
|
|
input {
|
|
font: inherit;
|
|
color: inherit;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|