K (Xineohp1506 verschob die Seite Vorlage:LPON/ModOutput/style.css nach Vorlage:LPON/ModOutput/styles.css, ohne dabei eine Weiterleitung anzulegen) |
Keine Bearbeitungszusammenfassung |
||
Zeile 7: | Zeile 7: | ||
border: 1px solid #cf001b; /* Rahmen in Hauptfarbe */ | border: 1px solid #cf001b; /* Rahmen in Hauptfarbe */ | ||
border-radius: 8px; | border-radius: 8px; | ||
} | } | ||
Zeile 16: | Zeile 15: | ||
font-weight: bold; | font-weight: bold; | ||
text-align: left; | text-align: left; | ||
border-bottom: | border-bottom: 1px solid #cf001b; /* Akzentlinie */ | ||
padding: 10px; | padding: 10px; | ||
} | } |
Version vom 3. Dezember 2024, 21:31 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-bottom: 1px solid #cf001b; /* Akzentlinie */
padding: 10px;
}
/* Zellen der Tabelle */
.lpnon-mod-table td {
border: 1px solid #ddd;
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;
}