tor-browser

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

external-variable-font-face.css (259B)


      1 @font-face {
      2  --a: MyTestFontName;
      3  font-family: var(--a);
      4  src: url(/fonts/Ahem.ttf);
      5 }
      6 @font-face {
      7  font-family: MyTestFontName2;
      8  src: url(/fonts/Ahem.ttf);
      9 }
     10 #a {
     11  font-family: MyTestFontName, serif;
     12 }
     13 #b {
     14  font-family: MyTestFontName2, serif;
     15 }