MediaWiki:Common.css: Unterschied zwischen den Versionen
Erscheinungsbild
Admin (Diskussion | Beiträge) Die Seite wurde neu angelegt: „→Das folgende CSS wird für alle Benutzeroberflächen geladen.: .firstHeading, .subtitle, #siteSub, #contentSub, .pagetitle { display:none; } .zebratable{ width:auto; border-collapse:collapse; } .zebratable td{ padding:7px; border:#4e95f4 1px solid; } →provide some minimal visual accomodation for IE8 and below: .zebratable tr{ background: #b8d1f3; } →Define the background color for all the ODD background rows: .zebratable tr:nth…“ |
(kein Unterschied)
|
Aktuelle Version vom 2. März 2024, 17:46 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
.firstHeading, .subtitle, #siteSub, #contentSub, .pagetitle { display:none; }
.zebratable{
width:auto;
border-collapse:collapse;
}
.zebratable td{
padding:7px; border:#4e95f4 1px solid;
}
/* provide some minimal visual accomodation for IE8 and below */
.zebratable tr{
background: #b8d1f3;
}
/* Define the background color for all the ODD background rows */
.zebratable tr:nth-child(odd){
background: #b8d1f3;
}
/* Define the background color for all the EVEN background rows */
.zebratable tr:nth-child(even){
background: #dae5f4;
}
.zebratable_auto{
width: auto;
border-collapse:collapse;
}
.zebratable_auto td{
padding:7px; border:#4e95f4 1px solid;
}
/* provide some minimal visual accomodation for IE8 and below */
.zebratable_auto tr{
background: #b8d1f3;
}
/* Define the background color for all the ODD background rows */
.zebratable_auto tr:nth-child(odd){
background: #b8d1f3;
}
/* Define the background color for all the EVEN background rows */
.zebratable_auto tr:nth-child(even){
background: #dae5f4;
}
.greentable{
width: auto;
border-collapse:collapse;
}
.greentable td{
padding:7px; border:#4ef495 1px solid;
}
/* provide some minimal visual accomodation for IE8 and below */
greentable tr{
background: #b8f3d1;
}
/* Define the background color for all the ODD background rows */
.greentable tr:nth-child(odd){
background: #b8f3d1;
}
/* Define the background color for all the EVEN background rows */
.greentable tr:nth-child(even){
background: #daf4e5;
}
.gtable{
width: auto;
border: 1px solid gainsboro;
padding: 20px;
border-spacing: 10px;
border-collapse:collapse;
}
.gtable th{
padding:15px; border:#3ef495 1px solid;
}
.gtable td{
padding:7px; border:#4ef495 1px solid;
}
/* provide some minimal visual accomodation for IE8 and below */
gtable tr{
background: #b8f3d1;
}
/* Define the background color for all the ODD background rows */
.gtable tr:nth-child(odd){
background: #b8f3d1;
}
/* Define the background color for all the EVEN background rows */
.gtable tr:nth-child(even){
background: #daf4e5;
}