123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 |
- <div class="page grid" orientation="portrait" size="A4">
- <span class="falzmarke-oben">––</span>
- <span class="falzmarke-unten">––</span>
- <div class="seitenlogo">
- <img src="daten/traeger_logo.svg" height="160px" alt="traeger_logo" />
- </div>
- <div class="header">
- <img class="logo" src="daten/bk_logo.svg" alt="Briefkopf" />
- <hr class="hr-rot hr" />
- </div>
- <div class="main">
- <div class="sidebar">
- <div class="sidebar-oben">
- Am Zionswald 12<br />33617 Bielefeld
- <div class="voffset-1"></div>
- Telefon 0521 144-2467<br />Telefax 0521 144-2470<br />berufskolleg@fvbschulen.de<br />www.berufskolleg-bethel.de
- <div class="voffset-1"></div>
- 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
- <div class="voffset-1"></div>
- {(new Date().toLocaleDateString('de', {day: '2-digit', month: '2-digit', year: 'numeric'}))}<br />
- <slot name="kuerzel"></slot>
- </div>
- <div class="sidebar-unten">
- Unsere Bildungsgänge:
- <div class="voffset-1"></div>
- <b>Berufliches Gymnasium</b><br />Erziehung und Soziales<br />(Erzieher_in / AHR)
- <div class="voffset-1"></div>
- <b>Fachschulen</b><br />Sozialpädagogik<br />Heilerziehungspflege<br />Heilpädagogik<br />Heilpädagogische Förderung<br />mit dem Pferd
- <div class="voffset-1"></div>
- <b>Fachoberschule</b><br />Gesundheit und Soziales
- <div class="voffset-1"></div>
- <b>Berufsfachschulen</b><br />Sozialassistenz/<br />Heilerziehung
- <div class="voffset-1"></div>
- <b>Weitere Informationen:</b><br />www.berufskolleg-bethel.de
- </div>
- </div>
- <div class="links">
- <div class="absender">
- v.Bodelschwinghsche Stiftungen Bethel<br /><b>Berufskolleg Bethel </b>· Postfach 130 160 · 33544 Bielefeld
- </div>
- <div class="anschrift">
- <slot name="anschrift"></slot>
- </div>
- <div class="anschreiben">
- <slot></slot>
- </div>
- </div>
- </div>
- </div>
- <style>
- .page {
- font-size: 1.2em;
- line-height: 1.5;
- font-weight: normal;
- font-family: "Tex Gyre Heros";
- color: #333;
- position: relative;
- padding: 0;
- display: block;
- }
- .grid {
- display: grid;
- align-content: stretch;
- grid-template-rows: 35mm auto;
- grid-template-areas:
- "header"
- "main";
- }
- .header {
- display: grid;
- grid-area: header;
- align-self: start;
- margin-left: 24.1mm;
- margin-right: 8.1mm;
- grid-template-columns: auto;
- grid-template-rows: auto;
- grid-template-areas:
- "logo"
- "hr";
- }
- .logo {
- justify-content: end;
- margin-top: 10mm;
- grid-area: logo;
- margin-left: auto;
- }
- .hr {
- grid-area: hr;
- align-self: end;
- }
- .main {
- grid-area: main;
- align-content: stretch;
- display: grid;
- grid-template-columns: 2fr 1fr;
- height: 100%;
- grid-template-areas:
- "links sidebar";
- }
- .links {
- display: grid;
- grid-area: links;
- grid-template-rows: 10mm 40mm auto;
- margin-bottom: 10mm;
- grid-template-areas:
- "absender"
- "anschrift"
- "anschreiben";
- }
- .absender {
- grid-area: absender;
- font-size: 7.5pt;
- margin-left: 20mm;
- }
- .anschrift {
- grid-area: anschrift;
- font-size: 11pt;
- margin-left: 25mm;
- }
- .anschreiben {
- grid-area: anschreiben;
- font-size: 11pt;
- margin-left: 25mm;
- width: 115mm;
- }
- .sidebar {
- display: grid;
- margin-right: 8.1mm;
- justify-self: end;
- grid-area: sidebar;
- margin-bottom: 10mm;
- grid-template-rows: auto;
- grid-template-areas:
- "sidebar-oben"
- "sidebar-unten";
- }
- .sidebar-oben {
- grid-area: sidebar-oben;
- align-self: start;
- }
- .sidebar-unten {
- grid-area: sidebar-unten;
- align-self: end;
- }
- .flex-grid {
- display: flex;
- }
- .col {
- flex: 1;
- }
- .col-2 {
- flex: 2;
- }
- @import url(normalize.css);
- @font-face {
- font-family: 'TeX Gyre Heros';
- src: url("texgyreheros-regular-webfont.woff") format("woff");
- font-style: normal;
- }
- @font-face {
- font-family: 'TeX Gyre Heros';
- src: url("texgyreheros-bold-webfont.woff") format("woff");
- font-style: normal;
- font-weight: bold;
- }
- @font-face {
- font-family: 'TeX Gyre Heros';
- src: url("texgyreheros-italic-webfont.woff") format("woff");
- font-style: italic;
- }
- @font-face {
- font-family: 'TeX Gyre Heros';
- src: url("texgyreheros-bolditalic-webfont.woff") format("woff");
- font-style: italic;
- font-weight: bold;
- }
- @media print {
- * {
- -webkit-print-color-adjust: exact;
- }
- .page {
- page-break-after: always;
- page-break-inside: avoid;
- margin: 0;
- }
- }
- /*
- Da *named pages*, also z.B. @page a3landscape noch nicht von Chrome
- unterstützt werden, gilt vorerst die Standard-Einstellung von A4 Portrait.
- Um andere Formate zu erzeugen, muss die Größe in den svelte-Koponenten
- als setup-Einstellung hinterlegt werden. Oder man verwendet ein besonderes CSS
- mit der anderen Einstellung.
- Dazu bitte ein @import 'nicht_a4_portrait.css' verwenden. Svelte ignoriert sonst
- die in den <style> tags hinterlegten @... Anweisungen.
- Link: https://www.w3.org/TR/css3-page/#using-named-pages
- */
- .page[size="A4"][orientation="portrait"] {
- page: a4portrait;
- width: 210mm;
- height: 296.8mm;
- }
- @page a4portrait {
- margin: 0;
- size: A4 portrait;
- }
- .page[size="A4"][orientation="landscape"] {
- page: a4landscape;
- width: 296.8mm;
- height: 210mm;
- }
- @page a4landscape {
- margin: 0;
- size: A4 landscape;
- }
- .page[size="A3"][orientation="portrait"] {
- page: a3portrait;
- width: 296.8mm;
- height: 420mm;
- }
- @page a3portrait {
- margin: 0;
- size: A3 portrait;
- }
- .page[size="A3"][orientation="landscape"] {
- page: a3landscape;
- width: 420mm;
- height: 296.8mm;
- }
- @page a3landscape {
- margin: 0;
- size: A3 landscape;
- }
- .page[size="A5"][orientation="portrait"] {
- page: a5portrait;
- width: 148mm;
- height: 210mm;
- }
- @page a5portrait {
- margin: 0;
- size: A5 portrait;
- }
- .page[size="A5"][orientation="landscape"] {
- page: a5landscape;
- width: 210mm;
- height: 148mm;
- }
- @page a5landscape {
- margin: 0;
- size: A5 landscape;
- }
- @media screen {
- .page {
- border: 1px solid black;
- box-shadow: 5px 5px 4px 0 silver;
- }
- }
- svelte {
- font-size: 62.5%;
- }
- /* Typography */
- h1, h2, h3, h4, h5, h6 {
- margin-top: 0;
- margin-bottom: 0;
- font-weight: 400;
- }
- h1 {
- font-size: 4.0em;
- line-height: 1.2;
- letter-spacing: -.1em;
- }
- h2 {
- font-size: 3.6em;
- line-height: 1.25;
- letter-spacing: -.1em;
- }
- h3 {
- font-size: 3.0em;
- line-height: 1.3;
- letter-spacing: -.1em;
- }
- h4 {
- font-size: 2.4em;
- line-height: 1.35;
- letter-spacing: -.08em;
- }
- h5 {
- font-size: 1.8em;
- line-height: 1.5;
- letter-spacing: -.05em;
- }
- h6 {
- font-size: 1.5em;
- line-height: 1.6;
- letter-spacing: 0;
- }
- p {
- margin-top: 0;
- }
- .voffset-halb {
- margin-top: 0.5em;
- }
- .voffset-1 {
- margin-top: 1em;
- }
- .voffset-2 {
- margin-top: 2em;
- }
- .voffset-3 {
- margin-top: 3em;
- }
- .voffset-4 {
- margin-top: 4em;
- }
- .voffset-5 {
- margin-top: 5em;
- }
- .voffset-6 {
- margin-top: 6em;
- }
- .voffset-7 {
- margin-top: 7em;
- }
- .voffset-8 {
- margin-top: 8em;
- }
- .voffset-9 {
- margin-top: 9em;
- }
- .voffset-10 {
- margin-top: 10em;
- }
- .voffset-11 {
- margin-top: 11em;
- }
- .voffset-12 {
- margin-top: 12em;
- }
- .voffset-13 {
- margin-top: 13em;
- }
- .voffset-14 {
- margin-top: 14em;
- }
- .voffset-15 {
- margin-top: 15em;
- }
- .voffset-16 {
- margin-top: 16em;
- }
- .voffset-17 {
- margin-top: 17em;
- }
- .voffset-18 {
- margin-top: 18em;
- }
- .voffset-19 {
- margin-top: 19em;
- }
- .voffset-20 {
- margin-top: 20em;
- }
- .text-center {
- text-align: center !important;
- }
- hr {
- border: 0;
- border-top: 1px solid #eee;
- border-color: #000;
- height: 1px;
- margin: 3px 0;
- }
- .hr-rot {
- border-color: #ff2700;
- margin: 8px 0;
- }
- .hr-grau {
- border-color: #646464 !important;
- }
- .falzmarke-oben {
- position: absolute;
- top: 105mm;
- left: 10mm;
- }
- .falzmarke-unten {
- position: absolute;
- top: 210mm;
- left: 10mm;
- }
- </style>
|