This repository has been archived on 2026-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
nyx/css/views/home.css
Nico e2667f8e12 Initial nyx project — fork of hermes-frontend
Forked from hermes-frontend, stripped openclaw/bun specifics:
- Auth tokens: openclaw_session -> nyx_session
- Vite proxy: localhost:3003 -> localhost:8000 (assay)
- Prod WS: wss://assay.loop42.de/ws
- Workspace paths: removed openclaw-specific paths
- Added missing deps: @heroicons/vue, overlayscrollbars-vue
- Branding: title -> nyx

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-31 20:23:27 +02:00

46 lines
797 B
CSS

.home-view {
display: flex;
align-items: center;
justify-content: center;
flex: 1;
min-height: 100%;
background: transparent;
}
.home-card {
text-align: center;
padding: 48px 40px;
}
.home-logo {
font-size: 3rem;
margin-bottom: var(--space-page);
display: flex;
justify-content: center;
}
.home-card h1 {
font-size: 1.75rem;
font-weight: 700;
margin-bottom: var(--space-gap);
color: var(--text);
}
.home-sub {
color: var(--text-dim);
margin-bottom: 32px;
}
.home-btn {
display: inline-block;
background: var(--accent);
color: #fff;
padding: 12px 28px;
border-radius: var(--radius);
font-weight: 600;
text-decoration: none;
transition: opacity 0.15s;
}
.home-btn:hover { opacity: 0.85; }