tor-browser

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

result.css (849B)


      1 body {
      2  margin: 0;
      3  padding: 0;
      4  display: flex;
      5  justify-content: center;
      6  font-family: "Noto Sans", sans-serif;
      7  background-color: white;
      8  color: #000;
      9 }
     10 
     11 .header {
     12  display: flex;
     13  margin: 50px 0 30px 0;
     14 }
     15 
     16 .header :first-child {
     17  flex: 1;
     18 }
     19 
     20 .site-logo {
     21  max-width: 300px;
     22  margin-left: -15px;
     23 }
     24 
     25 .content {
     26  width: 1000px;
     27 }
     28 
     29 #test-path,
     30 #token {
     31  font-family: monospace;
     32  font-size: 12pt;
     33 }
     34 
     35 .pass {
     36  color: green;
     37 }
     38 
     39 .fail {
     40  color: red;
     41 }
     42 
     43 .timeout {
     44  color: rgb(224, 127, 0);
     45 }
     46 
     47 .not-run {
     48  color: blue;
     49 }
     50 
     51 .api-result-timeoutfiles {
     52  display: none; /* don't display for now */
     53  flex-basis: 100%;
     54 }
     55 
     56 #header {
     57  display: flex;
     58  align-items: center;
     59 }
     60 
     61 #header > :first-child {
     62  flex: 1;
     63 }
     64 
     65 #controls-wrapper {
     66  display: flex;
     67 }
     68 
     69 .no-border-radius {
     70  border-radius: 0;
     71 }
     72 
     73 #results-table .button {
     74  margin: 0 2px;
     75 }