tor-browser

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

816876-1-ref.xhtml (1053B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html xmlns="http://www.w3.org/1999/xhtml">
      7  <head>
      8    <style>
      9      .container {
     10        width: 40px;
     11        height: 14px;
     12        border: 2px solid green;
     13        margin-bottom: 2px;
     14      }
     15      .a {
     16          width: 16px;
     17          height: 10px;
     18          background: blue;
     19          min-width: 0;
     20          border: 2px solid lightblue;
     21      }
     22      .b {
     23          width: 16px;
     24          height: 10px;
     25          background: purple;
     26          min-width: 0;
     27          border: 2px solid slateblue;
     28      }
     29      .aKid {
     30          margin-left: 10px;
     31          margin-top: 2px;
     32          width: 16px;
     33          height: 6px;
     34          background: yellow;
     35          border: 1px solid black;
     36      }
     37      .a, .b { float: left; }
     38    </style>
     39  </head>
     40  <body>
     41    <div class="container">
     42      <div class="a"><div class="aKid"/></div>
     43      <div class="b"></div>
     44    </div>
     45 
     46  </body>
     47 </html>