summaryrefslogtreecommitdiff
path: root/static/default.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/default.css')
-rw-r--r--static/default.css39
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);
+}