Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 49: | Zeile 49: | ||
display: flex; | display: flex; | ||
flex-wrap: wrap; | flex-wrap: wrap; | ||
gap: | gap: 10px; | ||
margin: | justify-content: flex-start; /* Links ausrichten */ | ||
align-items: center; /* Vertikale Ausrichtung */ | |||
margin: 10px 0; | |||
} | } | ||
.lpon-player-links { | .lpon-player-links { | ||
text-align: center; /* Zentriert nur den Inhalt im Container */ | |||
margin: 0; /* Kein zusätzlicher Abstand */ | |||
text-align: center; | |||
} | } | ||
.lpon-player-links a | .lpon-player-links span { | ||
color: #cf001b; | display: inline-block; /* Alle Links nebeneinander anzeigen */ | ||
} | |||
.lpon-player-links a { | |||
color: #cf001b; /* Farbe der Links */ | |||
font-size: 28px; /* Schriftgröße, wie angegeben */ | |||
text-decoration: none; /* Unterstrich entfernen */ | |||
} | } | ||
.lpon-player-links a:hover { | .lpon-player-links a:hover { | ||
text-decoration: underline; | text-decoration: underline; /* Unterstreichung bei Hover */ | ||
} | } | ||
.lpon | .lpon-links .plainlinks a { | ||
color: #cf001b !important; /* Überschreibt die Standardfarbe */ | |||
} | } | ||
Version vom 1. Dezember 2024, 17:41 Uhr
/* Infobox */
.lpnon-infobox {
border: 2px solid #cf001b;
background-color: #f9f9f9;
width: 250px;
margin: 10px 0;
float: right;
}
.lpnon-infobox .infobox-image {
text-align: center;
margin: 10px 0;
}
.lpnon-infobox .infobox-title {
font-weight: bold;
text-align: center;
color: #cf001b;
margin: 10px 0;
}
.lpnon-infobox .infobox-table {
width: 100%;
border-collapse: collapse;
margin: 0;
}
.lpnon-infobox .infobox-table th {
text-align: left;
padding: 5px;
background-color: #cf001b;
color: white;
}
.lpnon-infobox .infobox-table td {
padding: 5px;
}
/* Abschnitt für Beschreibungen */
.lpnon-description {
margin: 15px 0;
padding: 10px;
background-color: #fff3f3;
border-left: 5px solid #cf001b;
}
/* Spieler Links */
.lpon-links {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: flex-start; /* Links ausrichten */
align-items: center; /* Vertikale Ausrichtung */
margin: 10px 0;
}
.lpon-player-links {
text-align: center; /* Zentriert nur den Inhalt im Container */
margin: 0; /* Kein zusätzlicher Abstand */
}
.lpon-player-links span {
display: inline-block; /* Alle Links nebeneinander anzeigen */
}
.lpon-player-links a {
color: #cf001b; /* Farbe der Links */
font-size: 28px; /* Schriftgröße, wie angegeben */
text-decoration: none; /* Unterstrich entfernen */
}
.lpon-player-links a:hover {
text-decoration: underline; /* Unterstreichung bei Hover */
}
.lpon-links .plainlinks a {
color: #cf001b !important; /* Überschreibt die Standardfarbe */
}
/* Mods-Bereich */
.lpnon-mods {
margin: 20px 0;
padding: 10px;
background-color: #f5f5f5;
border: 1px dashed #cf001b;
}
/* Folgen-Bereich */
.lpnon-episodes {
margin: 20px 0;
padding: 10px;
background-color: #eef9ff;
border: 1px solid #cf001b;
}
/* Überschriften */
.lpnon-section-header {
font-weight: bold;
color: #cf001b;
margin-bottom: 10px;
}
/* Tabellen (falls benötigt) */
.lpnon-table {
width: 100%;
border-collapse: collapse;
margin: 15px 0;
}
.lpnon-table th, .lpnon-table td {
border: 1px solid #cf001b;
padding: 8px;
text-align: left;
}
.lpnon-table th {
background-color: #cf001b;
color: #fff;
font-weight: bold;
}