diff options
author | BonfaceKilz | 2020-04-26 03:43:38 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-04-26 03:43:38 +0300 |
commit | e158d57813b3cfe494b47d3a865200ecddd11c4d (patch) | |
tree | 136e086cb27b4a582942969dd28231560de8b97f /bh20simplewebuploader/static | |
parent | ab1896d6be95875ce767124ac160b095cacb9883 (diff) | |
download | bh20-seq-resource-e158d57813b3cfe494b47d3a865200ecddd11c4d.tar.gz bh20-seq-resource-e158d57813b3cfe494b47d3a865200ecddd11c4d.tar.lz bh20-seq-resource-e158d57813b3cfe494b47d3a865200ecddd11c4d.zip |
Add basic structure for interacting with the API
Diffstat (limited to 'bh20simplewebuploader/static')
-rw-r--r-- | bh20simplewebuploader/static/main.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/bh20simplewebuploader/static/main.css b/bh20simplewebuploader/static/main.css index 609ae19..94d38bf 100644 --- a/bh20simplewebuploader/static/main.css +++ b/bh20simplewebuploader/static/main.css @@ -57,6 +57,15 @@ form h4 { margin: 0 auto; padding: 20px; } + +.button { + width: 6em; + border-radius: 5px; + background: #0ED1CD; + margin: 0.3em auto; + padding: 0.4em; +} + .footer { background-color: white; margin: 0 auto; @@ -128,6 +137,22 @@ span.dropt:hover {text-decoration: none; background: #ffffff; z-index: 6; } margin-top: 10px; } +.search-section { + display: flex; + justify-content: space-between; +} + +.search-section .filter-options { + display: flex; + flex-direction: column; + width: max-content; + padding: 20px; +} + +.search-section p { + margin: 0; +} + .submit { grid-area: f; width: 17em; @@ -158,6 +183,7 @@ footer { .invisible { display: none; } + @media only screen and (max-device-width: 480px) { .grid-container { display: flex; |