diff options
Diffstat (limited to 'public/assets/css/css.css')
| -rw-r--r-- | public/assets/css/css.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/public/assets/css/css.css b/public/assets/css/css.css index e5eab84..c7a8841 100644 --- a/public/assets/css/css.css +++ b/public/assets/css/css.css @@ -1,4 +1,5 @@ * { box-sizing: border-box } + html,body { margin: 0; padding: 0; width: 100%; height: 100%; font-family: 'Helvetica', sans-serif; font-weight: 300; } body { background: linear-gradient(52deg, #fde, #ffe); @@ -15,6 +16,9 @@ header span { color: #444; padding-left: 8px; } +header span > span:first-child { + padding-left: 0; +} h1, h2, h3 { margin: 0; } @@ -113,7 +117,9 @@ h3 { justify-content: flex-start; } .select.param > label, -.button.param > label { +.button.param > label, +.fileUpload.param > label, +.textInput.param > label { width: 250px; } .select select { @@ -122,6 +128,12 @@ h3 { .param > label span { white-space: nowrap; } +.fileUpload input[type=file] { + opacity: 0; width: 0; height: 0; +} +.fileUpload button { + pointer-events: none; +} /* dashboard */ |
