tor-browser

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

custom_theme.css (1427B)


      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 /* Increase the size of the content */
      6 .wy-nav-content {
      7  max-width: 80% !important;
      8 }
      9 
     10 /* Increase the size of the tables */
     11 table.docutils {
     12  width: 90%;
     13 }
     14 
     15 /* Override the default values for multiline text in a table */
     16 table.docutils td,
     17 table.docutils th {
     18  font-size: 16px !important;
     19 }
     20 
     21 .rst-content .line-block {
     22  margin-bottom: 0 !important;
     23 }
     24 
     25 /* Add the strikethrough feature */
     26 span.strikethrough {
     27  text-decoration: line-through;
     28 }
     29 
     30 /* Better control over the table on this page */
     31 .matcher-cookbook td {
     32  white-space: break-spaces !important;
     33 }
     34 
     35 .wy-table-responsive table td,
     36 .wy-table-responsive table th {
     37  white-space: normal;
     38 }
     39 
     40 img.center {
     41  display: block;
     42  margin: auto;
     43 }
     44 
     45 img.border {
     46  border: 1px solid black;
     47  display: block;
     48  margin: auto;
     49 }
     50 
     51 .center {
     52  text-align: center;
     53 }
     54 
     55 /* Keyboard shortcuts styling */
     56 kbd {
     57  background: linear-gradient(180deg, #f4f4f4, #d5d5d5);
     58  background-color: #f4f4f4;
     59  border: 1px solid #d5d5d5;
     60  border-radius: 6px;
     61  font-family: consolas, "Liberation Mono", courier, monospace;
     62  font-size: 0.9rem;
     63  font-weight: 700;
     64  line-height: 2.3;
     65  margin: 3px;
     66  padding: 4px 6px 1px 6px;
     67  white-space: nowrap;
     68 }
     69 
     70 table.docutils {
     71  width: 100%;
     72 }