1
Fork 0

Website: indicators of which topics are in midterm and final exams

This commit is contained in:
Nadim Kobeissi 2025-07-02 12:14:22 +02:00
parent 37e00d0f9a
commit bde975b67a
Signed by: nadim
SSH key fingerprint: SHA256:Wq6s8he3sp5RAhp1LaLtp6R1p/43SZswtuK9csAuVcM
2 changed files with 30 additions and 5 deletions

View file

@ -325,7 +325,8 @@ strong {
line-height: 1.6;
}
.topic-number {
.topic-number,
.topic-exam-indicator {
display: inline-block;
font-family: "JetBrains Mono", monospace;
font-size: 0.85rem;
@ -336,6 +337,11 @@ strong {
margin-bottom: 0.75rem;
}
.topic-exam-indicator {
background-color: var(--alert-bg-light);
color: var(--dark);
}
.topic-slides-btn {
position: absolute;
top: 0;
@ -799,9 +805,11 @@ strong {
}
.collapsible-header.active {
background: linear-gradient(to bottom,
var(--gray-dark) 0%,
transparent 100%);
background: linear-gradient(
to bottom,
var(--gray-dark) 0%,
transparent 100%
);
box-shadow: none;
border-radius: var(--border-radius) var(--border-radius) 0 0;
}
@ -886,7 +894,11 @@ strong {
color: var(--accent);
}
.topic-exam-indicator {
background-color: var(--alert-bg-dark);
}
.collapsible-header .collapsible-icon {
color: var(--primary);
}
}
}