tor-browser

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

block-001-wm-vrl-print.html (814B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
      3 <link rel="help" href="https://www.w3.org/TR/css-break-3/">
      4 <link rel="match" href="block-001-wm-vrl-ref.html">
      5 <meta name="flags" content="paged">
      6 <meta name="fuzzy" content="maxDifference=0-60;totalPixels=0-200">
      7 <html>
      8 <style>
      9 @page {
     10  size: 5in 3in;
     11  margin: 0.5in;
     12 }
     13 
     14 :root {
     15  print-color-adjust: exact;
     16 }
     17 
     18 html,body {
     19  color:black; background-color:white; font:20px/1 monospace; padding:0; margin:0;
     20  writing-mode: vertical-rl;
     21 }
     22 html { block-size: 40vw; }
     23 
     24 .b {
     25  inline-size: 50vh;
     26  block-size: 210vw;
     27  box-sizing: border-box;
     28  border: 5px solid black;
     29  border-block-start-color: blue;
     30  border-inline-start-color: lime;
     31  margin-inline-start: 20px;
     32 }
     33 </style>
     34 <body>
     35  <div class="b"></div>
     36 </body>
     37 </html>