MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Earthdawn-Wiki.v4
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
 
(24 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 19: Zeile 19:
}
}
        
        
table.spalten th, td {
table.spalten th#talentoptionen, td#talentoptionen {
       float: left;
       float: left;
         width: 100%;
         width: 100%;
         max-width: calc(1000px / var(--spalten) - 0.5%);
         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;
}