updateweb

This commit is contained in:
Local Server
2026-01-01 22:24:30 -06:00
parent 017c6376fc
commit 1919f6f8bb
185 changed files with 19860 additions and 17603 deletions

View File

@@ -1,5 +1,5 @@
:root {
--primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--primary-gradient: #202023;
--sidebar-width: 250px;
--transition-speed: 0.3s;
--primary-color: #667eea;
@@ -43,6 +43,8 @@ body {
margin-bottom: 30px;
text-align: center;
padding: 10px;
color: white;
letter-spacing: 1px;
}
.sidebar-menu {
@@ -56,26 +58,28 @@ body {
}
.sidebar-menu a {
color: rgba(255, 255, 255, 0.9);
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
display: flex;
align-items: center;
padding: 12px 15px;
border-radius: 8px;
transition: all 0.25s ease;
transition: all 0.3s ease;
font-size: 0.95rem;
}
.sidebar-menu a:hover {
background: rgba(255, 255, 255, 0.15);
color: white;
background: rgba(255, 255, 255, 0.1);
color: #ffffff;
transform: translateX(5px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.sidebar-menu a.active {
background: rgba(255, 255, 255, 0.2);
color: white;
background: #667eea;
color: #ffffff;
font-weight: 600;
box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}
.sidebar-menu i {