tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

table-tentative.css (557B)


      1 /*
      2 Tables-ng test styling.
      3 
      4 Usage:
      5 
      6 <link rel="stylesheet" type="text/css" href="./support/table-tentative.css">
      7 <p class="testdesc">Short description here
      8  Analysis
      9 <p class="error">Current disagreements between browsers</p>
     10 */
     11 main td {
     12  padding: 0;
     13 }
     14 .error {
     15  color: #b70000;
     16 }
     17 p {
     18  margin-top:4px;
     19  margin-bottom:4px;
     20 }
     21 body {
     22  counter-reset: testid;
     23 }
     24 .testdesc {
     25  white-space: pre-line;
     26  margin-top: 16px;
     27 }
     28 .testdesc:before {
     29  content: counter(testid) ". ";
     30  counter-increment: testid;
     31 }
     32 .testdesc:first-line {
     33  font-family: monospace;
     34 }