einige haben das wohl schon probiert
hab noch etwas weitergebastelt
wechselnder Zeilenhintergrund, Seite etwas entlastet, springende Punktespalte korrigiert, darkmode nicht mehr ganz so dark
Gruppenspielplan und Meldungen hab ich noch nicht angesehen, die funktionieren in der Staffel nicht
Zuschauer

small
der untere Teil ist jetzt auch weg, wie bei den anderen Seiten
Tabelle
Bilanzen (fragt sich, ob das überall funktioniert, weil es keine einziges id-Attribut auf der Seite gibt, evtl andere Mannschaftsgrößen --> anderer Seitenaufbau), der unter Teil ist jetzt auch weg wie bei den anderen

small
hier der Code zum copy-paste
Zitat:
/* Darkmode */
body,table,td,th,button,header,footer,div
{
background-color: #222222;
color: white;
}
table
{
width: 100%;
}
/* Erste Zeile einer Tabelle mit den Bezeichnungen der Spalten */
th
{
padding: 0;
font-size: 13px;
min-width: 0;
}
td,td.a,strong
{
padding:0;
font-size: 12px;
font-weight: normal;
min-width: 0;
}
/* Staffel */
h1 {
font-size: 16px;
}
/* Spielsystem */
dd,dt
{
font-size:14px;
}
/* Taballenüberschriften */
h2
{
font-size: 14px;
border-color: #555555;
}
button, span, a
{
background-color: transparent;
color: white;
font-size: 12px;
}
td a
{
text-decoration: underline;
text-decoration-style: dotted;
}
div
{
font-size: 14px;
margin: 1px;
padding: 1px;
}
/* Überflüssiges Zeugs */
/* meist Werbung */
video
{
display: none;
}
/* Bild der Andro Rangliste mitten auf der Seite */
img[alt="Andro Ranking"]
{
display: none;
}
/* Logos unten an jeder Seite */
aside[aria-label="Partners"]
{
display: none;
}
/* Footer */
footer
{
display: none;
}
/* Die Punkte-Spalte von Staffeltabellen sind von mytt Standardmäßig auf display:block; gesetzt, außerdem springt die Spalte bei kleineren Displays in die Mitte, dies wird nun verhindert */
.lg\:block
{
display: table-cell;
}
.lg\:hidden
{
display: none;
}
/* Tabelle einer Staffel */
table[aria-labelledby="leagueTableHeading"] tr:nth-child(odd) td, table[aria-labelledby="leagueTableHeading"] tr:nth-child(odd) td div
/* in der Spalte "Rang" wird die Rangposition in einem div angezeigt */
{
background-color: #444444;
}
/* Spielplan unterhalb der Tabelle */
table[aria-describedby="schedule"] tr:nth-child(odd) td
{
background-color: #444444;
}
/* Seite "Bilanzen" */
.mb-16 h3
{
margin: 0;
padding: 5px 25px;
background-color: #555555;
}
/* Vereinsname */
.mb-16 h3 a div
{
font-size: 14px;
background-color: #555555;
}
.mb-16 table tr:nth-child(odd) td
{
background-color: #444444;
}
/* Zeile "Summe Einzel" in Fettschrift */
.mb-16 table tr.border-gray-200 td
{
font-weight: bold;
}
/* Zeile "Summe Doppel" in Fettschrift */
.mb-16 table tr:nth-last-child(2) td
{
font-weight: bold;
}
/* Letzte Zeile "Gesamt" in Fettschrift */
.mb-16 table tr:last-child td
{
font-weight: bold;
}
/* Zuschauer */
h2#matrixHeading
{
font-size: 16px;
text-align: center;
margin: 15px 0;
padding: 15px 25px;
background-color: #555555;
}
table[aria-labelledby="matrixHeading"] tr:nth-child(odd) td
{
background-color: #444444;
}
h2#leagueTableHeading, h2#schedule
{
width: 100%;
text-align: center;
margin: 0;
padding: 15px 0;
background-color: #555555;
}
|