Wechseln zu:Navigation, Suche
Wiki
KKeine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
 
(29 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
.wikitable2 {
.sptable {
  display: grid;
  grid-template-columns: 50% 50%;
  }
 
 
 
 
 
.wikitable2, .wikitable3 {
     background-color:white;
     background-color:white;
     color: #222;
     color: #222;
     margin: 1em 0;
     margin: 1em 0;
     border: 1px solid white;
     border: 1px solid white;
     border-collapse: collapse;
     border-collapse: separate;
     }
     }


.wikitable2 th {
.wikitable2 th, .wikitable3 th {
     background-color: #eaecf0;
     background-color: #eaecf0;
     }
     }


.wikitable2 td {
.wikitable2 th:before {
  background: salmon;
  }
 
.wikitable2 td, .wikitable3 td {
     background-color: #f8f9fa;
     background-color: #f8f9fa;
     border: 1px solid #a2a9b1;
     border: 1px solid #a2a9b1;
Zeile 19: Zeile 32:
     }
     }


.wikitable2 .Leerzeile {
 
.wikitable2 .Leerzeile, .wikitable3 .Leerzeile {
   border-left: solid 1px green;  
   border-left: solid 1px green;  
   border-right: solid 1px green;  
   border-right: solid 1px green;  
Zeile 25: Zeile 39:
   }
   }


td:empty {
  background: sandybrown;
  }


/* small */
/* small */
@media (max-width: 576px) {
@media (max-width: 576px) {
.container {
  display: grid;
  grid-template-columns: 100% 12.5% 12.5% 12.5%;
  }
/* .wikitable2 {
    border-collapse: separate;
    }*/
.wikitable2 th {
  float: left;
  }
.wikitable2 th:nth-child(1) {
  display: block;
  }


.wikitable2 td {
.wikitable2 td {
   display: block;
   display: block;
   background: lightgoldenrodyellow;
   empty-cells: hide!important;
  }
 
.wikitable3 th {
  float: left;
  }
 
.wikitable3 th:nth-child(1) {
  display: block;
  }
 
.wikitable3 td {
  float: left;
  min-width:30%;
  align-items: stretch;
  }
 
.wikitable3 td:nth-child(1) {
  display: block;
  }
 
.wikitable2 td:empty {
  display: block;
   empty-cells: hide!important;
   empty-cells: hide!important;
   }
   }
Zeile 37: Zeile 93:
.wikitable2 .Leerzeile {
.wikitable2 .Leerzeile {
   display: block;
   display: block;
  background:  paleturquoise;
/* background:  paleturquoise;*/
   empty-cells: hide!important;
   empty-cells: hide!important;
   }
   }


}
}

Aktuelle Version vom 9. Juli 2019, 17:13 Uhr

.sptable {
  display: grid;
  grid-template-columns: 50% 50%;
  }





.wikitable2, .wikitable3 {
    background-color:white;
    color: #222;
    margin: 1em 0;
    border: 1px solid white;
    border-collapse: separate;
    }

.wikitable2 th, .wikitable3 th {
    background-color: #eaecf0;
    }

.wikitable2 th:before {
  background: salmon;
  }

.wikitable2 td, .wikitable3 td {
    background-color: #f8f9fa;
    border: 1px solid #a2a9b1;
    padding: 0.2em 0.4em;
    line-height:1.9;
    empty-cells: hide;
    }


.wikitable2 .Leerzeile, .wikitable3 .Leerzeile {
  border-left: solid 1px green; 
  border-right: solid 1px green; 
  background: yellow;
  }

td:empty {
  background: sandybrown;
  }

/* small */
@media (max-width: 576px) {

.container {
  display: grid;
  grid-template-columns: 100% 12.5% 12.5% 12.5%;
  }

/* .wikitable2 {
    border-collapse: separate;
    }*/

.wikitable2 th {
  float: left;
  }

.wikitable2 th:nth-child(1) {
  display: block;
  }

.wikitable2 td {
  display: block;
  empty-cells: hide!important;
  }

.wikitable3 th {
  float: left;
  }

.wikitable3 th:nth-child(1) {
  display: block;
  }

.wikitable3 td {
  float: left;
  min-width:30%;
  align-items: stretch;
  }

.wikitable3 td:nth-child(1) {
  display: block;
  }

.wikitable2 td:empty {
  display: block;
  empty-cells: hide!important;
  }

.wikitable2 .Leerzeile {
  display: block;
/* background:  paleturquoise;*/
  empty-cells: hide!important;
  }


}