summaryrefslogtreecommitdiff
path: root/res/gitweb.css
blob: 5cc5047a6de27bb8ebc0c22447e5ed8b9bd392ca (plain)
    1 body {
    2    color:#4f4b43;
    3    font-family:Oxygen-sans, sans-serif;
    4    background-color:#ddd;
    5    font-size:15px;
    6    margin:0px;
    7    padding:0px;
    8 }
    9 
   10 div.page_header {
   11   background:linear-gradient(to bottom, #444, #333, #333, #222);
   12   box-shadow:0px 0px 4px #4f4b43;
   13   height:73px;
   14   padding:5px;
   15   color:#cceeff
   16 }
   17 
   18 div.page_header a,
   19 div.page_header a:link,
   20 div.page_header a:visited{
   21   /*color: #abb;*/
   22   color:#66ccdd;
   23 }
   24 
   25 div.title {
   26   background:none;
   27 }
   28 
   29 div.header a,
   30 div.header a:link,
   31 div.header a:visited {
   32   margin-top:20px;
   33   background:#d0d0d0;
   34   color:#1188bb;
   35   border-left:3px solid #1188bb;
   36 }
   37 
   38 div.header a:hover {
   39   color:#000;
   40   border-left:3px solid #000;
   41 }
   42 
   43 div.page_body div.pre {
   44   background-color:#333;
   45   color:#eee;
   46 }
   47 
   48 /**
   49  * Log entry styles
   50  */
   51 div.log {
   52   color:#eee;
   53   background-color:#333;
   54   padding:7px;
   55   border:1px dotted #ccc;
   56 }
   57 
   58 /**
   59  * Patchset styles
   60  */
   61 div.patchset div.patch {
   62   border:1px solid #999;
   63 }
   64 
   65 div.patchset div.patch div.header {
   66   color:#333;
   67 }
   68 
   69 div.patchset div.patch div.extended_header,
   70 div.patchset div.patch div.extended_header span.info {
   71   color:#555;
   72 }
   73 
   74 div.patchset div.patch {
   75   background-color:#222;
   76   color:#eee;
   77 }
   78 
   79 div.patchset div.to_file,
   80 div.patchset div.add {
   81   color:#77ee77;
   82 }
   83 
   84 div.patchset div.add span.marked {
   85   background-color:#224422;
   86 }
   87 
   88 div.patchset div.from_file,
   89 div.patchset div.rem {
   90   color:#ee7777;
   91 }
   92 
   93 div.patchset div.rem span.marked {
   94   background-color:#442222;
   95 }
   96 
   97 a,
   98 a:visited {
   99    color:#107d8e;
  100 }
  101 
  102 h1 {
  103   color:#006d7e;
  104   font-family:Oxygen-sans, sans-serif;
  105 }
  106 
  107 h2 {
  108   color:#107d8e;
  109   font-family:Oxygen-sans, sans-serif;
  110 }
  111 
  112 h3, h4 {
  113   color:#309dae;
  114   font-family:Oxygen-sans, sans-serif;
  115 }
  116 
  117 span.monospaced {
  118   font-family:mono;
  119   background-color:#e0e0e0;
  120   padding:2px;
  121   border:1px solid #bbb;
  122   border-radius:3px;
  123 }
  124 
  125 
  126 img {
  127   border:1px solid #888;
  128   border-radius:5px;
  129 }
  130 
  131 div.quoteblock,
  132 pre {
  133   background-color:#f5fcff;
  134   border:1px dotted #999;
  135   padding:5px 15px 7px 15px;
  136   border-radius:5px;
  137   margin:5px 0px;
  138   color:#555;
  139   font-size:1.0em;
  140   display:inline-block;
  141 }
  142 
  143 pre {
  144   display:block;
  145   overflow:auto;
  146 }
  147 
  148 blockquote {
  149   background-color:#eee;
  150   padding:5px;
  151   border:1px dotted #aaa;
  152   border-radius:4px;
  153   margin-top:10px;
  154   margin-bottom:10px;
  155 }
  156 
  157 
  158 /**
  159  * Table styles
  160  */
  161 table { border-collapse: collapse; }
  162 
  163 table td, table th {
  164   border: 1px solid #999;
  165   padding:1px 5px;
  166   background-color:#f5f5f5;
  167 }
  168 
  169 /**
  170  * Projects_list table styles
  171  */
  172 
  173 table.projects_list {
  174   margin-bottom:15px;
  175   width:90%;
  176   border-left:3px solid #777;
  177 }
  178 
  179 table.projects_list tr td {
  180   color:#444;
  181   border:none;
  182   vertical-align:bottom;
  183   background:none;
  184 }
  185 
  186 table.projects_list tr td:first-child {
  187   color:#222;
  188   font-weight:800; 
  189   font-size:1.1em;
  190   border-right:2px dotted #aaa;
  191   text-align:left;
  192   width:130px;
  193 }
  194 
  195 
  196 /**
  197  * Shortlog table styles
  198  */
  199 table.shortlog {
  200   border: 1px solid #999;
  201   background-color:#f5f5f5;
  202   width:100%;
  203 }
  204 
  205 table.project_list tr td.link,
  206 table.shortlog tr td.link {
  207   font-size:.8em;
  208 }
  209 
  210 
  211 table.project_list {
  212   width:80%;
  213   margin-left:auto;
  214   margin-right:auto;
  215 }
  216 
  217 table.project_list tr td {
  218   vertical-align: bottom;
  219 }
  220 
  221 table.project_list tr td:first-child {
  222   font-weight:800;
  223 }

Generated by cgit