-
Notifications
You must be signed in to change notification settings - Fork 0
/
offert.html
150 lines (139 loc) · 3.51 KB
/
offert.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<html>
<head>
<style>
html, body {
padding: 0;
margin: 0;
font-family: 'Neuzeit S LT';
font-size: 16pt;
height:297mm;
width:210mm;
}
h1 {
font-family: 'DIN Condensed';
font-size: 16pt;
}
ul {
list-style-type: none;
}
ul > li:before {
content: "–"; /* en dash */
position: absolute;
margin-left: -1.1em;
}
table { border: none; }
#offert {
position: relative;
width: 100%;
height: 100%;
}
.offert { height: 100%; margin: 0 auto; }
.kerning { letter-spacing: 2px; }
.content_numbers {
position: absolute;
top: 47.5mm;
left: 150mm;
width: 20mm;
height: 20mm;
background-color: white;
font-size: 8pt;
line-height: 8pt;
text-align: right;
}
.content_orderer {
position: absolute;
top: 71mm;
left: 40mm;
width: 63mm;
height: 60mm;
background-color: white;
font-size: 8pt;
line-height: 8pt;
text-align: center;
}
.content_supplier {
position: absolute;
top: 71mm;
left: 106mm;
width: 64mm;
height: 60mm;
background-color: white;
font-size: 8pt;
line-height: 8pt;
text-align: center;
}
.content_articles {
position: absolute;
background-color: white;
width: 100%;
height: 50mm;
top: 147mm;
left: 32.5mm;
font-size: 8pt;
line-height: 16pt;
}
.content_totalprice {
position: absolute;
width: 100%;
top: 217mm;
height: 10mm;
background-color: white;
font-family: 'DIN Condensed';
font-size: 20pt;
line-height: 20pt;
text-align: center;
letter-spacing: 4px;
margin: 0 auto;
left: 0;
right: 0;
width: 50mm;
}
</style>
</head>
<body>
<div id="offert">
<img class="offert" src="offer.png" />
<div class="content_numbers">
<p>0000000</p>
<p>2018-01-01</p>
<p>2018-02-01</p>
</div>
<div class="content_orderer">
<p class="kerning">BESTÄLLARE</p>
<p>Företag AB</p>
<p>Gata 1</p>
<p>12525 Stockholm</p>
<br/><br/><br/>
<p class="kerning">ER REFERENS</p>
<p>Random Person</p>
<p>+46 70719 56 51</p>
<p>epost@foretag.se</p>
</div>
<div class="content_supplier">
<p class="kerning">LEVERANTÖR</p>
<p>Konglig Datasektionen</p>
<p>Att: Studs 2019, Fack vid THS</p>
<p>100 44 Stockholm</p>
<p>Org. nummer: 802412-7709 </p>
<br/>
<p class="kerning">VÅR REFERENS</p>
<p>Vem Då</p>
<p>+46 70719 56 51</p>
<p>epost@studieresan.se</p>
</div>
<div class="content_articles">
<ul>
<li>Ett event med Studs-gruppen.</li>
<li>Vi garanterar 30 deltagande datastudenter i slutet av sin utbildning.</li>
<li>Vi tillhandahåller CV-databas med alla medlemmar i Studs.</li>
<li>Ni tillhandahåller lokal, samt bjuder på mat och dryck.</li>
<li>Eventet pågår ca 3 timmar.</li>
<li>Eventet sker onsdagen den 18e januari 2018.</li>
</ul>
</div>
<div class="content_totalprice">
40000 SEK
</div>
</div>
</body>
</html>