Advertisement
jille_Jr

VETA: Top of invoice

Nov 29th, 2013
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.77 KB | None | 0 0
  1. <style type="text/css">
  2.     body {
  3.         margin-top:75mm;
  4.         margin-left:5mm;
  5.         margin-right:5mm;
  6.         font:Calibri 14px;
  7.     }
  8.     /* div {border:dotted 1px;} */
  9.     /* Adress sized for window */
  10.     .window {
  11.         position: absolute;
  12.         top:30mm;
  13.         right:5mm;
  14.         width:75mm;
  15.         height:20mm;
  16.         padding:0px;
  17.         margin:0px;
  18.     }
  19.     /* Top half of title */
  20.     .title {
  21.         position:absolute;
  22.         width:75mm;
  23.         height:20mm;
  24.         top:7.5mm;
  25.         right:5mm;
  26.     }
  27.     /* Logo */
  28.     .logo {
  29.         position:absolute;
  30.         left:5mm;
  31.         top:7.5mm;
  32.         width:auto;
  33.         heigh:auto;
  34.     }
  35.     /* Reference */
  36.     .reference {
  37.         position:absolute;
  38.         top:55mm;
  39.         width:auto;
  40.     }
  41.     th {
  42.         text-align:left;
  43.     }
  44.     /* Your reference */
  45.     #ur_ref {
  46.         left:5mm;
  47.     }
  48.     /* Our reference */
  49.     #our_ref {
  50.         right:5mm;
  51.         width:75mm;
  52.     }
  53.     /* Factura */
  54.     #title {
  55.         font-size:26px;
  56.     }
  57.     /* Facturanr m.m. */
  58.     #titleinfo {
  59.         text-align:left;
  60.     }
  61. </style>
  62.  
  63. <div class="logo">
  64.     [Miscellaneous: Invoice/Survey logo]
  65. </div>
  66.  
  67. <div class="title">
  68.     <table cellpadding="0px" cellspacing="0px" width="100%">
  69.         <tr id="title">
  70.             <td width="100%" colspan="3">
  71.                 Faktura
  72.             </td>
  73.         </tr>
  74.         <tr id="titleinfo" align="center" valign="top">
  75.             <td>
  76.                 <strong>Fakturanr</strong><br>
  77.                 2013264
  78.             </td>
  79.             <td>
  80.                 <strong>Fakturadatum</strong><br>
  81.                 2013-11-15
  82.             </td>
  83.             <td>
  84.                 <strong>F&ouml;rfallodatum</strong><br>
  85.                 2013-11-25
  86.             </td>
  87.         </tr>
  88.     </table>
  89. </div>
  90.  
  91. <div class="window" id="titleinfo">
  92.     <strong>Fakturaadress</strong><br>
  93.     IT-relation ECTS AB<br>
  94.     Hammarby Fabriksv&auml;g 29-31<br>
  95.     120 30 Stockholm<br>
  96. </div>
  97.  
  98. <div class="reference" id="ur_ref">
  99.     <strong>Er referens</strong><br>
  100.     Peter Larsson
  101. </div>
  102.  
  103. <div class="reference" id="our_ref">
  104.     <strong>V&aring;r referens</strong><br>
  105.     Anders Jillheden
  106. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement