Files
Sybil-2/web/src/index.css

87 lines
1.6 KiB
CSS
Raw Normal View History

2026-02-13 23:15:12 -08:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
2026-02-14 20:34:10 -08:00
--background: 282 33% 10%;
--foreground: 300 35% 95%;
--muted: 287 24% 16%;
--muted-foreground: 297 16% 72%;
--border: 287 24% 24%;
--input: 287 24% 24%;
--ring: 264 76% 70%;
--primary: 266 72% 67%;
--primary-foreground: 296 45% 12%;
--secondary: 277 24% 19%;
--secondary-foreground: 302 42% 94%;
--accent: 279 24% 22%;
--accent-foreground: 305 45% 94%;
2026-02-13 23:15:12 -08:00
--radius: 0.65rem;
}
* {
@apply border-border;
}
html,
body,
#app {
height: 100%;
}
body {
2026-02-13 23:20:57 -08:00
@apply bg-background text-foreground antialiased;
2026-02-14 20:34:10 -08:00
background-image: radial-gradient(circle at top, hsl(274 42% 20%) 0%, hsl(271 34% 14%) 42%, hsl(266 32% 9%) 100%);
2026-02-13 23:15:12 -08:00
font-family: "Soehne", "Avenir Next", "Segoe UI", sans-serif;
}
.md-content {
word-break: break-word;
}
.md-content p + p {
margin-top: 0.85rem;
}
.md-content ul,
.md-content ol {
margin-top: 0.65rem;
margin-left: 1.25rem;
}
.md-content li + li {
margin-top: 0.3rem;
}
.md-content code {
2026-02-14 20:34:10 -08:00
background: hsl(288 22% 23%);
border-radius: 0.25rem;
padding: 0.05rem 0.3rem;
font-size: 0.86em;
}
.md-content pre {
overflow-x: auto;
border-radius: 0.5rem;
2026-02-14 20:34:10 -08:00
background: hsl(287 28% 13%);
padding: 0.6rem 0.75rem;
}
.md-content a {
2026-02-14 20:34:10 -08:00
color: hsl(269 88% 76%);
text-decoration: underline;
}
.md-cite-token {
display: inline-flex;
align-items: center;
border-radius: 9999px;
2026-02-14 20:34:10 -08:00
border: 1px solid hsl(274 40% 55%);
background: hsl(277 33% 21%);
color: hsl(304 42% 96%);
font-size: 0.72rem;
line-height: 1;
padding: 0.12rem 0.38rem;
vertical-align: baseline;
}