diff options
author | Alex Vitkov <alexvitkov98@gmail.com> | 2021-01-30 11:02:15 +0200 |
---|---|---|
committer | Alex Vitkov <alexvitkov98@gmail.com> | 2021-01-30 11:02:15 +0200 |
commit | f1cd0085cd8dba8b25818fc998d315b28e6c13a5 (patch) | |
tree | c44148b23c59c86d4333a5db092a3cb340d1a4c6 /css | |
parent | 74f6993d61b6b8d7b120d6b952787ccbe65788ae (diff) | |
download | fileup-f1cd0085cd8dba8b25818fc998d315b28e6c13a5.tar.gz |
HTML/CSS for the path field
Diffstat (limited to 'css')
-rw-r--r-- | css/style.css | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css index 060fdde..aa29cf6 100644 --- a/css/style.css +++ b/css/style.css @@ -135,6 +135,7 @@ form > .content { justify-content: center; } +.filesystem > h2, form > h2 { color: #4d4d4d; margin: 0; @@ -228,11 +229,17 @@ input[type=submit]:hover { .filesystem { background: #fafafa; margin: 1rem; - padding: 1rem; + padding: 0; box-shadow: 0 0.8rem 1.3rem rgba(0,0,0,0.2); border-radius: 0.5rem; border-radius: 0.5rem; border: 1px solid #b9b9b9; + + display: block; +} + +.files { + padding: 1rem; display: grid; grid-gap: 20px; @@ -265,3 +272,22 @@ input[type=submit]:hover { .file:hover > img { filter: brightness(150%); } + +.path { + font-size: 1.5rem; +} + +.path > a { + color: #333; + text-decoration: none; +} + +.path > a:hover { + text-decoration: underline; +} + +.filesystem > h2 { + display: flex; + align-items: baseline; + font-weight: normal; +} |