_brief.html 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. <div class="page grid" orientation="portrait" size="A4">
  2. <span class="falzmarke-oben">––</span>
  3. <span class="falzmarke-unten">––</span>
  4. <div class="seitenlogo">
  5. <img src="daten/traeger_logo.svg" height="160px" alt="traeger_logo" />
  6. </div>
  7. <div class="header">
  8. <img class="logo" src="daten/bk_logo.svg" alt="Briefkopf" />
  9. <hr class="hr-rot hr" />
  10. </div>
  11. <div class="main">
  12. <div class="sidebar">
  13. <div class="sidebar-oben">
  14. Am Zionswald 12<br />33617 Bielefeld
  15. <div class="voffset-1"></div>
  16. Telefon 0521 144-2467<br />Telefax 0521 144-2470<br />berufskolleg@fvbschulen.de<br />www.berufskolleg-bethel.de
  17. <div class="voffset-1"></div>
  18. Bürozeiten:<br />Mo. und Do.<br />07:15 – 12:30 Uhr<br />13:30 – 15:30 Uhr<br />Di., Mi. und Fr.<br />07:15 – 13:30 Uhr
  19. <div class="voffset-1"></div>
  20. {(new Date().toLocaleDateString('de', {day: '2-digit', month: '2-digit', year: 'numeric'}))}<br />
  21. <slot name="kuerzel"></slot>
  22. </div>
  23. <div class="sidebar-unten">
  24. Unsere Bildungsgänge:
  25. <div class="voffset-1"></div>
  26. <b>Berufliches Gymnasium</b><br />Erziehung und Soziales<br />(Erzieher_in / AHR)
  27. <div class="voffset-1"></div>
  28. <b>Fachschulen</b><br />Sozialpädagogik<br />Heilerziehungspflege<br />Heilpädagogik<br />Heilpädagogische Förderung<br />mit dem Pferd
  29. <div class="voffset-1"></div>
  30. <b>Fachoberschule</b><br />Gesundheit und Soziales
  31. <div class="voffset-1"></div>
  32. <b>Berufsfachschulen</b><br />Sozialassistenz/<br />Heilerziehung
  33. <div class="voffset-1"></div>
  34. <b>Weitere Informationen:</b><br />www.berufskolleg-bethel.de
  35. </div>
  36. </div>
  37. <div class="links">
  38. <div class="absender">
  39. v.Bodelschwinghsche Stiftungen Bethel<br /><b>Berufskolleg Bethel </b>· Postfach 130 160 · 33544 Bielefeld
  40. </div>
  41. <div class="anschrift">
  42. <slot name="anschrift"></slot>
  43. </div>
  44. <div class="anschreiben">
  45. <slot></slot>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. <style>
  51. .page {
  52. font-size: 1.2em;
  53. line-height: 1.5;
  54. font-weight: normal;
  55. font-family: "Tex Gyre Heros";
  56. color: #333;
  57. position: relative;
  58. padding: 0;
  59. display: block;
  60. }
  61. .grid {
  62. display: grid;
  63. align-content: stretch;
  64. grid-template-rows: 35mm auto;
  65. grid-template-areas:
  66. "header"
  67. "main";
  68. }
  69. .header {
  70. display: grid;
  71. grid-area: header;
  72. align-self: start;
  73. margin-left: 24.1mm;
  74. margin-right: 8.1mm;
  75. grid-template-columns: auto;
  76. grid-template-rows: auto;
  77. grid-template-areas:
  78. "logo"
  79. "hr";
  80. }
  81. .logo {
  82. justify-content: end;
  83. margin-top: 10mm;
  84. grid-area: logo;
  85. margin-left: auto;
  86. }
  87. .hr {
  88. grid-area: hr;
  89. align-self: end;
  90. }
  91. .main {
  92. grid-area: main;
  93. align-content: stretch;
  94. display: grid;
  95. grid-template-columns: 2fr 1fr;
  96. height: 100%;
  97. grid-template-areas:
  98. "links sidebar";
  99. }
  100. .links {
  101. display: grid;
  102. grid-area: links;
  103. grid-template-rows: 10mm 40mm auto;
  104. margin-bottom: 10mm;
  105. grid-template-areas:
  106. "absender"
  107. "anschrift"
  108. "anschreiben";
  109. }
  110. .absender {
  111. grid-area: absender;
  112. font-size: 7.5pt;
  113. margin-left: 20mm;
  114. }
  115. .anschrift {
  116. grid-area: anschrift;
  117. font-size: 11pt;
  118. margin-left: 25mm;
  119. }
  120. .anschreiben {
  121. grid-area: anschreiben;
  122. font-size: 11pt;
  123. margin-left: 25mm;
  124. width: 115mm;
  125. }
  126. .sidebar {
  127. display: grid;
  128. margin-right: 8.1mm;
  129. justify-self: end;
  130. grid-area: sidebar;
  131. margin-bottom: 10mm;
  132. grid-template-rows: auto;
  133. grid-template-areas:
  134. "sidebar-oben"
  135. "sidebar-unten";
  136. }
  137. .sidebar-oben {
  138. grid-area: sidebar-oben;
  139. align-self: start;
  140. }
  141. .sidebar-unten {
  142. grid-area: sidebar-unten;
  143. align-self: end;
  144. }
  145. .flex-grid {
  146. display: flex;
  147. }
  148. .col {
  149. flex: 1;
  150. }
  151. .col-2 {
  152. flex: 2;
  153. }
  154. @import url(normalize.css);
  155. @font-face {
  156. font-family: 'TeX Gyre Heros';
  157. src: url("texgyreheros-regular-webfont.woff") format("woff");
  158. font-style: normal;
  159. }
  160. @font-face {
  161. font-family: 'TeX Gyre Heros';
  162. src: url("texgyreheros-bold-webfont.woff") format("woff");
  163. font-style: normal;
  164. font-weight: bold;
  165. }
  166. @font-face {
  167. font-family: 'TeX Gyre Heros';
  168. src: url("texgyreheros-italic-webfont.woff") format("woff");
  169. font-style: italic;
  170. }
  171. @font-face {
  172. font-family: 'TeX Gyre Heros';
  173. src: url("texgyreheros-bolditalic-webfont.woff") format("woff");
  174. font-style: italic;
  175. font-weight: bold;
  176. }
  177. @media print {
  178. * {
  179. -webkit-print-color-adjust: exact;
  180. }
  181. .page {
  182. page-break-after: always;
  183. page-break-inside: avoid;
  184. margin: 0;
  185. }
  186. }
  187. /*
  188. Da *named pages*, also z.B. @page a3landscape noch nicht von Chrome
  189. unterstützt werden, gilt vorerst die Standard-Einstellung von A4 Portrait.
  190. Um andere Formate zu erzeugen, muss die Größe in den svelte-Koponenten
  191. als setup-Einstellung hinterlegt werden. Oder man verwendet ein besonderes CSS
  192. mit der anderen Einstellung.
  193. Dazu bitte ein @import 'nicht_a4_portrait.css' verwenden. Svelte ignoriert sonst
  194. die in den <style> tags hinterlegten @... Anweisungen.
  195. Link: https://www.w3.org/TR/css3-page/#using-named-pages
  196. */
  197. .page[size="A4"][orientation="portrait"] {
  198. page: a4portrait;
  199. width: 210mm;
  200. height: 296.8mm;
  201. }
  202. @page a4portrait {
  203. margin: 0;
  204. size: A4 portrait;
  205. }
  206. .page[size="A4"][orientation="landscape"] {
  207. page: a4landscape;
  208. width: 296.8mm;
  209. height: 210mm;
  210. }
  211. @page a4landscape {
  212. margin: 0;
  213. size: A4 landscape;
  214. }
  215. .page[size="A3"][orientation="portrait"] {
  216. page: a3portrait;
  217. width: 296.8mm;
  218. height: 420mm;
  219. }
  220. @page a3portrait {
  221. margin: 0;
  222. size: A3 portrait;
  223. }
  224. .page[size="A3"][orientation="landscape"] {
  225. page: a3landscape;
  226. width: 420mm;
  227. height: 296.8mm;
  228. }
  229. @page a3landscape {
  230. margin: 0;
  231. size: A3 landscape;
  232. }
  233. .page[size="A5"][orientation="portrait"] {
  234. page: a5portrait;
  235. width: 148mm;
  236. height: 210mm;
  237. }
  238. @page a5portrait {
  239. margin: 0;
  240. size: A5 portrait;
  241. }
  242. .page[size="A5"][orientation="landscape"] {
  243. page: a5landscape;
  244. width: 210mm;
  245. height: 148mm;
  246. }
  247. @page a5landscape {
  248. margin: 0;
  249. size: A5 landscape;
  250. }
  251. @media screen {
  252. .page {
  253. border: 1px solid black;
  254. box-shadow: 5px 5px 4px 0 silver;
  255. }
  256. }
  257. svelte {
  258. font-size: 62.5%;
  259. }
  260. /* Typography */
  261. h1, h2, h3, h4, h5, h6 {
  262. margin-top: 0;
  263. margin-bottom: 0;
  264. font-weight: 400;
  265. }
  266. h1 {
  267. font-size: 4.0em;
  268. line-height: 1.2;
  269. letter-spacing: -.1em;
  270. }
  271. h2 {
  272. font-size: 3.6em;
  273. line-height: 1.25;
  274. letter-spacing: -.1em;
  275. }
  276. h3 {
  277. font-size: 3.0em;
  278. line-height: 1.3;
  279. letter-spacing: -.1em;
  280. }
  281. h4 {
  282. font-size: 2.4em;
  283. line-height: 1.35;
  284. letter-spacing: -.08em;
  285. }
  286. h5 {
  287. font-size: 1.8em;
  288. line-height: 1.5;
  289. letter-spacing: -.05em;
  290. }
  291. h6 {
  292. font-size: 1.5em;
  293. line-height: 1.6;
  294. letter-spacing: 0;
  295. }
  296. p {
  297. margin-top: 0;
  298. }
  299. .voffset-halb {
  300. margin-top: 0.5em;
  301. }
  302. .voffset-1 {
  303. margin-top: 1em;
  304. }
  305. .voffset-2 {
  306. margin-top: 2em;
  307. }
  308. .voffset-3 {
  309. margin-top: 3em;
  310. }
  311. .voffset-4 {
  312. margin-top: 4em;
  313. }
  314. .voffset-5 {
  315. margin-top: 5em;
  316. }
  317. .voffset-6 {
  318. margin-top: 6em;
  319. }
  320. .voffset-7 {
  321. margin-top: 7em;
  322. }
  323. .voffset-8 {
  324. margin-top: 8em;
  325. }
  326. .voffset-9 {
  327. margin-top: 9em;
  328. }
  329. .voffset-10 {
  330. margin-top: 10em;
  331. }
  332. .voffset-11 {
  333. margin-top: 11em;
  334. }
  335. .voffset-12 {
  336. margin-top: 12em;
  337. }
  338. .voffset-13 {
  339. margin-top: 13em;
  340. }
  341. .voffset-14 {
  342. margin-top: 14em;
  343. }
  344. .voffset-15 {
  345. margin-top: 15em;
  346. }
  347. .voffset-16 {
  348. margin-top: 16em;
  349. }
  350. .voffset-17 {
  351. margin-top: 17em;
  352. }
  353. .voffset-18 {
  354. margin-top: 18em;
  355. }
  356. .voffset-19 {
  357. margin-top: 19em;
  358. }
  359. .voffset-20 {
  360. margin-top: 20em;
  361. }
  362. .text-center {
  363. text-align: center !important;
  364. }
  365. hr {
  366. border: 0;
  367. border-top: 1px solid #eee;
  368. border-color: #000;
  369. height: 1px;
  370. margin: 3px 0;
  371. }
  372. .hr-rot {
  373. border-color: #ff2700;
  374. margin: 8px 0;
  375. }
  376. .hr-grau {
  377. border-color: #646464 !important;
  378. }
  379. .falzmarke-oben {
  380. position: absolute;
  381. top: 105mm;
  382. left: 10mm;
  383. }
  384. .falzmarke-unten {
  385. position: absolute;
  386. top: 210mm;
  387. left: 10mm;
  388. }
  389. </style>