tor-browser

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

report.css (511B)


      1 table {
      2    border-collapse: collapse;
      3 }
      4 
      5 tbody {
      6    border-top: thin solid;
      7    border-bottom: thin solid;
      8 }
      9 
     10 .status {
     11    font-variant:small-caps;
     12    color:white;
     13    text-align:center;
     14    font-variant:small-caps;
     15 }
     16 
     17 .PASS, .OK {
     18    background-color:green;
     19 }
     20 
     21 .FAIL {
     22    background-color:red;
     23 }
     24 
     25 .ERROR, .NOTRUN, .NONE {
     26    background-color:black;
     27 }
     28 
     29 .TIMEOUT {
     30    background-color:blue;
     31 }
     32 
     33 td {
     34    padding:0.25em;
     35 }
     36 
     37 tr.test {
     38    background-color:#ddd;
     39 }
     40 
     41 tr.subtest {
     42    background-color:#eee;
     43 }