Home | History | Annotate | Download | only in package_hosting
      1 html, body
      2 {
      3     margin: 0;
      4     font-family: sans-serif;
      5 }
      6 
      7 a, a:visited, a:link, a:active {
      8     color: #2da6b0;
      9     text-decoration: none;
     10 }
     11 
     12 a:hover {
     13     color: #2da6b0;
     14     text-decoration: underline;
     15 }
     16 
     17 #topbar {
     18     background-color: #2da6b0;
     19     height: 60px;
     20     margin:auto;
     21 }
     22 
     23 #topbar .title {
     24     position: relative;
     25     top: 24px;
     26     left: 24px;
     27     color: white;
     28     font-family: sans-serif;
     29     font-weight: bold;
     30 }
     31 
     32 #main {
     33     max-width:1100px;
     34     margin:auto;
     35 }
     36 
     37 #main h2 {
     38     text-align: left;
     39 }
     40 
     41 #main table {
     42     width:100%;
     43     border-collapse: collapse;
     44     font-size: small;
     45     font-family: 'SF Mono', 'Menlo', 'Monaco', 'Courier New', Courier, monospace;
     46 }
     47 #main table tr td {
     48     border: solid black 1px;
     49     padding: 5px;
     50 }
     51 
     52 #main table tr td.hash {
     53     text-align: right;
     54     border-left: none;
     55     font-size: x-small;
     56 }
     57 
     58 #main table tr td.name {
     59     text-align: left;
     60     border-right: none;
     61 }
     62 
     63 p.description
     64 {
     65     font-size: smaller;
     66 }
     67 
     68 #metadata {
     69     margin-top: 15px;
     70     padding: 15px;
     71     font-family: 'SF Mono', 'Menlo', 'Monaco', 'Courier New', Courier, monospace;
     72 }
     73 
     74 #metadata span.fieldname {
     75     font-family: sans-serif;
     76 }