tor-browser

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

stub_common.css (678B)


      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  height: 100%;
      7  width: 100%;
      8  margin: 0;
      9  padding: 0;
     10  overflow: hidden;
     11 
     12  font-family: "Segoe UI", sans-serif;
     13 }
     14 
     15 /* This is an <img> rather than using background-image because IE8
     16 * does not support background-size. */
     17 #background {
     18  min-height: 100%;
     19  min-width: 100%;
     20 
     21  width: 100%;
     22  height: auto;
     23 
     24  position: fixed;
     25  top: 0;
     26  left: 0;
     27 
     28  z-index: -1;
     29 }
     30 
     31 body.high-contrast #background {
     32  display: none;
     33 }
     34 
     35 .no-focus-outline {
     36  outline: none;
     37 }