feat(frontend): add static shell + index page
This commit is contained in:
parent
01c281ca80
commit
04835f31b6
6 changed files with 118 additions and 0 deletions
9
frontend/src/styles/components/footer.css
Normal file
9
frontend/src/styles/components/footer.css
Normal 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;
|
||||
}
|
||||
20
frontend/src/styles/components/listen-ways-card.css
Normal file
20
frontend/src/styles/components/listen-ways-card.css
Normal 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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue