diff options
| author | Daniel Hader <[email protected]> | 2026-05-31 10:22:17 -0500 |
|---|---|---|
| committer | Daniel Hader <[email protected]> | 2026-05-31 10:22:17 -0500 |
| commit | cef48be83d5e73c21e28da92ba97b8808bc3a1fe (patch) | |
| tree | fa704e0d1927935f8367f7ace9b8ee0fbbe72ca8 /static/default.css | |
| parent | e6d3eeb7c055a2941600f048697298b0e77b2e2c (diff) | |
submission table and Lekton font
Diffstat (limited to 'static/default.css')
| -rw-r--r-- | static/default.css | 39 |
1 files changed, 38 insertions, 1 deletions
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); +} |
