tor-browser

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

dimensions-009-print-ref.html (1040B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <meta name="flags" content="ahem">
      4 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
      5 <style>
      6  :root {
      7    print-color-adjust: exact;
      8    font: 16px/1 Ahem;
      9  }
     10  @page {
     11    margin: 0;
     12    width: 32em;
     13    height: 28em;
     14  }
     15  body {
     16    margin: 0;
     17  }
     18  .grid {
     19    display: grid;
     20    grid-template-columns: 6em auto 6em;
     21    grid-template-rows: 6em auto 6em;
     22    height: 100vh;
     23    overflow: clip;
     24  }
     25  .vertical-edge {
     26    display: flex;
     27  }
     28  .horizontal-edge {
     29    display: flex;
     30    flex-flow: column;
     31  }
     32 </style>
     33 <div class="grid">
     34  <div class="corner"></div>
     35  <div class="vertical-edge">
     36    <div style="width:7.5em; margin-bottom:4em; background:hotpink;">
     37      xxxxxxxxxxxxxxxxxx xxxxxxx
     38    </div>
     39    <div style="width:5em; margin-top:2em; margin-bottom:2em; background:cyan;">
     40     xxxxxxxxxxxx
     41    </div>
     42    <div style="width:7.5em; margin-top:4em; background:yellow;">
     43     xxxxxx
     44    </div>
     45  </div>
     46 </div>