101 lines
1.6 KiB
CSS
101 lines
1.6 KiB
CSS
.sh-backup-view {
|
|
padding: 28px;
|
|
}
|
|
|
|
.sh-backup-hero {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
gap: 16px;
|
|
padding: 24px;
|
|
border-radius: 20px;
|
|
background: var(--sh-gradient-soft);
|
|
border: 1px solid var(--sh-border);
|
|
box-shadow: var(--sh-shadow);
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.sh-hero-eyebrow {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.2em;
|
|
color: var(--sh-text-secondary);
|
|
margin-bottom: 6px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.sh-backup-hero h1 {
|
|
margin: 0 0 6px;
|
|
font-size: 26px;
|
|
}
|
|
|
|
.sh-backup-hero p {
|
|
margin: 0;
|
|
color: var(--sh-text-secondary);
|
|
}
|
|
|
|
.sh-hero-badges {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.sh-hero-badge {
|
|
padding: 12px 18px;
|
|
border-radius: 16px;
|
|
background: rgba(15,23,42,0.5);
|
|
border: 1px solid rgba(255,255,255,0.08);
|
|
min-width: 140px;
|
|
}
|
|
|
|
.sh-hero-badge .label {
|
|
display: block;
|
|
font-size: 11px;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: var(--sh-text-secondary);
|
|
}
|
|
|
|
.sh-hero-badge strong {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.sh-backup-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
gap: 20px;
|
|
}
|
|
|
|
.sh-text-muted {
|
|
color: var(--sh-text-secondary);
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.sh-upload {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 12px;
|
|
padding: 16px;
|
|
margin: 16px 0;
|
|
border: 1px dashed var(--sh-border);
|
|
border-radius: 14px;
|
|
color: var(--sh-text-secondary);
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.sh-upload:hover {
|
|
background: rgba(255,255,255,0.04);
|
|
}
|
|
|
|
.sh-upload input {
|
|
display: none;
|
|
}
|
|
|
|
.sh-action-row {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|