tstyle.css - mars - superminimal static website framework
 (HTM) git clone git://parazyd.org/mars.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       tstyle.css (866B)
       ---
            1 body {
            2         background-color: #f4f5e7;
            3         margin: 0 15% 0 15%;
            4         font-size: 12pt;
            5         font-family: sans-serif, monospace;
            6 }
            7 
            8 pre code {
            9         font-family: monospace;
           10         font-size: 95%;
           11         line-height: 140%;
           12         white-space: pre;
           13         white-space: pre-wrap;
           14         white-space: -moz-pre-wrap;
           15         white-space: -o-pre-wrap;
           16 }
           17 
           18 code {
           19         background: #faf8f0;
           20 }
           21 
           22 #content {
           23         margin: 0 10% 0 10%;
           24 }
           25 
           26 #content code {
           27         display: block;
           28         padding: 0.5em 1em;
           29         border: 1px solid #bebab0;
           30 }
           31 
           32 #footer {
           33         text-align: right;
           34         font-size: 7pt;
           35 }
           36 
           37 #menu td {
           38         margin: 0;
           39         padding: 0;
           40         overflow: hidden;
           41         background-color: #393f4c;
           42 }
           43 
           44 #menu td a {
           45         display: block;
           46         color: #eee;
           47         text-align: center;
           48         padding: 14px 16px;
           49         text-decoration: none;
           50 }
           51 
           52 #menu td a:hover {
           53         background-color: #222;
           54 }
           55 
           56 a, a:visited, a:active {
           57         text-decoration: none;
           58         color: #fa1027;
           59 }
           60 
           61 a:hover {
           62         text-decoration: underline;
           63         color: #fa1027;
           64 }