Crosstable

A simple web-app for tournament-crosstables, for example in chess round tournament (each vs each).
git clone git://git.oshgnacknak.de/Crosstable.git
Log | Files | Refs | README

style.css (365B)


      1 body {
      2   font-size: 24px;
      3   margin: 0;
      4 }
      5 
      6 noscript {
      7   overflow: hidden;
      8   position: absolute;
      9   top: 0;
     10   left: 0;
     11   width: 100%;
     12   height: 100%;
     13   background: lightgray;
     14   text-align: center;
     15 }
     16 
     17 table * {
     18   padding: 2px 5px;
     19 }
     20 
     21 
     22 table tr:nth-child(2n) {
     23   background: lightgray;
     24 }
     25 
     26 *:not(.printable *, .printable) {
     27   display: none;
     28 }