43 lines
665 B
CSS
43 lines
665 B
CSS
:root {
|
|
--bg: #0b0b10;
|
|
--fg: #e5e7eb;
|
|
--muted: #9ca3af;
|
|
color-scheme: dark;
|
|
}
|
|
|
|
html, body, #svelte {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--fg);
|
|
}
|
|
|
|
a { color: inherit; }
|
|
|
|
.container {
|
|
max-width: 960px;
|
|
padding: 1rem;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(7, 1fr);
|
|
gap: 6px;
|
|
}
|
|
|
|
.tile {
|
|
aspect-ratio: 1 / 1;
|
|
border-radius: 6px;
|
|
background: #111827;
|
|
box-shadow: 0 0 10px rgba(56, 189, 248, 0.15) inset;
|
|
}
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|