summaryrefslogtreecommitdiff
path: root/WebInterface/NodeJSServer/src/style/index.scss
diff options
context:
space:
mode:
Diffstat (limited to 'WebInterface/NodeJSServer/src/style/index.scss')
-rw-r--r--WebInterface/NodeJSServer/src/style/index.scss33
1 files changed, 32 insertions, 1 deletions
diff --git a/WebInterface/NodeJSServer/src/style/index.scss b/WebInterface/NodeJSServer/src/style/index.scss
index dc225b0..b5ca607 100644
--- a/WebInterface/NodeJSServer/src/style/index.scss
+++ b/WebInterface/NodeJSServer/src/style/index.scss
@@ -137,7 +137,6 @@ body {
margin: 0;
padding: 16px;
text-align: center;
- z-index: 2;
flex-grow: 1;
@media (min-width: 450px) {
@@ -392,3 +391,35 @@ body {
text-align: center;
}
}
+
+.modal-container {
+ position:absolute;
+ top: 0;
+ width: 100vw;
+ height: 100vh;
+ background-color: #000000AA;
+ display: flex;
+ opacity: 1;
+ transition: opacity 200ms ease;
+
+ &.hidden {
+ opacity: 0;
+ }
+
+ .modal {
+ background-color: #546e7a;
+ margin: auto;
+ padding: 1rem;
+ border-style: none;
+ border-radius: 8px;
+ box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
+ }
+
+ .modal-title {
+ margin: 1rem;
+ }
+
+ .modal-body {
+ margin: 0.25rem;
+ }
+}