summaryrefslogtreecommitdiff
path: root/static/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css38
1 files changed, 36 insertions, 2 deletions
diff --git a/static/style.css b/static/style.css
index 6c63196..cad83c0 100644
--- a/static/style.css
+++ b/static/style.css
@@ -1,2 +1,36 @@
-.foo {
-} \ No newline at end of file
+* {
+ box-sizing: border-box;
+}
+body > table {
+ width: 100%;
+}
+body > table tr > td:nth-child(3) {
+ text-align: right;
+}
+body > form {
+ display: block;
+ border: solid 1px black;
+ margin: 1em 0;
+ padding: 0.5em;
+}
+body > form > * {
+ margin: 0.4em 0;
+}
+label {
+ display: block;
+}
+textarea {
+ width: 100%;
+ height: 30em;
+ font-family: monospace;
+}
+input[type=text] {
+ width: 100%;
+}
+input[type=file] {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+ background: #EEEEEE;
+ border-radius: 4px;
+}