Änderungen von Dokument eltern.klasse5
Zuletzt geändert von Sarah Groeneveld am 2026/06/08 09:25
Von Version 6.1
bearbeitet von Sarah Groeneveld
am 2026/06/08 08:38
am 2026/06/08 08:38
Änderungskommentar:
Es gibt keinen Kommentar für diese Version
Auf Version 18.1
bearbeitet von Sarah Groeneveld
am 2026/06/08 09:13
am 2026/06/08 09:13
Änderungskommentar:
Es gibt keinen Kommentar für diese Version
Zusammenfassung
-
Seiteneigenschaften (1 geändert, 0 hinzugefügt, 0 gelöscht)
-
Anhänge (0 geändert, 1 hinzugefügt, 0 gelöscht)
Details
- Seiteneigenschaften
-
- Inhalt
-
... ... @@ -56,15 +56,22 @@ 56 56 font-size: 1.05em; 57 57 margin: 0; 58 58 } 59 -.wk-hero- img-hint {59 +.wk-hero-photo { 60 60 margin-top: 20px; 61 - border: 2px dashed rgba(255,255,255,0.25); 62 - border-radius: 8px; 63 - padding: 16px 20px; 64 - color: rgba(255,255,255,0.5); 65 - font-size: 0.85em; 66 - font-style: italic; 61 + border-radius: 10px; 62 + overflow: hidden; 63 + height: 200px; 64 + position: relative; 65 + z-index: 1; 67 67 } 67 +.wk-hero-photo img { 68 + width: 100%; 69 + height: 100%; 70 + object-fit: cover; 71 + object-position: center 40%; 72 + display: block; 73 + opacity: 0.88; 74 +} 68 68 69 69 /* HIGHLIGHT BOX */ 70 70 .wk-highlight { ... ... @@ -165,12 +165,22 @@ 165 165 } 166 166 .wk-event.highlight-event::before { background: #E53935; } 167 167 168 -/* CARDS GRID */ 169 -.wk-cards { 170 - display: grid; 171 - grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 172 - gap: 16px; 175 +/* CARDS GRID – inline-block für XWiki-Kompatibilität */ 176 +.wk-cards { font-size: 0; } 177 +.wk-card { 178 + display: inline-block; 179 + vertical-align: top; 180 + width: 48%; 181 + margin: 0 1% 16px 1%; 182 + background: #fff; 183 + border: 1px solid #e8eaf0; 184 + border-radius: 10px; 185 + padding: 16px; 186 + box-shadow: 0 2px 6px rgba(0,0,0,0.04); 187 + box-sizing: border-box; 188 + font-size: 14px; 173 173 } 190 +.wk-cards-clear { } 174 174 .wk-card { 175 175 background: #fff; 176 176 border: 1px solid #e8eaf0; ... ... @@ -205,6 +205,9 @@ 205 205 } 206 206 .wk-card ul { padding-left: 18px; margin: 6px 0 0 0; } 207 207 .wk-card a { color: #0f3460; font-weight: 600; } 225 +.wk-platform-name { font-weight: 700; color: #1a1a2e; margin-bottom: 4px; font-size: 14px; } 226 +.wk-platform-desc { color: #666; font-size: 13px; line-height: 1.5; } 227 +.wk-platform a { color: #E53935; font-weight: 600; font-size: 13px; } 208 208 209 209 /* STUNDENPLAN TABLE */ 210 210 .wk-timetable { ... ... @@ -259,28 +259,40 @@ 259 259 .chip-grau { background: #f5f5f5; color: #424242; border-color: #bdbdbd; } 260 260 .chip-braun { background: #efebe9; color: #3e2723; border-color: #bcaaa4; } 261 261 262 -/* CONTACT CARDS */ 263 -.wk-contacts { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px, 1fr));gap: 12px;}282 +/* CONTACT CARDS – inline-block */ 283 +.wk-contacts { font-size: 0; } 264 264 .wk-contact { 285 + display: inline-block; 286 + vertical-align: top; 287 + width: 31%; 288 + margin: 0 1% 12px 1%; 265 265 background: #f8f9fc; 266 266 border-radius: 10px; 267 267 padding: 14px 16px; 268 268 border: 1px solid #e8eaf0; 293 + box-sizing: border-box; 294 + font-size: 14px; 269 269 } 296 +.wk-contacts-clear { } 270 270 .wk-contact-name { font-weight: 700; font-size: 0.92em; color: #1a1a2e; margin-bottom: 4px; } 271 271 .wk-contact-role { font-size: 0.8em; color: #888; margin-bottom: 6px; } 272 272 .wk-contact a { font-size: 0.83em; color: #0f3460; } 273 273 274 -/* PLATFORM PILLS */ 275 -.wk-platforms { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 4px; }301 +/* PLATFORM PILLS – inline-block */ 302 +.wk-platforms { font-size: 0; margin-top: 4px; } 276 276 .wk-platform { 304 + display: inline-block; 305 + vertical-align: top; 306 + width: 48%; 307 + margin: 0 1% 12px 1%; 277 277 background: #fff; 278 278 border: 1.5px solid #e0e4ef; 279 279 border-radius: 8px; 280 280 padding: 10px 14px; 281 - font-size: 0.87em;282 - min-width:180px;312 + font-size: 14px; 313 + box-sizing: border-box; 283 283 } 315 +.wk-platforms-clear { } 284 284 .wk-platform-name { font-weight: 700; color: #1a1a2e; margin-bottom: 2px; } 285 285 .wk-platform-desc { color: #666; font-size: 0.9em; } 286 286 .wk-platform a { color: #E53935; font-weight: 600; font-size: 0.88em; } ... ... @@ -310,7 +310,9 @@ 310 310 <h1>Willkommen an der<br><span>KGS Stuhr-Brinkum</span></h1> 311 311 <p class="wk-hero-sub">Herzlich willkommen, liebe Eltern der neuen Fünftklässlerinnen und Fünftklässler!<br> 312 312 Hier finden Sie alle wichtigen Informationen für einen gelungenen Start.</p> 313 - <div class="wk-hero-img-hint">📸 Hier können Sie ein Willkommensbild oder Schulgebäude-Foto einfügen</div> 345 + <div class="wk-hero-photo"> 346 + <img src="https://wiki.kgs-stuhr.de/xwiki/bin/download/wiki-eltern/eltern.klasse5/WebHome/IMG_4592.webp" alt="KGS Stuhr-Brinkum Schulgelände"> 347 + </div> 314 314 </div> 315 315 316 316 <!-- WICHTIGE TERMINE --> ... ... @@ -343,7 +343,7 @@ 343 343 <div class="wk-event"> 344 344 <div class="wk-event-date">Ca. 2 Wochen nach Schuljahresbeginn</div> 345 345 <div class="wk-event-title">🎨 Einwahl in AGs (Offener Ganztag)</div> 346 - <div class="wk-event-desc">Die Einwahl in Arbeitsgemeinschaften erfolgt digital über <strong>IServ</strong>. Achtung: die Teilnahme ist dann für das gesamte Schuljahr verpflichtend.</div> 380 + <div class="wk-event-desc">Die Einwahl in Arbeitsgemeinschaften erfolgt digital über <strong>IServ</strong>. Achtung: die Teilnahme ist dann für das gesamte Schuljahr verpflichtend. <a href="https://wiki.kgs-stuhr.de/xwiki/bin/view/wiki-eltern/ganztag/">→ Mehr zum Ganztag im Wiki</a></div> 347 347 </div> 348 348 349 349 </div> ... ... @@ -401,7 +401,7 @@ 401 401 <h3>Mensa & Kiosk (MensaMax)</h3> 402 402 </div> 403 403 <p>Mittagessen 13:05–14:00 Uhr. Anmeldung im Sekretariat, dann Essens-Chip erhalten. Bestellung über die <strong>MensaMax-App</strong> oder Browser – bargeldlos, Prepaid. Ohne Chip keine Ausgabe.</p> 404 - </div> 438 + <ul><li><a href="https://wiki.kgs-stuhr.de/xwiki/bin/view/schueler/mensamax/">→ Anleitung im Wiki</a></li></ul> 405 405 406 406 <div class="wk-card"> 407 407 <div class="wk-card-head"> ... ... @@ -417,7 +417,10 @@ 417 417 <h3>Krankmeldung</h3> 418 418 </div> 419 419 <p>Krankmeldung bis <strong>07:45 Uhr</strong> per E-Mail an die Klassenlehrkraft (<em>nachname@kgs-sb.de</em>) oder über WebUntis. Schriftliche Entschuldigung im <strong>Entschuldigungsheft</strong> nach der Genesung.</p> 420 - <ul><li><a href="https://wiki.kgs-stuhr.de/xwiki/bin/view/wiki-eltern/krankmeldung/">→ Ausführliche Anleitung im Wiki</a></li></ul> 454 + <ul> 455 + <li><a href="https://wiki.kgs-stuhr.de/xwiki/bin/view/wiki-eltern/Krankmeldungen/">→ Krankmeldung im Wiki</a></li> 456 + <li><a href="https://wiki.kgs-stuhr.de/xwiki/bin/view/wiki-eltern/Entschuldigungen/">→ Entschuldigungen im Wiki</a></li> 457 + </ul> 421 421 </div> 422 422 423 423 <div class="wk-card"> ... ... @@ -426,7 +426,7 @@ 426 426 <h3>Schulbücher (Lernmittelausleihe)</h3> 427 427 </div> 428 428 <p>Anmeldung über <strong>IServ → Modul „Schulbücher"</strong>. Nur als Gesamtpaket buchbar. Ermäßigung für Familien mit ≥3 schulpflichtigen Kindern; Befreiung bei Bürgergeld etc. (Nachweis im Sekretariat).</p> 429 - </div> 466 + <ul><li><a href="https://wiki.kgs-stuhr.de/xwiki/bin/view/wiki-eltern/lernmittelausleihe/">→ Anleitung im Wiki</a></li></ul> 430 430 431 431 <div class="wk-card"> 432 432 <div class="wk-card-head"> ... ... @@ -438,6 +438,7 @@ 438 438 </div> 439 439 440 440 </div> 478 + <div class="wk-cards-clear"></div> 441 441 </div> 442 442 443 443 <hr class="wk-divider"/> ... ... @@ -505,6 +505,7 @@ 505 505 <a href="https://www.kgs-stuhr.de/">→ www.kgs-stuhr.de</a></div> 506 506 </div> 507 507 </div> 546 + <div class="wk-platforms-clear"></div> 508 508 </div> 509 509 510 510 <hr class="wk-divider"/> ... ... @@ -546,6 +546,7 @@ 546 546 <a href="mailto:s.roeber@kgs-sb.de">s.roeber@kgs-sb.de</a> 547 547 </div> 548 548 </div> 588 + <div class="wk-contacts-clear"></div> 549 549 </div> 550 550 551 551 <hr class="wk-divider"/>
- IMG_4592.webp
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.kgs-sbde-groeneveld - Größe
-
... ... @@ -1,0 +1,1 @@ 1 +167.1 KB - Inhalt