tor-browser

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

installing_page.css (968B)


      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  color: white;
      7 }
      8 
      9 #label,
     10 #progress_background,
     11 #blurb {
     12  text-align: center;
     13  margin: 20px 30px;
     14 }
     15 
     16 #label {
     17  font-size: 40px;
     18  margin-top: 100px;
     19  margin-bottom: 20px;
     20 }
     21 
     22 #progress_background {
     23  margin: 0 auto;
     24  width: 60%;
     25  height: 24px;
     26  background-color: #f5cbf6;
     27  border-radius: 8px;
     28  padding: 3px;
     29 }
     30 
     31 body.high-contrast #progress_background {
     32  outline: solid;
     33 }
     34 
     35 #progress_bar {
     36  margin: 0;
     37  width: 0%;
     38  height: 100%;
     39  background-color: #7543e3;
     40  border-radius: 6px;
     41 }
     42 
     43 /* In high contrast mode, fill the entire progress bar with its border. */
     44 body.high-contrast #progress_bar {
     45  /* This border should be the height of progress_background. */
     46  border-top: 24px solid;
     47  box-sizing: border-box;
     48 }
     49 
     50 #blurb {
     51  font-size: 20px;
     52 }