summaryrefslogtreecommitdiff
path: root/www/css/index.scss
diff options
context:
space:
mode:
Diffstat (limited to 'www/css/index.scss')
-rw-r--r--www/css/index.scss52
1 files changed, 50 insertions, 2 deletions
diff --git a/www/css/index.scss b/www/css/index.scss
index 514865d..748dcd3 100644
--- a/www/css/index.scss
+++ b/www/css/index.scss
@@ -47,7 +47,10 @@ html {
color: $red;
}
}
- input[type=text], input[type=password], input[type=email], select {
+ input, select, textarea {
+ font-size: 4vw;
+ }
+ input[type=text], input[type=password], input[type=email], input[type=number], select {
padding: 0 0.25em;
border: none;
background: bottom left linear-gradient(#a9a9a9, #a9a9a9) no-repeat,
@@ -66,6 +69,7 @@ html {
option[disabled] { display: none; }
}
}
+
body#index {
height: 100%;
table {
@@ -211,4 +215,48 @@ body#emergency {
width: 100%;
height: auto;
}
-} \ No newline at end of file
+}
+
+body#checklist {
+ margin: 0.5em;
+ form {
+ width: 100%;
+ label {
+ margin-bottom: 0.25em;
+ }
+ ul {
+ padding: 0;
+ }
+ li {
+ list-style-type: none;
+ text-indent: -2em;
+ padding-left: 2em;
+ }
+ div {
+ text-indent: -2em;
+ padding-left: 2em;
+ ul {
+ display: inline;
+ li {
+ display: inline-block;
+ }
+ }
+ }
+ & > label {
+ display: table;
+ widht: 100%;
+ span {
+ display: table-cell;
+ width: 8em;
+ }
+ input {
+ display: table-cell;
+ width: 100%;
+ }
+ }
+ input[type=submit] {
+ width: 100%;
+ height: 3em;
+ }
+ }
+}