tor-browser

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

text-crop-002-ref.xhtml (852B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <window
      3    xmlns:html="http://www.w3.org/1999/xhtml"
      4    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
      5  <html:style type="text/css">
      6    @font-face {
      7      font-family: firasans;
      8      src: url(../fonts/fira/FiraSans-Regular.otf);
      9    }
     10    hbox {
     11      font-family: firasans;
     12      font-size: 40px;
     13    }
     14    image {
     15      background-color: purple;
     16    }
     17    label {
     18      width: 230px;
     19      color: green;
     20      background-color: blue;
     21    }
     22    .with-padding {
     23      padding-inline: 10px 50px;
     24    }
     25  </html:style>
     26  <hbox style="width: 230px">
     27    <image style="width: 40px; height: 40px"/>
     28    <label value="abcd…xyz"/>
     29  </hbox>
     30  <hbox style="width: 230px">
     31    <image style="width: 40px; height: 40px"/>
     32    <label class="with-padding" value="abc…yz"/>
     33  </hbox>
     34 </window>