Die Seite wurde neu angelegt: „Das folgende CSS wird für alle Benutzeroberflächen geladen.: .gor-clock-wrapper { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; margin: 1rem 0; } .gor-clock { position: relative; width: 260px; height: 260px; border-radius: 50%; border: 6px solid #343a40; background: radial-gradient(circle at 30% 30%, #ffffff, #e9ecef); box-shadow: 0 4px 12px rgba(0,0,0,0.15); } .hand {…“
 
Keine Bearbeitungszusammenfassung
Zeile 75: Zeile 75:
     font-size: 0.8rem;
     font-size: 0.8rem;
     color: #72777d;
     color: #72777d;
}
.gor-tick {
    position: absolute;
    width: 2px;
    height: 12%;
    background: #343a40;
    left: 50%;
    top: 50%;
    transform-origin: 50% 100%;
}
.gor-number {
    position: absolute;
    width: 2em;
    text-align: center;
    font-size: 0.7rem;
    color: #495057;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
}

Version vom 25. November 2025, 08:58 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
.gor-clock-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin: 1rem 0;
}

.gor-clock {
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 6px solid #343a40;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e9ecef);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: 50% 100%;
    transform: translate(-50%, -100%) rotate(0deg);
    border-radius: 5px;
}

.hand-ahn {
    width: 6px;
    height: 30%;
    background: #212529;
}

.hand-ehn {
    width: 4px;
    height: 40%;
    background: #495057;
}

.hand-ihn {
    width: 2px;
    height: 45%;
    background: #c92a2a;
}

.center-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #212529;
    border: 2px solid #f8f9fa;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.gor-digital {
    font-variant-numeric: tabular-nums;
    font-size: 1rem;
    border: 1px solid #a2a9b1;
    background: #ffffff;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.digital-label {
    font-size: 0.8rem;
    color: #54595d;
    margin-right: 0.4rem;
}

.gor-info {
    font-size: 0.8rem;
    color: #72777d;
}
.gor-tick {
    position: absolute;
    width: 2px;
    height: 12%;
    background: #343a40;
    left: 50%;
    top: 50%;
    transform-origin: 50% 100%;
}
.gor-number {
    position: absolute;
    width: 2em;
    text-align: center;
    font-size: 0.7rem;
    color: #495057;
    transform: translate(-50%, -50%);
    pointer-events: none;
}