diff --git a/css/style.css b/css/style.css index ec472cc..f6d7272 100644 --- a/css/style.css +++ b/css/style.css @@ -2465,3 +2465,34 @@ button:active { transform: scale(1); } } + +#editBtn { + display: none; +} + +/* Example CSS for the edit popup */ +.edit-popup { + display: none; /* Hide popup by default */ + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + background-color: white; + padding: 20px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + z-index: 1000; +} + +#addTimeOption{ + color: black ; +} + +.edit-popup.show-edit-popup { + display: block; /* Show popup when class is applied */ +} + +.edit-popup-content { + max-width: 400px; + margin: auto; + text-align: center; +} \ No newline at end of file diff --git a/index.html b/index.html index 028fcca..a6a771f 100644 --- a/index.html +++ b/index.html @@ -31,6 +31,7 @@