feat(frontend): add static shell + index page

This commit is contained in:
devilreef 2026-04-30 09:44:14 +06:00
parent 01c281ca80
commit 04835f31b6
Signed by: devilreef
SSH key fingerprint: SHA256:UZisRr4iuXx+IhkbZnR655L2RWAT6o2rgbGv5F/6m3Y
6 changed files with 118 additions and 0 deletions

View file

@ -0,0 +1,9 @@
.footer {
margin-top: 12px; padding: 30px 0 24px;
border-top: 2px dashed #ff3ea566;
}
.footer-bot {
display: flex; justify-content: space-between; gap: 14px;
font-family: var(--f-mono); font-size: 12px; color: #fff4e8aa;
flex-wrap: wrap;
}

View file

@ -0,0 +1,20 @@
.listen-ways-list { display: flex; flex-direction: column; gap: 14px; }
.listen-way {
border: 1.5px dashed #5ef7ff44;
padding: 12px;
background: #0a04108c;
}
.lw-label { font-family: var(--f-pixel); font-size: 12px; color: var(--lemon); letter-spacing: 2px; margin-bottom: 4px; }
.lw-url {
display: block; font-family: var(--f-mono); font-size: 13px;
color: var(--cyan); background: var(--ink);
padding: 6px 8px; word-break: break-all;
}
.lw-hint { font-family: var(--f-mono); font-size: 11px; color: #fff4e866; margin-top: 6px; }
.row-grid { display: grid; gap: 24px; margin-bottom: 36px; }
.row-grid.two { grid-template-columns: 1.2fr 1fr; }
@media (max-width: 1000px) {
.row-grid.two { grid-template-columns: 1fr; }
}