stagit

static git page - forked from git.codemadness.org/stagit
git clone git://src.gearsix.net/stagit
Log | Files | Refs | Atom | README | LICENSE

style-gearsix.css (557B)


      1 body {
      2   background-image: url(/background.png);
      3   background-repeat: repeat;
      4   
      5   color: #ccc;
      6   font-family: monospace;
      7   font-size: 11pt;
      8 }
      9 a {
     10   color: #8dc;
     11 }
     12 a:hover {
     13   text-shadow: 1px 1px 5px #8dc;
     14 }
     15 h1, h2 {
     16   margin: 0;
     17 }
     18 #logo {
     19   vertical-align: bottom;
     20 }
     21 hr {
     22   border-top: 0;
     23   border-bottom: dashed 1px white;
     24 }
     25 table td {
     26   padding: 0 1em;
     27   max-width: 60vw;
     28   vertical-align: top;
     29 }
     30 #content table tr:hover {
     31   background-color: #333;
     32 }
     33 pre {
     34   white-space: pre-wrap;
     35 }
     36 .line {
     37   text-decoration: none;
     38 }
     39 details {
     40   margin-bottom: 2em;
     41 }