tor-browser

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

index.css (1372B)


      1 body {
      2 font-family: "Helvetica Neue", "Helvetica", sans-serif;
      3 line-height: 175%;
      4 font-size: 15px;
      5 padding: 20px;
      6 }
      7 
      8 p {
      9 margin: 0px;
     10 padding: 0px;
     11 }
     12 
     13 a {
     14 color: black;
     15 border-bottom: 1px solid #CCC;
     16 text-decoration: none;
     17 }
     18 
     19 a:hover {
     20 background-color: #FF9;
     21 }
     22 
     23 /* super headline */
     24 
     25 h1 {
     26 font-size: 30px;
     27 font-weight: bold;
     28 margin: 0px;
     29 padding: 0px 0px 20px 0px;
     30 }
     31 
     32 .mainNote {
     33 margin: 0px;
     34 padding: 15px 0px 15px 0px;
     35 border-top: 1px solid #CCC;
     36 }
     37 
     38 /* test category */
     39 
     40 h2.testCategory {
     41 padding: 5px 0px 5px 10px;
     42 margin: 40px 0px 14px 0px;
     43 color: white;
     44 background-color: black;
     45 font-size: 15px;
     46 font-weight: bold;
     47 
     48 }
     49 
     50 .testCategoryNote {
     51 background-color: #e6e6e6;
     52 padding: 5px 10px 5px 10px;
     53 }
     54 
     55 /* test case */
     56 
     57 .testCase {
     58 border-bottom: 3px solid black;
     59 margin: 15px 0px 0px 0px;
     60 padding: 0px 0px 15px 0px;
     61 }
     62 
     63 /* test case overview */
     64 
     65 .testCaseOverview {
     66 padding: 0px 0px 10px 0px;
     67 }
     68 
     69 .testCaseOverview h3 {
     70 font-size: 15px;
     71 font-weight: bold;
     72 margin: 0px;
     73 padding: 0px;
     74 }
     75 
     76 /* test case details */
     77 
     78 .testCaseDetails {
     79 border-top: 1px solid #CCC;
     80 padding: 10px 0px 0px 0px;
     81 }
     82 
     83 .testCaseDetails p {
     84 padding: 2px 0px 2px 0px;
     85 }
     86 
     87 /* test case pages */
     88 
     89 .testCasePages {
     90 float: left;
     91 width: 50%;
     92 }
     93 
     94 .testCasePages a {
     95 color: red;
     96 }
     97 
     98 /* test case expectations */
     99 
    100 .testCaseExpectations {
    101 display: inline-block;
    102 width: 50%;
    103 }