Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* === Goreanische Rund-Uhr – Layout === */
 
.gor-clock-wrapper {
.gor-clock-wrapper {
     display: flex;
     display: flex;
Zeile 17: Zeile 18:
     box-shadow: 0 4px 12px rgba(0,0,0,0.15);
     box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
}
/* Zeiger */


.hand {
.hand {
Zeile 30: Zeile 33:
     width: 6px;
     width: 6px;
     height: 30%;
     height: 30%;
     background: #212529;
     background: #212529; /* dunkler, dicker Stundenzeiger */
}
}


Zeile 36: Zeile 39:
     width: 4px;
     width: 4px;
     height: 40%;
     height: 40%;
     background: #495057;
     background: #495057; /* mittlerer Minutenzeiger */
}
}


Zeile 42: Zeile 45:
     width: 2px;
     width: 2px;
     height: 45%;
     height: 45%;
     background: #c92a2a;
     background: #c92a2a; /* roter Sekundenzeiger (Ihn) */
}
}


Zeile 55: Zeile 58:
     top: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
}
/* Ziffernblatt: Ticks & Zahlen */
.gor-tick {
    position: absolute;
    width: 2px;
    height: 14%;
    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;
}
.gor-number-inner {
    font-size: 0.65rem;
    color: #72777d;
}
}
/* Digitale Anzeige unter der Uhr */


.gor-digital {
.gor-digital {
Zeile 71: Zeile 104:
     margin-right: 0.4rem;
     margin-right: 0.4rem;
}
}
.gor-digital span {
    margin-right: 0.3rem;
}
/* Info-Text */


.gor-info {
.gor-info {
     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;
     text-align: center;
    font-size: 0.7rem;
    color: #495057;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
}

Version vom 25. November 2025, 09:25 Uhr

/* === Goreanische Rund-Uhr – Layout === */

.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);
}

/* Zeiger */

.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; /* dunkler, dicker Stundenzeiger */
}

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

.hand-ihn {
    width: 2px;
    height: 45%;
    background: #c92a2a; /* roter Sekundenzeiger (Ihn) */
}

.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%);
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
}

/* Ziffernblatt: Ticks & Zahlen */

.gor-tick {
    position: absolute;
    width: 2px;
    height: 14%;
    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;
}

.gor-number-inner {
    font-size: 0.65rem;
    color: #72777d;
}

/* Digitale Anzeige unter der Uhr */

.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-digital span {
    margin-right: 0.3rem;
}

/* Info-Text */

.gor-info {
    font-size: 0.8rem;
    color: #72777d;
    text-align: center;
}