tor-browser

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

test.css (371B)


      1 .test_ok {
      2 color: green;
      3 display: none;
      4 }
      5 .test_not_ok {
      6 color: red;
      7 display: block;
      8 }
      9 
     10 .test_ok, .test_not_ok {
     11   border-bottom-width: 2px;
     12   border-bottom-style: solid;
     13   border-bottom-color: black;
     14 }
     15 
     16 .all_pass {
     17    background-color: lime;
     18 }
     19 
     20 .some_fail {
     21    background-color: red;
     22 }
     23 
     24 .tests_report {
     25 border-width: 2px;
     26 border-style: solid;
     27 width: 20em;
     28 }