Skip to content

Commit 3ac6b1a

Browse files
committed
improve teaching page styling with card layout and hover effects
1 parent 117f394 commit 3ac6b1a

File tree

2 files changed

+50
-22
lines changed

2 files changed

+50
-22
lines changed

styles.scss

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,34 @@ kbd,
1414
.navbar {
1515
padding-top: 0.5rem;
1616
padding-bottom: 0.5rem;
17+
}
18+
19+
.teaching-list {
20+
ul {
21+
list-style: none;
22+
padding-left: 0;
23+
24+
li {
25+
padding: 0.7rem 1rem;
26+
margin: 0.5rem 0;
27+
background-color: #f8f9fa;
28+
border-left: 4px solid #007bff;
29+
border-radius: 0.25rem;
30+
transition: all 0.2s ease;
31+
32+
&:hover {
33+
background-color: #e9ecef;
34+
transform: translateX(5px);
35+
}
36+
37+
a {
38+
text-decoration: none;
39+
color: #333;
40+
41+
&:hover {
42+
color: #007bff;
43+
}
44+
}
45+
}
46+
}
1747
}

teaching.qmd

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,23 @@
22
title: Teaching
33
---
44

5-
6-
* [Spring 2025 AI for Social Good](https://nipunbatra.github.io/aisg25/)
7-
* [Spring 2025 Probability, Statistics, and Data Visualization](https://nipunbatra.github.io/psdv25/)
8-
* [Fall 2024 Machine Learning](https://nipunbatra.github.io/ml2024-fall/)
9-
* [Spring 2024 Machine Learning](https://nipunbatra.github.io/ml2024/)
10-
* [Fall 2023 Probabilistic Machine Learning](https://nipunbatra.github.io/pml2023/)
11-
* [Spring 2023 Machine Learning](https://nipunbatra.github.io/ml2023/)
12-
* [Winter 2022 Computing](https://nipunbatra.github.io/comp22/)
13-
* [Fall 2022 Probabilistic Machine Learning](https://nipunbatra.github.io/pml2022/)
14-
* [Spring 2022 Machine Learning](https://nipunbatra.github.io/ml2022/)
15-
* [Winter 2021 Computing](https://nipunbatra.notion.site/ES-102-Introduction-to-Computing-2021-Winter-5aa842ce18d34e0e9b2cc646b5325868)
16-
* [Fall 2021 Ubiquitous Computing](https://www.craft.do/s/MAdQrLOO9ErCvc)
17-
* [Spring 2021 Machine Learning](https://nipunbatra.github.io/ml2021/)
18-
* [Winter 2020 Introduction to Computing](https://www.notion.so/ES-102-Introduction-to-Computing-7535a00a1b124c5cb6f2a46eb979540b)
19-
* [Fall 2020 Operating Systems](https://nipunbatra.github.io/os2020/)
20-
* [Fall 2020 Graduate Systems]()
21-
* [Spring 2020 Machine Learning](https://nipunbatra.github.io/ml2020/)
22-
* [Fall 2019 Operating Systems](https://nipunbatra.github.io/os2019/)
23-
* [Fall 2019 Graduate Systems]
24-
* [Spring 2019 Machine Learning](https://nipunbatra.github.io/ml2019/)
25-
* [Fall 2018 Operating Systems](https://nipunbatra.github.io/os2018/)
26-
* [Fall 2018 Graduate Systems]()
5+
::: {.teaching-list}
6+
- **[Spring 2025 AI for Social Good](https://nipunbatra.github.io/aisg25/)**
7+
- **[Spring 2025 Probability, Statistics, and Data Visualization](https://nipunbatra.github.io/psdv25/)**
8+
- [Fall 2024 Machine Learning](https://nipunbatra.github.io/ml2024-fall/)
9+
- [Spring 2024 Machine Learning](https://nipunbatra.github.io/ml2024/)
10+
- [Fall 2023 Probabilistic Machine Learning](https://nipunbatra.github.io/pml2023/)
11+
- [Spring 2023 Machine Learning](https://nipunbatra.github.io/ml2023/)
12+
- [Winter 2022 Computing](https://nipunbatra.github.io/comp22/)
13+
- [Fall 2022 Probabilistic Machine Learning](https://nipunbatra.github.io/pml2022/)
14+
- [Spring 2022 Machine Learning](https://nipunbatra.github.io/ml2022/)
15+
- [Winter 2021 Computing](https://nipunbatra.notion.site/ES-102-Introduction-to-Computing-2021-Winter-5aa842ce18d34e0e9b2cc646b5325868)
16+
- [Fall 2021 Ubiquitous Computing](https://www.craft.do/s/MAdQrLOO9ErCvc)
17+
- [Spring 2021 Machine Learning](https://nipunbatra.github.io/ml2021/)
18+
- [Winter 2020 Introduction to Computing](https://www.notion.so/ES-102-Introduction-to-Computing-7535a00a1b124c5cb6f2a46eb979540b)
19+
- [Fall 2020 Operating Systems](https://nipunbatra.github.io/os2020/)
20+
- [Spring 2020 Machine Learning](https://nipunbatra.github.io/ml2020/)
21+
- [Fall 2019 Operating Systems](https://nipunbatra.github.io/os2019/)
22+
- [Spring 2019 Machine Learning](https://nipunbatra.github.io/ml2019/)
23+
- [Fall 2018 Operating Systems](https://nipunbatra.github.io/os2018/)
24+
:::

0 commit comments

Comments
 (0)