From 6362a6d82d2bf5ee842a2b8fce20229d4bf3c990 Mon Sep 17 00:00:00 2001 From: Chen Yang Date: Wed, 18 Jun 2025 21:14:57 +0800 Subject: [PATCH] Updated notATable to description list. --- index.html | 23 +++++++++++++---------- style.css | 22 ++++++++++++++++++++++ 2 files changed, 35 insertions(+), 10 deletions(-) diff --git a/index.html b/index.html index ae4c90f..b9eb6ec 100644 --- a/index.html +++ b/index.html @@ -61,17 +61,20 @@

Teaching
[Blackboard@CUHK]

Undergraduate Courses - - +
+
Spring 2020-2025
+
SEEM3580 Risk Analysis for Financial Engineering
+
Fall 2019-2024
+
SEEM3590 Investment Science
+
Postgraduate Courses - +
+
Spring 2025
SEEM5140 Optimal Control
+
Spring 2023
SEEM5670 Advanced Models in Financial Engineering
+
Fall 2021
SEEM5340 Stochastic Calculus (with Xuedong He and Lingfei Li)
+
+ +


diff --git a/style.css b/style.css index bf4d387..058dfac 100755 --- a/style.css +++ b/style.css @@ -339,3 +339,25 @@ background-repeat: no-repeat; transform: translate(15px); } } + +dl { + padding: 0em; +} + +dt { + float: left; + width: 20%; + text-align: right; + padding: .25em; + clear: left; +} +dt:after { + content: "|"; +} +dd { + /* float: left; */ + /* margin: 0 0 0 110px */ + width: 90%; + padding: .25em 0; +} +dl:after {content:"";display:table;clear:both;}