Vorlage:LPON/ModOutput/styles.css: Unterschied zwischen den Versionen

Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 21: Zeile 21:
/* Zellen der Tabelle */
/* Zellen der Tabelle */
.lpnon-mod-table td {
.lpnon-mod-table td {
     border: 1px solid #ddd;
     border: 1px solid #cf001b;
     padding: 10px;
     padding: 10px;
     background-color: #ffffff; /* Weiß als Standardhintergrund */
     background-color: #ffffff; /* Weiß als Standardhintergrund */

Version vom 3. Dezember 2024, 21:33 Uhr

/* Stil für die Modtabelle */
.lpnon-mod-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: #fef4f4; /* Heller Komplementärton zu #cf001b */
    border: 1px solid #cf001b; /* Rahmen in Hauptfarbe */
    border-radius: 8px;
}

/* Kopfzeile der Tabelle */
.lpnon-mod-table th {
    background-color: #f9e8e8; /* Heller Ton für die Kopfzeile */
    color: #cf001b; /* Text in Hauptfarbe */
    font-weight: bold;
    text-align: left;
    border: 1px solid #cf001b; /* Akzentlinie */
    padding: 10px;
}

/* Zellen der Tabelle */
.lpnon-mod-table td {
    border: 1px solid #cf001b;
    padding: 10px;
    background-color: #ffffff; /* Weiß als Standardhintergrund */
    color: #333;
}

/* Abwechselnde Zeilenfarben */
.lpnon-mod-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.lpnon-mod-table tr:nth-child(odd) td {
    background-color: #ffffff;
}

/* Hover-Effekt für Zeilen */
.lpnon-mod-table tr:hover td {
    background-color: #fce8e8; /* Dezenter Hover-Effekt */
}

/* Links innerhalb der Tabelle */
.lpnon-mod-table a {
    color: #cf001b;
    text-decoration: none;
}

.lpnon-mod-table a:hover {
    text-decoration: underline;
}