diff options
author | Frederick Muriuki Muriithi | 2022-06-13 15:02:19 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-06-13 15:02:19 +0300 |
commit | c2fa70ec8503d10b990575a547036bfd70a53825 (patch) | |
tree | df7a575b0e2d103a410d419df63503196cad1268 /qc_app/static/css | |
parent | 557d1d5c19ab518fa7abb3229c6d9042867e6c00 (diff) | |
download | gn-uploader-c2fa70ec8503d10b990575a547036bfd70a53825.tar.gz |
Add upload progress indicator
Diffstat (limited to 'qc_app/static/css')
-rw-r--r-- | qc_app/static/css/styles.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/qc_app/static/css/styles.css b/qc_app/static/css/styles.css index aa6b049..9e5a4ec 100644 --- a/qc_app/static/css/styles.css +++ b/qc_app/static/css/styles.css @@ -82,3 +82,22 @@ table { border-color: #336699; padding: 0 0.3em 0.3em 0.3em; } + +.hidden { + display: none; +} + +.modal { + position: fixed; + opacity: 90%; + left: 1em; + top: 1em; + width: 500px; + height: 250px; + text-align: center; + z-index: 9999; + background: #F4F4F4; + + border: 2px solid; + border-radius: 1em; +} |