T005-T006
This commit is contained in:
42
apps/web/src/app.css
Normal file
42
apps/web/src/app.css
Normal file
@@ -0,0 +1,42 @@
|
||||
: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;
|
||||
Reference in New Issue
Block a user