stagit-responsive

My mobile friendly fork of stagit
Log | Files | Refs | README | LICENSE

style.css (1568B)


      1 body {
      2   color: #E3E0D7;
      3   background-color: #242424;
      4   font-family: monospace;
      5   -webkit-text-size-adjust: none;
      6 }
      7 
      8 h1, h2, h3, h4, h5, h6 {
      9   font-size: 1em;
     10   margin: 0;
     11 }
     12 
     13 img, h1, h2 {
     14   vertical-align: middle;
     15 }
     16 
     17 img {
     18   border: 0;
     19 }
     20 
     21 a {
     22   color: #8dbfff;
     23 }
     24 
     25 min, a:hover {
     26   color: #F9690E;
     27 }
     28 
     29 a:target, tr:target {
     30   outline: 0.03em solid grey;
     31   background-color: #303030;
     32 }
     33 
     34 a.d,
     35 a.h,
     36 a.i,
     37 a.line {
     38   text-decoration: none;
     39 }
     40 
     41 #blob a {
     42   color: #777;
     43 }
     44 
     45 #blob a:hover {
     46   color: #F9690E;
     47   background-color: #303030;
     48   text-decoration: none;
     49 }
     50 
     51 table th {
     52   font-weight: bold;
     53   text-align: left;
     54 }
     55 @media screen and (min-width: 600px) {
     56   table:not(#branches) th {
     57     text-align: center;
     58   }
     59 }
     60 
     61 table td, table th {
     62   padding: 0 0.4em;
     63 }
     64 
     65 #blob, div#table-scroll, div#pre-scroll {
     66   overflow: scroll;
     67   padding-bottom: 3em;
     68 }
     69 
     70 #content table td, #content table th {
     71   vertical-align: top;
     72   white-space: nowrap;
     73 }
     74 
     75 #branches tr:hover td,
     76 #tags tr:hover td,
     77 #index tr:hover td,
     78 #log tr:hover td,
     79 #files tr:hover td {
     80   background-color: #303030;
     81 }
     82 
     83 #index tr td:nth-child(2),
     84 #tags tr td:nth-child(3),
     85 #branches tr td:nth-child(3),
     86 #log tr td:nth-child(2) {
     87   white-space: normal;
     88 }
     89 
     90 th.num, td.num {
     91   text-align: right;
     92 }
     93 
     94 .desc {
     95   color: #777;
     96 }
     97 
     98 hr {
     99   border: 0;
    100   border-top: 1px solid #777;
    101   height: 1px;
    102 }
    103 
    104 pre {
    105   font-family: monospace;
    106 }
    107 
    108 pre a.h {
    109   color: #8DBFFF;
    110 }
    111 
    112 .A,
    113 #plus,
    114 span.i,
    115 pre a.i {
    116   color: #79D688;
    117 }
    118 
    119 .D,
    120 #min,
    121 span.d,
    122 pre a.d {
    123   color: #F9690E;
    124 }
    125 
    126 pre a.h:hover,
    127 pre a.i:hover,
    128 pre a.d:hover {
    129   text-decoration: none;
    130 }