tor-browser

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

_normalize.scss (314B)


      1 html {
      2  box-sizing: border-box;
      3 }
      4 
      5 *,
      6 *::before,
      7 *::after {
      8  box-sizing: inherit;
      9 }
     10 
     11 body {
     12  margin: 0;
     13 }
     14 
     15 button,
     16 input {
     17  background-color: inherit;
     18  color: inherit;
     19  font-family: inherit;
     20  font-size: inherit;
     21 }
     22 
     23 [hidden] {
     24  display: none !important; // stylelint-disable-line declaration-no-important
     25 }