gnunetbib

Bibliography (BibTeX, based on AnonBib)
Log | Files | Refs | README | LICENSE

pubs.css (2961B)


      1 SPAN.title {
      2   font-family: lucida, "Lucida Sans Unicode", Geneva, sans-serif;
      3   font-weight: bold;
      4 }
      5 
      6 SPAN.author {
      7   font-family: lucida, "Lucida Sans Unicode", Geneva, sans-serif;
      8   font-weight: normal;
      9 }
     10 
     11 SPAN.availability {
     12   font-family: lucidatypewriter, "Lucida Typewriter", Monaco, "Lucida Sans Unicode", monospace;
     13   font-weight: normal;
     14 }
     15 
     16 SPAN.author A {
     17   font-family: lucida, "Lucida Sans Unicode", Geneva, sans-serif;
     18   font-weight: normal;
     19 }
     20 
     21 SPAN.biblio {
     22   font-family: lucida, "Lucida Sans Unicode", Geneva, sans-serif;
     23   font-style: italic;
     24 }
     25 
     26 SPAN.biblio A {
     27   text-decoration: underline;
     28 }
     29 
     30 SPAN.bad {
     31   text-decoration: underline;
     32   color: #000;
     33   background-color: #FDF;
     34 }
     35 
     36 P.remarks {
     37   font-family: serif;
     38   margin-top: 0.3em;
     39   margin-bottom: 0;
     40   margin-left: 5em;
     41   padding-left: 0.5em;
     42   border-width: 0 0 0 5px;
     43   border-color: black;
     44   border-style: solid;
     45 }
     46 
     47 P.remarks A {
     48   text-decoration: underline;
     49 }
     50 
     51 P.l1 {
     52   margin-left: 0.5em;
     53 }
     54 
     55 P.l2 {
     56   margin-left: 1em;
     57   margin-top: 0.3em;
     58   margin-bottom: 0.3em;
     59 }
     60 
     61 P.entry {
     62   margin-top: 0.7em;
     63   margin-bottom: 0;
     64 }
     65 
     66 DIV.impEntry {
     67   border-width: 1px;
     68   border-color: black;
     69   border-style: solid;
     70   background-color: #FFE;
     71   padding: 0.3em;
     72   margin-top: 0.7em;
     73   margin-bottom: 0;
     74 }  
     75 
     76 P.impEntry {
     77   background-color: #FFE;
     78   padding: 0;
     79   margin-top: 0;
     80   margin-bottom: 0;
     81 }
     82 
     83 DIV.draftEntry {
     84  /*
     85   border-width: 1px;
     86   border-color: black;
     87   border-style: solid;
     88   padding: 0.3em;
     89   margin-top: 0.7em;
     90   margin-bottom: 0;
     91 */
     92 }  
     93 
     94 P.draftEntry {
     95  color: #555;
     96   padding: 0;
     97   margin-top: 0;
     98   margin-bottom: 0;
     99 }
    100 
    101 pre.bibtex, p.abstract {
    102     background-color: #F2EFE4;
    103     border-style: solid;
    104     border-color: #D4CBB6;
    105     border-radius: .3em;
    106     border-width: thin;
    107     overflow: auto;
    108     padding: 2em;
    109     font-size: smaller;
    110 }
    111     
    112 
    113 TABLE.sidebar {
    114   border-width: 2px;
    115   border-color: black;
    116   border-style: solid;
    117   background-color: #CFF;
    118   /* new: */
    119   border-collapse: collapse;
    120   margin: 0;
    121   padding: 0;
    122   table-layout: fixed;
    123 }
    124 
    125 TD.bibtex {
    126   font-family: lucidatypewriter, "Lucida Typewriter", Monaco, "Lucida Sans Unicode", monospace;  
    127   border-width: 2px;
    128   font-weight: normal; 
    129   border-color: black;
    130   border-style: solid;
    131   background-color: #DFF;
    132 }
    133 
    134 /* PRE.bibtex { */
    135 /*   font-family: lucidatypewriter, "Lucida Typewriter", Monaco, "Lucida Sans Unicode", monospace;  */
    136 /*   font-size: smaller; */
    137 /* } */
    138 
    139 
    140 @media screen and (max-width: 600px) {
    141     table thead {
    142         border: none;
    143         clip: rect(0 0 0 0);
    144         height: 1px;
    145         margin: -1px;
    146         overflow: hidden;
    147         padding: 0;
    148         position: absolute;
    149         width: 1px;
    150     }
    151     table tr {
    152         border-bottom: 1px solid black;
    153         display: block;
    154     }
    155 
    156     table td {
    157         border-bottom: 1px solid black;
    158         display: block;
    159         text-align: right;
    160     }
    161     table td::before {
    162         content: attr(data-label);
    163         float: right;
    164     }
    165 }