🐙 Templated web page generator for your git repositories
git clone https://github.com/m-col/gitja
Files | Refs | Readme | License

-rw-r--r-- templates/base/style.css


      1 /*
      2 Static assets are copied unchanged into the output folder. This includes
      3 everything in this top-level folder that is not one of:
      4 
      5 - A folder named "repo".
      6 - A regular file ending in ".html".
      7 - A regular file ending in ".include".
      8 
      9 */
     10 
     11 @viewport {
     12     width: device-width;
     13     zoom: 1.0;
     14 }
     15 
     16 html {
     17     font-size: 1em;
     18     margin: 25px;
     19 }
     20 
     21 #clone {
     22     float: right;
     23 }
     24 
     25 .diff .add {
     26     color: #0a0;
     27 }
     28 
     29 .diff .sub {
     30     color: #a00;
     31 }
     32