Back to Pretty OTA

This commit is contained in:
Carsten Graf
2025-07-26 02:03:35 +02:00
parent a85bd6227e
commit 0147ff2cd9
26 changed files with 3980 additions and 23 deletions

View File

@@ -122,7 +122,7 @@ body {
/* Batterie-Banner Styling */
.battery-banner {
position: fixed;
top: 0;
top: -100px;
left: 0;
width: 100%;
background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
@@ -133,12 +133,13 @@ body {
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
border-bottom: 3px solid rgba(255, 255, 255, 0.2);
animation: batteryPulse 2s infinite;
transform: translateY(-100%);
transition: transform 0.5s ease;
transition: top 0.5s ease;
display: none;
}
.battery-banner.show {
transform: translateY(0);
top: 0;
display: block;
}
.battery-banner .banner-content {