tor-browser

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

window.css (821B)


      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  padding: 0;
      7  margin: 0;
      8  display: flex;
      9  height: 100vh;
     10 }
     11 
     12 /**
     13 * The main content of the BrowserToolbox runs within an iframe.
     14 */
     15 .devtools-toolbox-browsertoolbox-iframe {
     16  border: 0;
     17  width: 100%;
     18 }
     19 
     20 /**
     21 * Status message shows connection (to the backend) info messages.
     22 */
     23 #status-message-container {
     24  width: calc(100% - 10px);
     25  font-family: var(--monospace-font-family);
     26  padding: 5px;
     27  color: FieldText;
     28  background-color: Field;
     29 }
     30 
     31 #status-message-title {
     32  font-size: 14px;
     33  font-weight: bold;
     34 }
     35 
     36 #status-message {
     37  font-size: 12px;
     38  width: 100%;
     39  height: 200px;
     40  overflow: auto;
     41 }