From 213d68dade60f3af0263faca4c20e3cc886777c5 Mon Sep 17 00:00:00 2001 From: Lotte Louise de Jong Date: Mon, 30 Aug 2021 23:04:32 +0200 Subject: [PATCH] program visible + box shadow --- .DS_Store | Bin 0 -> 6148 bytes index.html | 2 +- scripts/DragResizeClose.js | 4 ++-- styles/style.css | 7 ++++++- 4 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..e8316bb31f9aebe66d8c34f20f46743fbb4e7c30 GIT binary patch literal 6148 zcmeHKJ8r`;3?g>A>JE0C0t{8|L0i z0E-2HHE{_<1g1d+2351g(4Zq;GOs2sfk79|=0o#l%??HVcAQ^4U9<*rqykjnQh~=< zc2@si;8*(pOA=R9fC}7|0=gPrhaOML+S)wMYHfk<;FfcOn_=!03|@|bUXHP_a=i7V b$SXF-eob5gosPKEf&3XTU1(I`uNC+KhL#nn literal 0 HcmV?d00001 diff --git a/index.html b/index.html index 75f5172..cf3896a 100644 --- a/index.html +++ b/index.html @@ -25,7 +25,7 @@
-
+

10 Sept 21

  • 12:00-17:00:
    • XPUB Bookshop
    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; +}