Vorlage:Kachel/styles.css

Aus LASK Wiki
Version vom 3. September 2026, 09:56 Uhr von Wikiadmin (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „.wiki-kachel { display: block; width: 100%; height: 100%; } .wiki-kachel-link { box-sizing: border-box; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 160px; padding: 25px; background: #f8f9fa; border: 1px solid #c8ccd1; border-radius: 12px; color: #202122; text-decoration: none; transition: transform 0.15s ease, box-shado…“)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Zur Navigation springen Zur Suche springen
.wiki-kachel {
    display: block;
    width: 100%;
    height: 100%;
}

.wiki-kachel-link {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 160px;
    padding: 25px;

    background: #f8f9fa;
    border: 1px solid #c8ccd1;
    border-radius: 12px;

    color: #202122;
    text-decoration: none;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background-color 0.15s ease;
}

.wiki-kachel-link:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.wiki-kachel-icon {
    font-size: 45px;
    line-height: 1;
    margin-bottom: 15px;
}

.wiki-kachel-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}