Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/* === Goreanische Rund-Uhr – Layout === */


.gor-clock-wrapper {
.gor-clock-wrapper {
Zeile 33: Zeile 32:
     width: 6px;
     width: 6px;
     height: 30%;
     height: 30%;
     background: #212529; /* dunkler, dicker Stundenzeiger */
     background: #212529;
}
}


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


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


Zeile 61: Zeile 60:
}
}


/* Ziffernblatt: Ticks & Zahlen */
/* Ziffernblatt nur Zahlen */
 
.gor-tick {
    position: absolute;
    width: 2px;
    height: 14%;
    background: #343a40;
    left: 50%;
    top: 50%;
    transform-origin: 50% 100%;
}


.gor-number {
.gor-number {
Zeile 77: Zeile 66:
     width: 2em;
     width: 2em;
     text-align: center;
     text-align: center;
     font-size: 0.7rem;
     font-size: 0.75rem;
     color: #495057;
     color: #495057;
     transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
Zeile 88: Zeile 77:
}
}


/* Digitale Anzeige unter der Uhr */
/* Digitale Anzeige */


.gor-digital {
.gor-digital {

Version vom 25. November 2025, 09:29 Uhr


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

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

/* Ziffernblatt nur Zahlen */

.gor-number {
    position: absolute;
    width: 2em;
    text-align: center;
    font-size: 0.75rem;
    color: #495057;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

/* Digitale Anzeige */

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