diff options
author | Thomas Van Iseghem <[email protected]> | 2023-04-23 13:29:09 +0200 |
---|---|---|
committer | Thomas Van Iseghem <[email protected]> | 2023-04-23 13:29:09 +0200 |
commit | 7a1086da67c85e51e0591cc64d0bdc21fc0e0404 (patch) | |
tree | a60ef1a6d6a4689d876999990a7db1be4ff786c4 /File-decryption/webapp/style.css | |
parent | a44b97376054c576b41b353ce4f59c280124cd9e (diff) | |
download | OpenCortex-7a1086da67c85e51e0591cc64d0bdc21fc0e0404.tar.gz OpenCortex-7a1086da67c85e51e0591cc64d0bdc21fc0e0404.zip |
Added styling for the decryptor upload button
Diffstat (limited to 'File-decryption/webapp/style.css')
-rw-r--r-- | File-decryption/webapp/style.css | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/File-decryption/webapp/style.css b/File-decryption/webapp/style.css index 1b742e4..64fa213 100644 --- a/File-decryption/webapp/style.css +++ b/File-decryption/webapp/style.css @@ -62,4 +62,57 @@ header .header-title{ top: 50%; left: 50%; transform: translate(-50%, -50%); +} + +.serial-input{ + margin-bottom: 3rem; +} + +.serial-input p{ + color: rgb(185, 185, 185); +} + +.serial-input p { + margin-bottom: 1rem; +} + +.file-upload { + width: 100%; +} + +.file-upload .file-input-title { + display: flex; + + align-items: center; + justify-content: center; + background-color: rgb(18, 18, 18); + height: 3rem; + width: 100%; +} + +.file-upload .file-input { + display: none; +} + +.file-upload .file-upload-title{ + margin-bottom: 1rem; +} + +.file-upload .file-input-label { + display: flex; + border-radius: 1rem; + align-items: center; + justify-content: center; + background-color: rgb(63, 13, 242); + height: 3rem; + width: 100%; +} + +.file-upload .file-input-label:hover{ + background-color: rgb(98, 13, 255); + cursor: pointer; +} + +.file-upload .file-input-label .fa-cloud-arrow-up{ + margin-right: 0.5rem; }
\ No newline at end of file |