style(theme): complete warm sepia dashboard styles

This commit is contained in:
2026-06-07 14:01:52 +02:00
parent 1eacf7ed93
commit f6277bacfe
8 changed files with 267 additions and 322 deletions
@@ -19,13 +19,13 @@
font-size: 2.5rem;
font-weight: 700;
margin: 0 0 0.5rem 0;
color: #ffffff;
color: var(--text-main);
letter-spacing: -0.5px;
}
.header-title-section .subtitle {
font-size: 1rem;
color: #a1a1aa;
color: var(--text-muted);
margin: 0;
}
@@ -67,27 +67,27 @@
height: 100%;
overflow: hidden;
border-radius: 12px;
background: #1a1a1e;
border: 1px solid rgba(255, 255, 255, 0.05);
background: var(--bg-surface);
border: 1px solid var(--border);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}
.book-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
border-color: rgba(16, 185, 129, 0.2);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
border-color: var(--accent);
}
.book-cover-container {
position: relative;
height: 360px;
background: rgba(0, 0, 0, 0.2);
background: rgba(0, 0, 0, 0.05);
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
border-bottom: 1px solid var(--border);
}
.book-cover {
@@ -145,7 +145,7 @@
font-size: 1.2rem;
font-weight: 600;
margin: 0 0 0.4rem 0;
color: #ffffff;
color: var(--text-main);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
@@ -154,7 +154,7 @@
.book-author {
font-size: 0.9rem;
color: #a1a1aa;
color: var(--text-muted);
margin: 0 0 1.25rem 0;
}
@@ -179,7 +179,7 @@
.progress-bar {
height: 6px;
background: rgba(255, 255, 255, 0.05);
background: var(--border);
border-radius: 3px;
overflow: hidden;
}
@@ -192,7 +192,7 @@
.progress-text {
font-size: 0.8rem;
color: #a1a1aa;
color: var(--text-muted);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@@ -232,14 +232,14 @@
justify-content: center;
padding: 5rem 2rem;
text-align: center;
background: #1a1a1e;
border: 1px solid rgba(255, 255, 255, 0.05);
background: var(--bg-surface);
border: 1px solid var(--border);
border-radius: 12px;
}
.empty-icon-pulse {
margin-bottom: 2rem;
color: #a1a1aa;
color: var(--text-muted);
animation: pulse 3s infinite alternate;
}
@@ -247,11 +247,11 @@
font-family: var(--nexus-font-serif);
font-size: 1.8rem;
margin: 0 0 0.5rem 0;
color: #ffffff;
color: var(--text-main);
}
.empty-state-container p {
color: #a1a1aa;
color: var(--text-muted);
max-width: 400px;
margin: 0 0 2rem 0;
}
@@ -278,14 +278,14 @@
border-radius: 12px;
overflow: hidden;
height: 480px;
background: #1a1a1e;
border: 1px solid rgba(255, 255, 255, 0.05);
background: var(--bg-surface);
border: 1px solid var(--border);
opacity: 0.6;
}
.skeleton-cover {
height: 360px;
background: linear-gradient(90deg, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.02) 75%);
background: linear-gradient(90deg, var(--bg-base) 25%, var(--border) 50%, var(--bg-base) 75%);
background-size: 200% 100%;
animation: loading 1.5s infinite;
}
@@ -298,7 +298,7 @@
}
.skeleton-line {
background: linear-gradient(90deg, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.02) 75%);
background: linear-gradient(90deg, var(--bg-base) 25%, var(--border) 50%, var(--bg-base) 75%);
background-size: 200% 100%;
animation: loading 1.5s infinite;
border-radius: 4px;
@@ -336,9 +336,9 @@
gap: 1.25rem;
padding: 1.25rem 2.25rem;
border-radius: 40px;
background: rgba(13, 13, 15, 0.85);
background: var(--bg-surface);
backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.08);
border: 1px solid var(--border);
animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@@ -354,7 +354,7 @@
.loader-text {
font-weight: 500;
color: #ffffff;
color: var(--text-main);
font-size: 0.95rem;
}