room restructure part 1

This commit is contained in:
2025-05-25 12:23:53 +02:00
parent e853bb6a86
commit 259e4dca20
11 changed files with 387 additions and 361 deletions

33
static/css/rooms.css Normal file
View File

@@ -0,0 +1,33 @@
.hover-shadow {
transition: all 0.3s ease;
}
.hover-shadow:hover {
transform: translateY(-5px);
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.card {
border: none;
border-radius: 10px;
}
.card-footer {
padding: 1rem;
}
.btn {
border-radius: 5px;
font-weight: 500;
padding: 0.5rem 1rem;
transition: all 0.2s ease;
}
.btn:hover {
transform: translateY(-1px);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn i {
font-size: 0.9em;
}