47 lines
No EOL
825 B
CSS
47 lines
No EOL
825 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--primary: #647C90;
|
|
--secondary: #2C4A3E;
|
|
--accent-snow: #F5F7F9;
|
|
--accent-mountain: #4A5568;
|
|
--accent-lake: #A4C3D2;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--accent-snow);
|
|
color: var(--accent-mountain);
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
width: 100%;
|
|
}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) {
|
|
button {
|
|
background-color: #f9f9f9;
|
|
}
|
|
} |