summaryrefslogtreecommitdiff
path: root/public/assets/css/css.css
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-06-29 13:05:21 +0200
committerJules Laplace <julescarbon@gmail.com>2017-06-29 13:05:21 +0200
commit82cf40b516b5ab11c34b3642a01603ec1b590c9f (patch)
tree4ac62bed9c471b2df5ee6c29f00071df7e2a4af2 /public/assets/css/css.css
parenta7465a66cd49a943b725f0a3ef45d0b1511b48db (diff)
store open folders in localstorage
Diffstat (limited to 'public/assets/css/css.css')
-rw-r--r--public/assets/css/css.css45
1 files changed, 41 insertions, 4 deletions
diff --git a/public/assets/css/css.css b/public/assets/css/css.css
index bb6903f..7d08cdc 100644
--- a/public/assets/css/css.css
+++ b/public/assets/css/css.css
@@ -30,7 +30,7 @@ html,body {
left: 50%;
transform: translate3d(-50%,-50%,0);
background: white;
- border-radius: 4px;
+ border-radius: 2px;
}
h1 {
@@ -61,19 +61,56 @@ textarea {
.folders, .folder {
background: white;
+ padding: 5px;
+ margin: 5px;
+ border: 1px solid #888;
+ max-width: 400px;
+}
+.folders .name,
+.folder .name {
+ cursor: pointer;
+ color: #08f;
+ text-decoration: underline;
}
-button {
- font-size: 15px;
+.list div {
+ padding: 0 0 5px 0;
}
+.heading {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-content: center;
+ margin-bottom: 5px;
+}
+.heading b {
+ padding: 5px 0;
+}
+.heading > div {
+ flex: 1;
+}
+.heading .buttons {
+ display: flex;
+ flex-direction: row;
+ justify-content: flex-end;
+ align-content: flex-end;
+}
+button,
.fileUploadButton {
font-size: 15px;
position: relative;
overflow: hidden;
+ font-family: sans-serif;
padding: 5px;
display: inline-block;
- background: #eee;
+ background: #888;
+ color: white;
+ border: 0;
+ margin-left: 5px;
+}
+button:first-child {
+ margin: 0;
}
.fileUploadButton input {
position: absolute;