From b6120ffd4088c0bfd496a980bd83a5b82db42dd9 Mon Sep 17 00:00:00 2001 From: Derek Chen Date: Sun, 19 Oct 2025 02:15:11 -0500 Subject: [PATCH] style: make the forms prettier and more consistent to click --- docs/index.html | 41 ++++++++++++++++++++++++++--------------- docs/main.css | 29 +++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 15 deletions(-) diff --git a/docs/index.html b/docs/index.html index b0e8c20..0a900d8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -70,22 +70,33 @@

Course Name is optional, but used for duplicate ID courses (e.g. "UGS 303")


- - -

- -

- -

+ +
+ + +
+ +
+ + +
+ +
+ + +
- -

+ --> + +
+ + +
- - +
+ -

- -

+
+ +
diff --git a/docs/main.css b/docs/main.css index f54fb45..e52cc28 100644 --- a/docs/main.css +++ b/docs/main.css @@ -188,6 +188,35 @@ opacity: 1; height: fit-content; } +.form-group { + display: flex; + flex-direction: column; + margin-bottom: 15px; + text-align: center; + align-items: center; +} + +.form-group label { + margin-bottom: 5px; + font-weight: 500; +} + +.form-group input, +.form-group select { + padding: 8px; + border: 1px solid #ccc; + border-radius: 4px; + font-size: var(--p-size); + width: 100%; + max-width: 400px; +} + +.form-group input:focus, +.form-group select:focus { + outline: none; + border-color: var(--link-color); +} + .chart-container { position: relative; margin: auto;