Home | History | Annotate | Download | only in resources
      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>Credits</title>
      6 <style>
      7 body {
      8   font-family:Helvetica,Arial,sans-serif;
      9   background-color:white;
     10   font-size:84%;
     11   max-width:1020px;
     12 }
     13 .page-title {
     14   font-size:164%;
     15   font-weight:bold;
     16 }
     17 .product {
     18   background-color:#c3d9ff;
     19   overflow:auto;
     20   padding:2px;
     21   margin-top:16px;
     22   border-radius:5px;
     23 }
     24 .product .title {
     25   font-size:110%;
     26   font-weight:bold;
     27   float:left;
     28   margin:3px;
     29 }
     30 .product .homepage {
     31   text-align:right;
     32   float:right;
     33   margin:3px;
     34 }
     35 .product .homepage:after {
     36   content:" - ";
     37 }
     38 .product .show {
     39   text-align:right;
     40   float:right;
     41   margin:3px;
     42 }
     43 .licence {
     44   clear:both;
     45   background-color:#e8eef7;
     46   padding:16px;
     47   border-radius:3px;
     48   display:none;
     49 }
     50 .licence h3 {
     51   margin-top:0px;
     52 }
     53 </style>
     54 <script>
     55 function $(o) {return document.getElementById(o);}
     56 function toggle(o) {
     57   var licence = o.nextSibling;
     58 
     59   while (licence.className != 'licence') {
     60     if (!licence) return false;
     61     licence = licence.nextSibling;
     62   }
     63 
     64   if (licence.style && licence.style.display == 'block') {
     65     licence.style.display = 'none';
     66     o.innerHTML = 'show license';
     67   } else {
     68     licence.style.display = 'block';
     69     o.innerHTML = 'hide license';
     70   }
     71   return false;
     72 }
     73 </script>
     74 </head>
     75 <body>
     76 <span class="page-title" style="float:left;">Credits</span>
     77 <a href="javascript:window.print();" style="float:right;">Print</a>
     78 <div style="clear:both; overflow:auto;"><!-- Chromium <3s the following projects -->
     79 {{entries}}
     80 </div>
     81 
     82 </body>
     83 </html>
     84