tor-browser

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

test_WebCrypto.css (1436B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 body {
      6  font-family:
      7    Helvetica Neue,
      8    Helvetica,
      9    Trebuchet MS,
     10    Sans-serif;
     11  font-size: 12pt;
     12  text-align: center;
     13 }
     14 
     15 a {
     16  color: #ff9500;
     17  text-decoration: none;
     18 }
     19 
     20 a:hover {
     21  text-decoration: underline;
     22 }
     23 
     24 #content {
     25  width: 50em;
     26  margin-left: auto;
     27  margin-right: auto;
     28  text-align: left;
     29 }
     30 
     31 #head {
     32  font-family:
     33    Helvetica Neue,
     34    Helvetica,
     35    Trebuchet MS,
     36    Sans-serif;
     37  font-size: 300%;
     38  font-weight: lighter;
     39  padding: 0.2ex;
     40  padding-bottom: 0;
     41  margin-bottom: 0.5ex;
     42  border-bottom: 10px solid #ff9500;
     43 }
     44 #head b {
     45  font-weight: bold;
     46  color: #ff9500;
     47 }
     48 
     49 div.content {
     50  font-family:
     51    Helvetica Neue,
     52    Helvetica,
     53    Trebuchet MS,
     54    Sans-serif;
     55  color: #000;
     56  margin: 2ex;
     57 }
     58 
     59 #foot {
     60  border-bottom: 1ex solid #ff9500;
     61  margin-top: 2ex;
     62 }
     63 
     64 /*------------------------------------------*/
     65 
     66 #start {
     67  background: #ff9500;
     68  color: #fff;
     69  text-align: center;
     70  font-weight: bold;
     71  padding: 1em 0 1em 0;
     72  width: 50em;
     73  cursor: pointer;
     74 }
     75 
     76 #results {
     77  text-align: left;
     78  width: 48em;
     79  border: 1px solid black;
     80 }
     81 
     82 .pass {
     83  font-weight: bold;
     84  color: #00539f;
     85 }
     86 
     87 .fail {
     88  font-weight: bold;
     89  color: #ff9500;
     90 }
     91 
     92 .pending {
     93  font-weight: bold;
     94  color: #666;
     95 }