added tape

This commit is contained in:
2025-06-06 19:49:18 +10:00
parent 45a77a59d3
commit 9b0519c89a
10 changed files with 583 additions and 15 deletions

11
website/styles.css Normal file
View File

@@ -0,0 +1,11 @@
.post {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
transition: box-shadow 0.3s ease, transform 0.3s ease;
position: relative;
}
.post:hover {
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
z-index: 999 !important;
transform: translateY(-4px);
}