/ static / css / default.css
default.css
  1  html {
  2      background-color: #f8f8f8;
  3      font-size: 16px;
  4      font-color: #666;
  5      font-weight: 400;
  6      line-height: 24px;
  7  }
  8  
  9  body {
 10      background-color: #f8f8f8;
 11      color: #666666;
 12      font-size: 16px;
 13      font-family: Avenir, 'Open Sans', sans-serif;
 14      font-weight: 400;
 15      margin: 0px auto 0px auto;
 16  }
 17  
 18  div#header {
 19  
 20  }
 21  
 22  div#logo a {
 23      float: left;
 24      font-size: 18px;
 25      font-weight: bold;
 26      text-decoration: none;
 27  }
 28  
 29  div#header #navigation {
 30      text-align: left;
 31      border-right: 1px solid #f8f8f8;
 32      border-bottom: 1px solid #f8f8f8;
 33      box-shadow: 1px 2px 2px #f8f8f8;
 34  }
 35  
 36  div#header #navigation a {
 37      font-size: 18px;
 38      text-decoration: none;
 39  }
 40  
 41  div#header #navigation img {
 42      height: 48px;
 43      padding-top: 5px;
 44  }
 45  
 46  #navigation i {
 47      color: #666;
 48  }
 49  
 50  div#footer {
 51      font-family: Inconsolata, Courier, monospace;
 52      font-size: 12px;
 53      padding: 12px 0px 12px 135px;
 54      text-align: left;
 55      margin-right: 30px;
 56  }
 57  
 58  h1 {
 59      font-size: 24px;
 60  }
 61  
 62  h2 {
 63      font-size: 20px;
 64  }
 65  
 66  div.info {
 67       font-size: 14px;
 68      font-style: italic;
 69  }
 70  
 71  pre {
 72      padding-left: 5px;
 73      font-size: 14px;
 74      overflow: auto;
 75      /* background-color: #ccc; */
 76      border-radius: 5px;
 77      box-shadow: 1px 1px 5px #888;
 78      white-space: pre-wrap;
 79  }
 80  
 81  code {
 82      padding-left: 5px;
 83      padding-right: 3px;
 84      border-radius: 5px;
 85      border: 1px solid #ccc;
 86      line-height: 1em;
 87  }
 88  
 89  pre code {
 90      padding-left: 0px;
 91      box-shadow: 0px 0px 0px #000 !important;
 92      border: 0px solid #ccc;
 93  }
 94  
 95  blockquote p {
 96      box-shadow: 1px 1px 5px #888;
 97      padding: 4px;
 98      font-style: italic;
 99  }
100  
101  .tags {
102      text-decoration: italic;
103  }
104  
105  table {border-collapse:collapse}
106  tbody tr:hover {background-color:#fbf6d9}
107  thead tr {background-color:#f1f1f1}
108  tbody tr {border-bottom:2px solid #f1f1f1}
109  td, th {padding: 5px; vertical-align:top}
110  thead th {vertical-align:bottom}