Skip to content

Commit 888252d

Browse files
authored
Make dropdowns in curriculum more noticeable (#20)
Resolve #19
1 parent df5ec38 commit 888252d

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

ci/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ <h2 id="Curriculum">Curriculum</h2>
139139
<p>See <a href="#Submission">this section</a> for assignment submission
140140
instructions. The available modules are listed below.</p>
141141
<details>
142-
<summary class="title">
142+
<summary class="curriculum">
143143
Software engineering / robotics
144144
</summary>
145145
<h3 id="Intro_to_C.2B.2B">Intro to C++</h3><a href=
@@ -188,7 +188,7 @@ <h3 id="Robot_software">Robot software</h3><a href=
188188
custom classes.</p>
189189
</details>
190190
<details>
191-
<summary class="title">
191+
<summary class="curriculum">
192192
Miscellaneous computer science
193193
</summary>
194194
<h3 id="Advanced_C.2B.2B">Advanced C++</h3><a href=

main.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,17 @@ pre {
6666
overflow: scroll;
6767
}
6868

69+
summary.curriculum {
70+
font-size: xx-large;
71+
padding: 0.5em;
72+
background: darkblue;
73+
color: white;
74+
}
75+
76+
summary.curriculum:hover {
77+
color: lightblue;
78+
}
79+
6980
#navbar {
7081
width: 100%;
7182
background-color: darkblue;

0 commit comments

Comments
 (0)