Add initial not-working implementation
This commit is contained in:
parent
beaec64abd
commit
4c7274bafe
17 changed files with 509 additions and 128 deletions
33
src/components/Album/Track.module.css
Normal file
33
src/components/Album/Track.module.css
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
.track {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 8px 10px;
|
||||
border-radius: 10px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
font-size: 14px;
|
||||
color: #e7f2ff;
|
||||
min-height: 48px;
|
||||
max-height: 48px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.runtime {
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.active {
|
||||
border-color: rgba(45, 212, 191, 0.7);
|
||||
box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.35);
|
||||
background: rgba(45, 212, 191, 0.08);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue