1
0

dynamic time labels

This commit is contained in:
Jose
2025-02-27 08:42:24 +01:00
parent 62ef5d9325
commit c9d9aa9ad3
8 changed files with 18 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
.menuBtn {
position: fixed;
top: 20px;
right: 20px;
left: 20px;
z-index: 1000;
border: none;
width: 50px;

View File

@@ -1,19 +1,19 @@
.side-menu {
position: fixed;
top: 0;
right: -350px;
left: -350px;
width: 350px;
height: 100%;
background-color: #333;
color: white;
transition: right 0.3s ease;
transition: left 0.3s ease;
padding: 30px;
box-shadow: 2px 0 5px rgba(0,0,0,0.5);
z-index: 1000;
}
.side-menu.open {
right: 0;
left: 0;
}
.blur {