add diagonal stripe pattern to klausur and aufgabe class in c course

- update klausur class with 135deg diagonal stripes (pink #fce4ec)
- add aufgabe class with solid background
- apply to all termin slides (1-3)
This commit is contained in:
2026-01-05 17:19:09 +01:00
parent 3db80be669
commit 111d13420a
3 changed files with 44 additions and 2 deletions

View File

@@ -49,11 +49,23 @@ a {
color: var(--color-highlight);
}
section.klausur {
background: #fce4ec !important;
background: repeating-linear-gradient(
135deg,
#fce4ec,
#fce4ec 20px,
#fff 20px,
#fff 40px
) !important;
}
section.klausur footer {
display: none;
}
section.aufgabe {
background: #fce4ec !important;
}
section.aufgabe footer {
display: none;
}
</style>
<!-- _class: invert -->

View File

@@ -49,11 +49,23 @@ a {
color: var(--color-highlight);
}
section.klausur {
background: #fce4ec !important;
background: repeating-linear-gradient(
135deg,
#fce4ec,
#fce4ec 20px,
#fff 20px,
#fff 40px
) !important;
}
section.klausur footer {
display: none;
}
section.aufgabe {
background: #fce4ec !important;
}
section.aufgabe footer {
display: none;
}
</style>
<!-- _class: invert -->

View File

@@ -48,6 +48,24 @@ code {
a {
color: var(--color-highlight);
}
section.klausur {
background: repeating-linear-gradient(
135deg,
#fce4ec,
#fce4ec 20px,
#fff 20px,
#fff 40px
) !important;
}
section.klausur footer {
display: none;
}
section.aufgabe {
background: #fce4ec !important;
}
section.aufgabe footer {
display: none;
}
</style>
<!-- _class: invert -->