0.3.00
This commit is contained in:
@@ -3660,3 +3660,154 @@ details summary {
|
||||
font-size: 12.5px;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
/* ---------- metadata hero ---------- */
|
||||
|
||||
.metadata-hero-layout {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(320px, .82fr) minmax(460px, 1.35fr);
|
||||
gap: 16px;
|
||||
align-items: start;
|
||||
}
|
||||
.metadata-hero-order {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
.metadata-hero-order-row {
|
||||
display: grid;
|
||||
grid-template-columns: 30px minmax(0, 1fr) auto;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 10px;
|
||||
border: 1px solid var(--line-soft);
|
||||
border-radius: var(--radius-sm);
|
||||
background: var(--surface-lift);
|
||||
opacity: .62;
|
||||
}
|
||||
.metadata-hero-order-row[data-enabled] { opacity: 1; }
|
||||
.metadata-hero-order-number {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
border-radius: 50%;
|
||||
background: var(--surface);
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.metadata-hero-order-actions { display: flex; gap: 5px; }
|
||||
.metadata-hero-order-actions button { min-width: 34px; padding-inline: 8px; }
|
||||
.metadata-hero-preview {
|
||||
position: relative;
|
||||
isolation: isolate;
|
||||
overflow: hidden;
|
||||
aspect-ratio: 16 / 7.2;
|
||||
min-height: 280px;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: var(--radius-sm);
|
||||
background: #080b0e;
|
||||
}
|
||||
.metadata-hero-preview::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: -1;
|
||||
background: linear-gradient(90deg, #080b0e 0 34%, rgba(8,11,14,.9) 48%, rgba(8,11,14,.2) 76%, transparent);
|
||||
}
|
||||
.metadata-hero-preview-art {
|
||||
position: absolute;
|
||||
inset: 0 0 0 36%;
|
||||
z-index: -2;
|
||||
background:
|
||||
radial-gradient(circle at 67% 24%, rgba(211,242,255,.8) 0 2%, transparent 3%),
|
||||
radial-gradient(ellipse at 76% 78%, rgba(71,107,92,.8), transparent 45%),
|
||||
linear-gradient(145deg, #17303d 0%, #456273 42%, #101a1f 100%);
|
||||
}
|
||||
.metadata-hero-preview-copy {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
width: 54%;
|
||||
min-height: 100%;
|
||||
padding: 26px 0 24px 28px;
|
||||
}
|
||||
.metadata-preview-title {
|
||||
max-width: 330px;
|
||||
color: #fff;
|
||||
font-family: Georgia, serif;
|
||||
font-size: clamp(24px, 3vw, 42px);
|
||||
line-height: .95;
|
||||
letter-spacing: .03em;
|
||||
}
|
||||
.metadata-preview-ratings { display: flex; gap: 8px; }
|
||||
.metadata-preview-ratings b {
|
||||
padding: 5px 8px;
|
||||
border-radius: 4px;
|
||||
background: rgba(255,255,255,.11);
|
||||
color: #e8edf0;
|
||||
font-size: 11px;
|
||||
}
|
||||
.metadata-preview-facts {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
min-width: 0;
|
||||
color: #bdc7ce;
|
||||
font-size: 11px;
|
||||
line-height: 16px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.metadata-preview-facts span {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.metadata-preview-facts b {
|
||||
flex: none;
|
||||
padding: 1px 5px;
|
||||
border: 1px solid rgba(255,255,255,.28);
|
||||
border-radius: 3px;
|
||||
background: rgba(0,0,0,.22);
|
||||
color: #e8edf0;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
.metadata-preview-reason {
|
||||
overflow: hidden;
|
||||
color: var(--accent);
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
line-height: 16px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.metadata-preview-progress {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
color: #bdc7ce;
|
||||
font-size: 11px;
|
||||
line-height: 16px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.metadata-preview-progress > span {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
width: 112px;
|
||||
height: 3px;
|
||||
border-radius: 2px;
|
||||
background: rgba(255,255,255,.22);
|
||||
}
|
||||
.metadata-preview-progress i {
|
||||
display: block;
|
||||
width: 59%;
|
||||
height: 100%;
|
||||
background: var(--accent);
|
||||
}
|
||||
.metadata-preview-progress b { font-size: inherit; line-height: inherit; }
|
||||
.metadata-preview-summary { margin: 0; color: #cbd2d7; font-size: 12px; line-height: 1.45; }
|
||||
|
||||
@media (max-width: 980px) {
|
||||
.metadata-hero-layout { grid-template-columns: 1fr; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user