This commit is contained in:
@@ -27,10 +27,12 @@ body {
|
||||
|
||||
.logo {
|
||||
position: fixed;
|
||||
top: 20px;
|
||||
/* Vertikal zentriert im 60px-Header-Bereich (top:20px, height:60px → Mitte 50px) */
|
||||
top: 50px;
|
||||
left: 20px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
transform: translateY(-50%);
|
||||
z-index: 1000;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
|
||||
@@ -43,7 +45,7 @@ body {
|
||||
}
|
||||
|
||||
.logo:hover {
|
||||
transform: scale(1.1);
|
||||
transform: translateY(-50%) scale(1.1);
|
||||
}
|
||||
|
||||
.logo img {
|
||||
@@ -105,17 +107,43 @@ body {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.live-clock {
|
||||
position: fixed;
|
||||
top: 20px;
|
||||
left: 25%;
|
||||
transform: translateX(-50%);
|
||||
height: 60px;
|
||||
min-width: 150px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0 24px;
|
||||
z-index: 1000;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
border-radius: 30px;
|
||||
font-family: "Consolas", "Menlo", "Courier New", monospace;
|
||||
font-size: 1.6rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 2px;
|
||||
color: rgba(255, 255, 255, 0.95);
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.heartbeat-indicators {
|
||||
position: fixed;
|
||||
top: 20px;
|
||||
right: 160px;
|
||||
height: 60px;
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
align-items: flex-end;
|
||||
gap: 18px;
|
||||
z-index: 1000;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
border-radius: 25px;
|
||||
padding: 10px 20px;
|
||||
border-radius: 30px;
|
||||
padding: 0 24px 10px 24px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
@@ -123,7 +151,8 @@ body {
|
||||
.logo {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
top: 15px;
|
||||
/* Mobile: Header-Band top:15px height:60px → Mitte 45px */
|
||||
top: 45px;
|
||||
left: 15px;
|
||||
padding: 3px;
|
||||
}
|
||||
@@ -142,22 +171,34 @@ body {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.live-clock {
|
||||
top: 15px;
|
||||
height: 40px;
|
||||
min-width: 100px;
|
||||
padding: 0 14px;
|
||||
font-size: 1rem;
|
||||
letter-spacing: 1px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.heartbeat-indicators {
|
||||
top: 15px;
|
||||
right: 90px;
|
||||
gap: 8px;
|
||||
padding: 8px 12px;
|
||||
height: 60px;
|
||||
gap: 12px;
|
||||
padding: 0 16px 10px 16px;
|
||||
font-size: 0.8rem;
|
||||
border-radius: 30px;
|
||||
}
|
||||
|
||||
|
||||
.heartbeat-indicator {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
|
||||
.heartbeat-indicator::before {
|
||||
font-size: 8px;
|
||||
top: -20px;
|
||||
top: -14px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
@@ -170,8 +211,8 @@ body {
|
||||
}
|
||||
|
||||
.heartbeat-indicator {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
border-radius: 50%;
|
||||
background: #f50f0f;
|
||||
transition: all 0.3s ease;
|
||||
@@ -181,7 +222,7 @@ body {
|
||||
.heartbeat-indicator::before {
|
||||
content: attr(data-label);
|
||||
position: absolute;
|
||||
top: -25px;
|
||||
top: -18px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
font-size: 10px;
|
||||
|
||||
Reference in New Issue
Block a user