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

K (Xineohp1506 verschob die Seite Vorlage:LPON/ModOutput/style.css nach Vorlage:LPON/ModOutput/styles.css, ohne dabei eine Weiterleitung anzulegen)
Keine Bearbeitungszusammenfassung
 
(3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 7: Zeile 7:
     border: 1px solid #cf001b; /* Rahmen in Hauptfarbe */
     border: 1px solid #cf001b; /* Rahmen in Hauptfarbe */
     border-radius: 8px;
     border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
}


Zeile 16: Zeile 15:
     font-weight: bold;
     font-weight: bold;
     text-align: left;
     text-align: left;
     border-bottom: 2px solid #cf001b; /* Akzentlinie */
     border: 1px solid #cf001b; /* Akzentlinie */
     padding: 10px;
     padding: 10px;
}
}
Zeile 22: 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 */
Zeile 43: Zeile 42:


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

Aktuelle Version vom 3. Dezember 2024, 21:41 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,
.lpnon-mod-table a.external {
    color: #cf001b !important; 
    text-decoration: none; 
}

.lpnon-mod-table a {
    color: #cf001b;
    text-decoration: none;
}

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