MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Earthdawn-Wiki.v4
Die Seite wurde neu angelegt: „→‎Das folgende CSS wird für alle Benutzeroberflächen geladen.: #p-logo { height: 120px; width: 150px; overflow: visible; }“
 
Keine Bearbeitungszusammenfassung
 
(26 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 4: Zeile 4:
width: 150px;
width: 150px;
overflow: visible;
overflow: visible;
}
.zwei { --spalten:2; }
.drei { --spalten:3; }
.vier { --spalten:4; }
.fuenf { --spalten:5; }
.sechs { --spalten:6; }
.sieben { --spalten:7; }
.acht { --spalten:8; }
table.spalten {
        width: 100%;
        max-width: 1000px
}
     
table.spalten th#talentoptionen, td#talentoptionen {
      float: left;
        width: 100%;
        max-width: calc(1000px / var(--spalten) - var(--spalten) * 2.8px);
}
th {
hyphens: auto;
}
table.hyphens_auto_td td {
hyphens: auto;
}
}

Aktuelle Version vom 18. April 2022, 18:09 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
#p-logo {
	height: 120px;
	width: 150px;
	overflow: visible;
}

.zwei { --spalten:2; }
.drei { --spalten:3; }
.vier { --spalten:4; }
.fuenf { --spalten:5; }
.sechs { --spalten:6; }
.sieben { --spalten:7; }
.acht { --spalten:8; }

table.spalten {
        width: 100%;
        max-width: 1000px
}
      
table.spalten th#talentoptionen, td#talentoptionen {
      	float: left;
        width: 100%;
        max-width: calc(1000px / var(--spalten) - var(--spalten) * 2.8px);
}

th {
	hyphens: auto;
}

table.hyphens_auto_td td {
	hyphens: auto;
}