From cef48be83d5e73c21e28da92ba97b8808bc3a1fe Mon Sep 17 00:00:00 2001 From: Daniel Hader Date: Sun, 31 May 2026 10:22:17 -0500 Subject: submission table and Lekton font --- static/default.css | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) (limited to 'static/default.css') diff --git a/static/default.css b/static/default.css index 1cc3249..dee55d6 100644 --- a/static/default.css +++ b/static/default.css @@ -1,6 +1,17 @@ +@font-face { + font-family: Lekton; + src: url(Lekton/Lekton-Regular.ttf); +} + body { background: rgb(100,180,230); + font-family: Lekton, monospace, sans-serif; + font-weight: 200; +} + +h3 { + margin-bottom: 8px; } #container { @@ -11,8 +22,34 @@ body { } .problem { - border: 1px solid black; + border: 1px solid rgb(100, 100, 80); padding: 0 10px; margin: 8px 0; } +.submission-div { + border: 1px solid black; + max-height: 200px; + overflow-y: scroll; + background-color: rgb(200, 200, 160); + margin-bottom: 16px; +} + +.submission-table { + width: 100%; + border-collapse: collapse; +} + +.submission-table td, .submission-table th { + border: 1px solid black; + text-align: left; + padding: 2px; +} + +.submission-table td { + background-color: rgb(255, 255, 200); +} + +.submission-table th { + background-color: rgb(230, 220, 150); +} -- cgit v1.2.3