style.css - static-site-scripts - static site generator shellscripts
 (HTM) git clone git://git.codemadness.org/static-site-scripts
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       style.css (913B)
       ---
            1 body {
            2         font-family: sans-serif, monospace;
            3         text-align: center;
            4         overflow-y: scroll;
            5         color: #333;
            6         background-color: #fff;
            7         margin: 0;
            8         padding: 0;
            9 }
           10 table {
           11         border: 0;
           12 }
           13 hr {
           14         height: 1px;
           15         color: #ccc;
           16         background-color: #ccc;
           17         border: 0;
           18 }
           19 h1 {
           20         font-size: 140%;
           21 }
           22 h2 {
           23         font-size: 120%;
           24 }
           25 h3 {
           26         font-size: 100%;
           27 }
           28 h1, h1 a, h1 a:visited,
           29 h2, h2 a, h2 a:visited,
           30 h3, h3 a, h3 a:visited,
           31 h1 a:hover, h2 a:hover, h3 a:hover {
           32         color: inherit;
           33         text-decoration: none;
           34 }
           35 table tr td {
           36         padding: 2px 10px 2px 0px;
           37 }
           38 pre {
           39         border: 1px dashed #777;
           40         background-color: #eee;
           41         padding: 5px;
           42         overflow-x: auto;
           43 }
           44 #menuwrap {
           45         background-color: #eee;
           46         padding: 1ex;
           47         border-bottom: 1px solid #ccc;
           48 }
           49 #main {
           50         padding: 1ex;
           51 }
           52 #menu,
           53 #main {
           54         margin: 0px auto;
           55         text-align: left;
           56         max-width: 80ex;
           57 }
           58 #menu a {
           59         font-weight: bold;
           60         vertical-align: middle;
           61 }
           62 #links-contact {
           63         float: right;
           64 }
           65 .hidden {
           66         display: none;
           67 }