aboutsummaryrefslogtreecommitdiffhomepage
path: root/File-decryption/webapp/assets/css/style.css
diff options
context:
space:
mode:
authorThomas Van Iseghem <[email protected]>2023-04-23 22:46:32 +0200
committerThomas Van Iseghem <[email protected]>2023-04-23 22:46:32 +0200
commitb7378334eaf9fe9a2371227e484ae9c81e39ac1d (patch)
tree0c6eeedd35780a5b1b529932626cca3e449f93d5 /File-decryption/webapp/assets/css/style.css
parent51be201cca60e1f56c0ae37f764b7663de269686 (diff)
downloadOpenCortex-b7378334eaf9fe9a2371227e484ae9c81e39ac1d.tar.gz
OpenCortex-b7378334eaf9fe9a2371227e484ae9c81e39ac1d.zip
Fixed merge conflict issues
Diffstat (limited to 'File-decryption/webapp/assets/css/style.css')
-rw-r--r--File-decryption/webapp/assets/css/style.css56
1 files changed, 56 insertions, 0 deletions
diff --git a/File-decryption/webapp/assets/css/style.css b/File-decryption/webapp/assets/css/style.css
index ca14480..372b1c0 100644
--- a/File-decryption/webapp/assets/css/style.css
+++ b/File-decryption/webapp/assets/css/style.css
@@ -32,6 +32,57 @@ header {
background-color: rgb(10,10,10);
}
+/* media query for mobile devices */
+@media screen and (max-width: 712px) {
+ header h1{
+ font-size: 1.5rem;
+ }
+}
+
+footer {
+ padding: 1rem;
+ position: absolute;
+ display: flex;
+ align-items: center;
+
+ /* put at the bottom of the page */
+ bottom: 0;
+ width: 100%;
+ background-color: rgb(18, 18, 18);
+ color: rgb(185, 185, 185);
+}
+
+@media screen and (max-width: 712px) {
+ footer {
+ flex-direction: column;
+ }
+}
+
+footer p {
+ margin-right: 1rem;
+ width: 100%
+}
+
+footer button {
+ padding: .75rem 0.5rem;
+ border-radius: 20px;
+ border: 3px solid rgb(53, 107, 62, 0);
+ outline-style: none;
+
+ background-color: rgb(63, 13, 242);
+ color: white;
+ margin: 0.5rem;
+ text-align: center;
+ min-width: 8rem;
+
+ font-family: 'IBM Plex sans', sans-serif;
+}
+
+footer button:hover{
+ background-color: rgb(98, 13, 255);
+ cursor: pointer;
+}
+
input{
padding: 0.5rem;
border-radius: 20px;
@@ -193,6 +244,11 @@ input:checked + .slider:before {
cursor: pointer;
}
+.upload-disabled{
+ background-color: rgb(63, 13, 242, 0.5) !important;
+ cursor: not-allowed !important;
+}
+
.file-btns .file-upload {
margin-bottom: 1rem;
}