optimize css

This commit is contained in:
2025-12-08 14:08:53 +01:00
parent 72dc2deab9
commit 4d3e258b06
27 changed files with 917 additions and 2346 deletions

View File

@@ -1,30 +1,13 @@
:root {
--bg-base: #09090b;
--bg-surface: #121215;
--bg-glass: rgba(18, 18, 21, 0.8);
--bg-cell: #0c0c0e;
--accent: #8b5cf6;
--accent-glow: rgba(139, 92, 246, 0.3);
--text-primary: #ffffff;
--text-secondary: #a1a1aa;
--border: rgba(255, 255, 255, 0.08);
--radius-md: 12px;
--radius-lg: 24px;
--nav-height: 80px;
--font-main: "Inter", sans-serif;
--titlebar-height: 40px;
}
* {
box-sizing: border-box;
outline: none;
--color-primary-glow: rgba(139, 92, 246, 0.3);
}
body {
margin: 0;
background-color: var(--bg-base);
color: var(--text-primary);
font-family: var(--font-main);
overflow: hidden;
height: 100vh;
display: flex;
@@ -35,369 +18,6 @@ html.electron body {
padding-top: 0;
}
.navbar {
height: var(--nav-height);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 2rem;
background: var(--bg-glass);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
z-index: 100;
flex-shrink: 0;
position: relative;
}
.nav-brand {
position: absolute;
left: 2rem;
font-weight: 900;
font-size: 1.4rem;
display: flex;
align-items: center;
gap: 0.8rem;
color: white;
text-decoration: none;
letter-spacing: -0.02em;
}
.brand-icon {
width: 36px;
height: 36px;
background: transparent;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
}
.brand-icon img {
width: 100%;
height: 100%;
object-fit: contain;
}
.nav-center {
display: flex;
gap: 0.5rem;
background: rgba(255, 255, 255, 0.03);
padding: 0.3rem;
border-radius: 999px;
border: 1px solid var(--border);
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.nav-button {
background: transparent;
border: none;
color: var(--text-secondary);
padding: 0.5rem 1.2rem;
border-radius: 999px;
cursor: pointer;
font-weight: 600;
font-size: 0.9rem;
transition: all 0.2s ease;
}
.nav-button:hover {
color: white;
background: rgba(255, 255, 255, 0.05);
}
.nav-button.active {
background: rgba(255, 255, 255, 0.1);
color: white;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-right {
display: flex;
align-items: center;
gap: 1.5rem;
margin-left: auto;
}
.search-wrapper {
position: relative;
width: 250px;
}
.search-input {
width: 100%;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 0.7rem 1rem 0.7rem 2.5rem;
border-radius: 99px;
color: white;
font-family: inherit;
transition: 0.2s;
}
.search-input:focus {
background: rgba(255, 255, 255, 0.1);
border-color: var(--accent);
box-shadow: 0 0 15px var(--accent-glow);
}
.search-icon {
position: absolute;
left: 12px;
top: 50%;
transform: translateY(-50%);
pointer-events: none;
color: var(--text-secondary);
}
.search-results {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: rgba(15, 15, 18, 0.95);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-top: none;
border-radius: 0 0 12px 12px;
padding: 0.5rem;
display: none;
flex-direction: column;
gap: 0.25rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
max-height: 400px;
overflow-y: auto;
z-index: 2000;
}
.search-results.active {
display: flex;
}
.search-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.5rem;
border-radius: 8px;
cursor: pointer;
transition: background 0.2s;
text-decoration: none;
color: inherit;
}
.search-item:hover {
background: rgba(255, 255, 255, 0.1);
}
.search-poster {
width: 40px;
height: 56px;
border-radius: 4px;
object-fit: cover;
background: #222;
}
.search-info {
flex: 1;
overflow: hidden;
}
.search-title {
font-size: 0.9rem;
font-weight: 600;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: var(--text-primary);
}
.search-meta {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.75rem;
color: var(--text-secondary);
margin-top: 2px;
}
.rating-pill {
color: #4ade80;
font-weight: 700;
}
.nav-user {
position: relative;
display: flex;
align-items: center;
}
.user-avatar-btn {
position: relative;
cursor: pointer;
transition: transform 0.2s ease;
}
.user-avatar-btn:hover {
transform: scale(1.05);
}
#nav-avatar {
width: 44px;
height: 44px;
object-fit: cover;
border-radius: 50%;
border: 2px solid var(--accent);
background: var(--bg-surface);
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 0 0 0 var(--accent-glow);
}
.user-avatar-btn:hover #nav-avatar {
box-shadow: 0 0 0 4px var(--accent-glow);
border-color: #a78bfa;
}
.online-indicator {
position: absolute;
bottom: 2px;
right: 2px;
width: 12px;
height: 12px;
background: #22c55e;
border: 2px solid var(--bg-base);
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.6;
}
}
.nav-dropdown {
position: absolute;
top: calc(100% + 12px);
right: 0;
background: rgba(18, 18, 21, 0.98);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 0;
min-width: 260px;
display: none;
flex-direction: column;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(139, 92, 246, 0.1);
z-index: 9999;
overflow: hidden;
animation: dropdownSlide 0.2s ease-out;
}
@keyframes dropdownSlide {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.nav-dropdown.active {
display: flex;
}
.dropdown-header {
display: flex;
align-items: center;
gap: 12px;
padding: 16px;
background: rgba(139, 92, 246, 0.08);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dropdown-avatar {
width: 48px;
height: 48px;
border-radius: 12px;
object-fit: cover;
border: 2px solid var(--accent);
background: var(--bg-surface);
}
.dropdown-user-info {
flex: 1;
overflow: hidden;
}
.dropdown-username {
font-weight: 700;
font-size: 1rem;
color: var(--text-primary);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 2px;
}
.dropdown-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
color: var(--text-primary);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
border: none;
background: transparent;
width: 100%;
text-align: left;
font-family: inherit;
}
.dropdown-item svg {
flex-shrink: 0;
color: var(--text-secondary);
transition: all 0.2s ease;
}
.dropdown-item:hover {
background: rgba(255, 255, 255, 0.08);
color: white;
padding-left: 20px;
}
.dropdown-item:hover svg {
color: var(--accent);
transform: translateX(2px);
}
.logout-item {
color: #ef4444;
margin-top: 4px;
}
.logout-item svg {
color: #ef4444;
}
.logout-item:hover {
background: rgba(239, 68, 68, 0.15);
color: #f87171;
}
.ambient-bg {
position: absolute;
inset: 0;
@@ -447,7 +67,7 @@ html.electron body {
.icon-btn {
background: rgba(255, 255, 255, 0.03);
border: 1px solid var(--border);
border: 1px solid var(--border-subtle);
width: 44px;
height: 44px;
border-radius: 12px;
@@ -460,8 +80,8 @@ html.electron body {
}
.icon-btn:hover {
background: var(--accent);
border-color: var(--accent);
background: var(--color-primary);
border-color: var(--color-primary);
transform: translateY(-2px);
}
@@ -475,7 +95,7 @@ html.electron body {
background: #0f0f12;
padding: 4px;
border-radius: 99px;
border: 1px solid var(--border);
border: 1px solid var(--border-subtle);
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}
@@ -484,7 +104,7 @@ html.electron body {
border-radius: 99px;
border: none;
background: transparent;
color: var(--text-secondary);
color: var(--color-text-secondary);
font-weight: 600;
font-size: 0.9rem;
cursor: pointer;
@@ -492,9 +112,9 @@ html.electron body {
}
.toggle-item.active {
background: var(--accent);
background: var(--color-primary);
color: white;
box-shadow: 0 2px 10px var(--accent-glow);
box-shadow: 0 2px 10px var(--color-primary-glow);
}
.calendar-board {
@@ -502,16 +122,16 @@ html.electron body {
display: flex;
flex-direction: column;
overflow: hidden;
border: 1px solid var(--border);
border: 1px solid var(--border-subtle);
border-radius: var(--radius-lg);
background: var(--bg-surface);
background: var(--color-bg-elevated);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.weekdays-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
border-bottom: 1px solid var(--border);
border-bottom: 1px solid var(--border-subtle);
background: rgba(255, 255, 255, 0.02);
flex-shrink: 0;
}
@@ -522,9 +142,9 @@ html.electron body {
text-transform: uppercase;
font-size: 0.75rem;
font-weight: 800;
color: var(--text-secondary);
color: var(--color-text-secondary);
letter-spacing: 0.1em;
border-right: 1px solid var(--border);
border-right: 1px solid var(--border-subtle);
}
.weekday-header:last-child {
@@ -539,14 +159,14 @@ html.electron body {
flex: 1;
grid-auto-rows: minmax(180px, 1fr);
background: var(--bg-base);
background: var(--color-bg-base);
}
.day-cell {
position: relative;
background: var(--bg-cell);
border-right: 1px solid var(--border);
border-bottom: 1px solid var(--border);
border-right: 1px solid var(--border-subtle);
border-bottom: 1px solid var(--border-subtle);
display: flex;
flex-direction: column;
padding: 12px;
@@ -569,7 +189,7 @@ html.electron body {
.day-cell.today {
background: rgba(139, 92, 246, 0.03);
box-shadow: inset 0 0 0 1px var(--accent);
box-shadow: inset 0 0 0 1px var(--color-primary);
}
.day-header {
@@ -584,7 +204,7 @@ html.electron body {
.day-number {
font-size: 1.1rem;
font-weight: 700;
color: var(--text-secondary);
color: var(--color-text-secondary);
width: 32px;
height: 32px;
display: flex;
@@ -594,15 +214,15 @@ html.electron body {
}
.day-cell.today .day-number {
background: var(--accent);
background: var(--color-primary);
color: white;
box-shadow: 0 0 15px var(--accent-glow);
box-shadow: 0 0 15px var(--color-primary-glow);
}
.today-label {
font-size: 0.65rem;
font-weight: 800;
color: var(--accent);
color: var(--color-primary);
letter-spacing: 0.05em;
text-transform: uppercase;
display: none;
@@ -655,7 +275,7 @@ html.electron body {
top: 0;
bottom: 0;
width: 3px;
background: var(--accent);
background: var(--color-primary);
opacity: 0;
transition: opacity 0.2s;
}
@@ -683,7 +303,7 @@ html.electron body {
.chip-ep {
font-size: 0.7rem;
font-weight: 700;
color: var(--text-secondary);
color: var(--color-text-secondary);
background: rgba(0, 0, 0, 0.4);
padding: 2px 6px;
border-radius: 4px;
@@ -711,7 +331,7 @@ html.electron body {
bottom: 30px;
right: 30px;
background: #18181b;
border: 1px solid var(--border);
border: 1px solid var(--border-subtle);
padding: 12px 24px;
border-radius: 99px;
display: flex;
@@ -731,7 +351,7 @@ html.electron body {
width: 18px;
height: 18px;
border: 2px solid rgba(255, 255, 255, 0.1);
border-top-color: var(--accent);
border-top-color: var(--color-primary);
border-radius: 50%;
animation: spin 0.8s infinite linear;
}