10 Sept 21
12:00-17:00:
diff --git a/scripts/DragResizeClose.js b/scripts/DragResizeClose.js
index 8824988..b9f654c 100644
--- a/scripts/DragResizeClose.js
+++ b/scripts/DragResizeClose.js
@@ -1,6 +1,6 @@
class DragResizeClose {
- constructor(zIndex) {
- this.zIndex = zIndex;
+ constructor() {
+ this.zIndex = 4;
this.drag();
this.setDraggables();
this.setZindex();
diff --git a/styles/style.css b/styles/style.css
index 5b2ffb2..5712f43 100644
--- a/styles/style.css
+++ b/styles/style.css
@@ -33,6 +33,8 @@ button {
position: absolute;
border: 2px white solid;
background: black;
+ -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0.49);
+ box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0.49);
}
.draggable p,
@@ -129,8 +131,11 @@ button {
background-color: rgb(113, 113, 226);
}
-
.clicked{
background-color: white;
color: blue;
}
+
+.visible {
+ display: inline;
+}