882 lines
18 KiB
CSS
882 lines
18 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=IBM+Plex+Mono:wght@400;600&display=swap');
|
|
|
|
:root {
|
|
--bg: #f5f7fb;
|
|
--panel: #ffffff;
|
|
--panel-2: #eef2ff;
|
|
--text: #111827;
|
|
--muted: #5b6475;
|
|
--accent: #ff5a3d;
|
|
--accent-2: #00b3a4;
|
|
--line: #d7dceb;
|
|
--shadow: 0 18px 36px rgba(20, 32, 64, 0.15);
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|
|
html, body { height: 100%; }
|
|
body {
|
|
margin: 0;
|
|
font-family: "Space Grotesk", "Segoe UI", sans-serif;
|
|
background: radial-gradient(1200px 500px at 10% -10%, rgba(255, 90, 61, 0.15), transparent 60%),
|
|
radial-gradient(900px 500px at 90% 10%, rgba(0, 179, 164, 0.12), transparent 55%),
|
|
var(--bg);
|
|
color: var(--text);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.bg-orb {
|
|
position: fixed;
|
|
width: 420px;
|
|
height: 420px;
|
|
border-radius: 50%;
|
|
filter: blur(90px);
|
|
opacity: 0.35;
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
}
|
|
.orb-a { top: -140px; left: -100px; background: #ff5a3d; }
|
|
.orb-b { bottom: -180px; right: -120px; background: #00b3a4; }
|
|
|
|
.card {
|
|
background: var(--panel);
|
|
border: 1px solid var(--line);
|
|
border-radius: 18px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.main-content > .card {
|
|
border: none;
|
|
box-shadow: none;
|
|
background: transparent;
|
|
}
|
|
|
|
.site-header {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 20;
|
|
margin: 18px 24px 8px;
|
|
padding: 10px 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
}
|
|
|
|
.logo-wrap { display: flex; align-items: center; }
|
|
.site-logo { height: 80px; width: auto; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12)); }
|
|
|
|
.header-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.nav-link {
|
|
color: var(--text);
|
|
text-decoration: none;
|
|
padding: 8px 14px;
|
|
border-radius: 10px;
|
|
border: 1px solid transparent;
|
|
font-weight: 600;
|
|
transition: all 180ms ease;
|
|
}
|
|
.nav-link:hover {
|
|
border-color: var(--line);
|
|
background: var(--panel-2);
|
|
}
|
|
|
|
.dropdown { position: relative; display: inline-flex; }
|
|
.dropdown-toggle { background: transparent; }
|
|
.dropdown-menu {
|
|
position: absolute;
|
|
top: 100%;
|
|
right: 0;
|
|
min-width: 220px;
|
|
background: var(--panel);
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
box-shadow: var(--shadow);
|
|
padding: 8px;
|
|
display: none;
|
|
z-index: 30;
|
|
margin-top: 6px;
|
|
}
|
|
.dropdown-menu::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: -8px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 8px;
|
|
}
|
|
.dropdown-menu-right { right: 0; left: auto; }
|
|
.dropdown:hover .dropdown-menu,
|
|
.dropdown:focus-within .dropdown-menu { display: block; }
|
|
.dropdown-item {
|
|
display: block;
|
|
padding: 8px 10px;
|
|
border-radius: 10px;
|
|
color: var(--text);
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
.dropdown-item:hover { background: var(--panel-2); }
|
|
.dropdown-divider { height: 1px; background: var(--line); margin: 6px 4px; }
|
|
.dropdown-header { padding: 6px 10px; font-size: 0.85rem; color: var(--muted); }
|
|
|
|
.avatar-btn { background: transparent; border: none; padding: 0; cursor: pointer; }
|
|
.avatar {
|
|
width: 34px;
|
|
height: 34px;
|
|
border-radius: 50%;
|
|
background: var(--accent);
|
|
color: #ffffff;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.module-subnav {
|
|
margin: 0 24px 6px;
|
|
padding: 8px 12px;
|
|
display: flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
background-color: var(--panel) !important;
|
|
background: var(--panel) !important;
|
|
background-image: none !important;
|
|
opacity: 1 !important;
|
|
backdrop-filter: none !important;
|
|
mix-blend-mode: normal;
|
|
border: 1px solid var(--line);
|
|
box-shadow: var(--shadow);
|
|
border-radius: 18px;
|
|
}
|
|
.module-subnav.card { background-color: var(--panel); background-image: none; }
|
|
|
|
.nav-dropdown {
|
|
position: relative;
|
|
display: inline-flex;
|
|
}
|
|
.nav-link-button {
|
|
border: 1px solid transparent;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
}
|
|
.nav-dropdown-menu {
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
min-width: 180px;
|
|
background: var(--panel);
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
box-shadow: var(--shadow);
|
|
padding: 6px;
|
|
display: none;
|
|
z-index: 20;
|
|
margin-top: 6px;
|
|
}
|
|
.nav-dropdown-menu::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: -8px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 8px;
|
|
}
|
|
.nav-dropdown:hover .nav-dropdown-menu,
|
|
.nav-dropdown:focus-within .nav-dropdown-menu {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.layout-body {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 16px;
|
|
padding: 6px 24px 24px;
|
|
transition: grid-template-columns 260ms ease;
|
|
position: relative;
|
|
}
|
|
.layout-body.sidebar-open {
|
|
grid-template-columns: 260px 1fr;
|
|
}
|
|
|
|
.layout-body.no-sidebar {
|
|
grid-template-columns: 1fr;
|
|
gap: 20px;
|
|
}
|
|
|
|
.main-content {
|
|
width: 100%;
|
|
}
|
|
|
|
.sidebar,
|
|
.sidebar-toggle,
|
|
.sidebar-fab {
|
|
display: none !important;
|
|
}
|
|
|
|
.console-fab {
|
|
position: fixed;
|
|
bottom: 18px;
|
|
left: 18px;
|
|
width: 52px;
|
|
height: 52px;
|
|
border-radius: 999px;
|
|
background: #0b0f17;
|
|
color: #ffffff;
|
|
border: 1px solid rgba(255,255,255,0.08);
|
|
box-shadow: var(--shadow);
|
|
display: none;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
z-index: 50;
|
|
}
|
|
.console-fab.is-visible { display: inline-flex; }
|
|
.console-fab span { font-size: 1.2rem; }
|
|
|
|
.console-modal {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(10, 14, 24, 0.55);
|
|
display: none;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 24px;
|
|
z-index: 45;
|
|
}
|
|
.console-modal.is-open { display: flex; }
|
|
.console-modal-card {
|
|
width: min(1200px, 96vw);
|
|
max-height: 92vh;
|
|
overflow: auto;
|
|
background: var(--panel);
|
|
border: 1px solid var(--line);
|
|
border-radius: 16px;
|
|
box-shadow: var(--shadow);
|
|
padding: 16px;
|
|
}
|
|
.console-modal-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.sidebar {
|
|
padding: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
position: sticky;
|
|
top: 120px;
|
|
height: fit-content;
|
|
transform: translateX(-12px);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transition: transform 260ms ease, opacity 260ms ease;
|
|
}
|
|
.layout-body.sidebar-collapsed .sidebar {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 240px;
|
|
max-height: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
border: 0;
|
|
box-shadow: none;
|
|
overflow: hidden;
|
|
}
|
|
.layout-body.sidebar-open .sidebar {
|
|
transform: translateX(0);
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.sidebar-toggle {
|
|
align-self: flex-start;
|
|
background: var(--panel-2);
|
|
border: 1px solid var(--line);
|
|
border-radius: 10px;
|
|
padding: 6px 10px;
|
|
cursor: pointer;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.sidebar-items .nav-link { display: block; }
|
|
|
|
.sidebar-fab {
|
|
position: fixed;
|
|
left: 24px;
|
|
bottom: 24px;
|
|
width: 52px;
|
|
height: 52px;
|
|
border-radius: 50%;
|
|
background: var(--panel);
|
|
border: 1px solid var(--line);
|
|
box-shadow: var(--shadow);
|
|
font-weight: 800;
|
|
z-index: 60;
|
|
}
|
|
|
|
.main-content {
|
|
min-height: 60vh;
|
|
background: var(--panel);
|
|
background-image: none;
|
|
border-radius: 18px;
|
|
box-shadow: var(--shadow);
|
|
padding: 16px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.main-content > .card {
|
|
background: transparent;
|
|
border: none;
|
|
box-shadow: none;
|
|
padding: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.site-footer {
|
|
margin: 0 24px 18px;
|
|
padding: 10px 16px;
|
|
color: var(--muted);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 0.85rem;
|
|
margin-top: auto;
|
|
}
|
|
|
|
.debug-fab {
|
|
position: fixed;
|
|
right: 24px;
|
|
bottom: 24px;
|
|
width: 52px;
|
|
height: 52px;
|
|
border-radius: 50%;
|
|
background: var(--accent);
|
|
color: #ffffff;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-decoration: none;
|
|
font-size: 22px;
|
|
box-shadow: 0 16px 32px rgba(255, 90, 61, 0.28);
|
|
z-index: 50;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.debug-modal {
|
|
position: fixed;
|
|
inset: 0;
|
|
display: none;
|
|
z-index: 80;
|
|
}
|
|
.debug-modal.is-open { display: block; }
|
|
.debug-modal__backdrop {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: rgba(10, 12, 20, 0.35);
|
|
}
|
|
.debug-modal__panel {
|
|
position: relative;
|
|
max-width: 980px;
|
|
width: calc(100% - 40px);
|
|
margin: 60px auto;
|
|
padding: 16px;
|
|
}
|
|
.debug-modal__header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 12px;
|
|
}
|
|
.debug-modal__close {
|
|
background: transparent;
|
|
border: none;
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
}
|
|
.debug-modal__body {
|
|
display: grid;
|
|
grid-template-columns: 220px 1fr;
|
|
gap: 16px;
|
|
}
|
|
.debug-modal__list ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 8px 0 0;
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
.debug-modal__list a {
|
|
text-decoration: none;
|
|
color: var(--text);
|
|
padding: 6px 8px;
|
|
border-radius: 8px;
|
|
display: block;
|
|
}
|
|
.debug-modal__list a:hover { background: var(--panel-2); }
|
|
.debug-modal__content pre {
|
|
background: var(--panel-2);
|
|
padding: 10px;
|
|
border-radius: 8px;
|
|
max-height: 520px;
|
|
overflow: auto;
|
|
white-space: pre-wrap;
|
|
}
|
|
@media (max-width: 800px) {
|
|
.debug-modal__body { grid-template-columns: 1fr; }
|
|
}
|
|
|
|
.muted { color: var(--muted); }
|
|
.pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 4px 10px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--line);
|
|
color: var(--muted);
|
|
background: rgba(255,255,255,0.6);
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.card input,
|
|
.card textarea,
|
|
.card select {
|
|
background: #ffffff;
|
|
border: 1px solid var(--line);
|
|
color: var(--text);
|
|
padding: 10px 12px;
|
|
border-radius: 10px;
|
|
font-family: inherit;
|
|
}
|
|
|
|
.cta-button {
|
|
background: linear-gradient(120deg, var(--accent), #ff9f45);
|
|
border: none;
|
|
color: #ffffff;
|
|
font-weight: 700;
|
|
padding: 10px 18px;
|
|
border-radius: 12px;
|
|
cursor: pointer;
|
|
box-shadow: 0 14px 30px rgba(255, 90, 61, 0.35);
|
|
}
|
|
|
|
/* Minimal utility support (tables + spacing) */
|
|
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
|
|
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
|
|
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
|
|
.text-left { text-align: left; }
|
|
.text-sm { font-size: 0.9rem; }
|
|
.text-xs { font-size: 0.75rem; }
|
|
.uppercase { text-transform: uppercase; letter-spacing: 0.08em; }
|
|
.font-medium { font-weight: 600; }
|
|
.font-mono { font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }
|
|
.bg-gray-900 { background: var(--panel-2); }
|
|
.bg-gray-800 { background: var(--panel); }
|
|
.divide-y > * + * { border-top: 1px solid var(--line); }
|
|
.border-gray-700 { border-color: var(--line); }
|
|
|
|
@media (max-width: 900px) {
|
|
.site-header { margin: 12px; }
|
|
.layout-body { padding: 6px 12px 12px; }
|
|
.module-subnav { margin: 0 12px 6px; }
|
|
.site-footer { margin: 0 12px 12px; }
|
|
.header-nav { flex-wrap: wrap; justify-content: flex-end; }
|
|
}
|
|
|
|
:root {
|
|
--surface: rgba(255, 255, 255, 0.9);
|
|
--surface-strong: #ffffff;
|
|
--accent-pink: #ed1671;
|
|
--accent-cyan: #06a9c8;
|
|
--accent-orange: #f6aa21;
|
|
--accent-green: #8bc53f;
|
|
--brand-accent: var(--accent-pink);
|
|
--brand-accent-2: var(--accent-cyan);
|
|
--brand-accent-3: var(--accent-orange);
|
|
}
|
|
|
|
:root[data-accent="pink"] {
|
|
--brand-accent: var(--accent-pink);
|
|
--brand-accent-2: var(--accent-orange);
|
|
--brand-accent-3: var(--accent-cyan);
|
|
}
|
|
|
|
:root[data-accent="cyan"] {
|
|
--brand-accent: var(--accent-cyan);
|
|
--brand-accent-2: var(--accent-green);
|
|
--brand-accent-3: var(--accent-pink);
|
|
}
|
|
|
|
:root[data-accent="orange"] {
|
|
--brand-accent: var(--accent-orange);
|
|
--brand-accent-2: var(--accent-pink);
|
|
--brand-accent-3: var(--accent-cyan);
|
|
}
|
|
|
|
:root[data-accent="green"] {
|
|
--brand-accent: var(--accent-green);
|
|
--brand-accent-2: var(--accent-cyan);
|
|
--brand-accent-3: var(--accent-orange);
|
|
}
|
|
|
|
:root[data-theme="day"] {
|
|
--bg: #f7fbfb;
|
|
--panel: rgba(255, 255, 255, 0.92);
|
|
--panel-2: #f1fbf7;
|
|
--surface: rgba(255, 255, 255, 0.9);
|
|
--surface-strong: #ffffff;
|
|
--text: #10212b;
|
|
--muted: #66737b;
|
|
--accent: var(--brand-accent);
|
|
--accent-2: var(--brand-accent-2);
|
|
--line: rgba(16, 33, 43, 0.12);
|
|
}
|
|
|
|
:root[data-theme="night"] {
|
|
--bg: #07121a;
|
|
--panel: rgba(8, 18, 28, 0.9);
|
|
--panel-2: rgba(18, 33, 48, 0.92);
|
|
--surface: rgba(8, 18, 28, 0.88);
|
|
--surface-strong: #101d2a;
|
|
--text: #eff8fb;
|
|
--muted: #a6b8c2;
|
|
--accent: var(--brand-accent);
|
|
--accent-2: var(--brand-accent-2);
|
|
--line: rgba(255, 255, 255, 0.12);
|
|
--shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
|
|
}
|
|
|
|
html {
|
|
min-height: 100%;
|
|
background:
|
|
radial-gradient(circle at top left, color-mix(in srgb, var(--brand-accent-2) 20%, transparent), transparent 26%),
|
|
radial-gradient(circle at top right, color-mix(in srgb, var(--brand-accent) 18%, transparent), transparent 24%),
|
|
linear-gradient(135deg, #f7fbfb 0%, #eef7f5 52%, #fff4df 100%);
|
|
}
|
|
|
|
:root[data-theme="night"] {
|
|
background:
|
|
radial-gradient(circle at top left, color-mix(in srgb, var(--brand-accent-2) 28%, transparent), transparent 28%),
|
|
radial-gradient(circle at top right, color-mix(in srgb, var(--brand-accent) 24%, transparent), transparent 24%),
|
|
linear-gradient(135deg, #050b12 0%, #0c1721 52%, #111827 100%);
|
|
}
|
|
|
|
body {
|
|
background:
|
|
radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--accent-green) 16%, transparent), transparent 24%),
|
|
radial-gradient(circle at 90% 6%, color-mix(in srgb, var(--accent-orange) 16%, transparent), transparent 20%),
|
|
var(--bg);
|
|
}
|
|
|
|
.site-header {
|
|
padding: 8px 14px;
|
|
}
|
|
|
|
.site-logo {
|
|
height: 46px;
|
|
}
|
|
|
|
.main-content {
|
|
width: min(80vw, 1680px);
|
|
margin: 0 auto;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.main-content > .card,
|
|
.home-hero,
|
|
.module-row,
|
|
.empty-state,
|
|
.module-host-card {
|
|
border: 1px solid var(--line);
|
|
background: var(--surface);
|
|
box-shadow: 0 12px 30px rgba(1, 22, 32, 0.08);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.home-hero {
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 18px;
|
|
margin-bottom: 16px;
|
|
padding: 16px 18px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.brand-mark {
|
|
position: relative;
|
|
z-index: 1;
|
|
display: inline-grid;
|
|
place-items: center;
|
|
width: 76px;
|
|
height: 76px;
|
|
flex: 0 0 auto;
|
|
border-radius: 20px;
|
|
background: #ffffff;
|
|
box-shadow: inset 0 0 0 1px rgba(16, 33, 43, 0.08), 0 12px 30px rgba(6, 169, 200, 0.12);
|
|
}
|
|
|
|
.brand-mark img {
|
|
display: block;
|
|
width: 62px;
|
|
height: 62px;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.brand-copy {
|
|
position: relative;
|
|
z-index: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.eyebrow,
|
|
.module-kicker {
|
|
color: var(--brand-accent);
|
|
font-size: 0.74rem;
|
|
font-weight: 800;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.eyebrow {
|
|
display: inline-flex;
|
|
margin-bottom: 6px;
|
|
padding: 4px 9px;
|
|
border-radius: 999px;
|
|
background: color-mix(in srgb, var(--brand-accent) 12%, transparent);
|
|
}
|
|
|
|
.home-hero h1,
|
|
.section-title {
|
|
margin: 0;
|
|
font-weight: 700;
|
|
letter-spacing: -0.03em;
|
|
}
|
|
|
|
.home-hero h1 {
|
|
font-size: clamp(1.5rem, 4vw, 2.35rem);
|
|
line-height: 1;
|
|
}
|
|
|
|
.home-hero p,
|
|
.section-head p,
|
|
.module-desc {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.section-head {
|
|
display: flex;
|
|
align-items: end;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
margin: 8px 0 12px;
|
|
}
|
|
|
|
.module-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.module-row {
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
align-items: center;
|
|
gap: 14px;
|
|
padding: 14px;
|
|
border-radius: 18px;
|
|
transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
|
|
}
|
|
|
|
.module-row:hover,
|
|
.module-row:focus-visible {
|
|
transform: translateY(-2px);
|
|
border-color: color-mix(in srgb, var(--brand-accent) 36%, transparent);
|
|
background: var(--surface-strong);
|
|
}
|
|
|
|
.module-row__icon {
|
|
display: inline-grid;
|
|
place-items: center;
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 14px;
|
|
color: #ffffff;
|
|
font-weight: 800;
|
|
background: linear-gradient(135deg, var(--brand-accent-2), var(--brand-accent)), var(--brand-accent);
|
|
}
|
|
|
|
.module-row__content {
|
|
display: grid;
|
|
gap: 3px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.module-row__action,
|
|
.auth-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 9px 12px;
|
|
border-radius: 999px;
|
|
color: #ffffff;
|
|
font-size: 0.86rem;
|
|
font-weight: 800;
|
|
background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-3));
|
|
}
|
|
|
|
.module-row__action::after {
|
|
content: "->";
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.theme-switcher {
|
|
position: relative;
|
|
z-index: 1;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.theme-switcher label {
|
|
display: grid;
|
|
gap: 4px;
|
|
color: var(--muted);
|
|
font-size: 0.68rem;
|
|
font-weight: 800;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.theme-switcher select,
|
|
.card select {
|
|
background: var(--surface-strong);
|
|
color: var(--text);
|
|
}
|
|
|
|
.theme-switcher select {
|
|
min-width: 118px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
padding: 8px 30px 8px 11px;
|
|
font: inherit;
|
|
font-size: 0.86rem;
|
|
letter-spacing: 0;
|
|
text-transform: none;
|
|
}
|
|
|
|
.empty-state {
|
|
padding: 28px;
|
|
border-radius: 18px;
|
|
color: var(--muted);
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.module-host-card {
|
|
position: relative;
|
|
overflow: hidden;
|
|
border-radius: 18px;
|
|
}
|
|
|
|
.reveal {
|
|
opacity: 0;
|
|
transform: translateY(18px);
|
|
animation: rise 480ms ease forwards;
|
|
}
|
|
|
|
@keyframes rise {
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.site-header {
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
margin: 10px;
|
|
}
|
|
|
|
.header-nav {
|
|
width: 100%;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-body,
|
|
.module-subnav {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.main-content {
|
|
width: min(100% - 20px, 1680px);
|
|
}
|
|
|
|
.main-content:has(#mining-checker-app) {
|
|
width: 100%;
|
|
}
|
|
|
|
.module-host-card:has(#mining-checker-app) {
|
|
border-left: 0;
|
|
border-right: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.home-hero {
|
|
align-items: flex-start;
|
|
flex-wrap: wrap;
|
|
padding: 14px;
|
|
border-radius: 18px;
|
|
}
|
|
|
|
.theme-switcher {
|
|
width: 100%;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.brand-mark {
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.brand-mark img {
|
|
width: 49px;
|
|
height: 49px;
|
|
}
|
|
|
|
.module-row {
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
}
|
|
|
|
.module-row__action {
|
|
grid-column: 2;
|
|
justify-self: start;
|
|
padding: 7px 10px;
|
|
}
|
|
|
|
.section-head {
|
|
align-items: start;
|
|
flex-direction: column;
|
|
}
|
|
}
|