summaryrefslogtreecommitdiff
path: root/public/assets/css/css.css
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-28 13:06:54 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-28 13:06:54 +0200
commit2664eb3e474f5d03d1782c15673b774d68fb2c58 (patch)
tree1f1e58a6090f6befa75d8f6915388ddee30df04d /public/assets/css/css.css
parent3a8d99c5e4f64a9426585943c40635eb183b47ae (diff)
textInput/fileUpload
Diffstat (limited to 'public/assets/css/css.css')
-rw-r--r--public/assets/css/css.css14
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 */