Stable 2-ago-2023

This commit is contained in:
2023-08-02 09:12:46 -06:00
parent 6a7c6b7ed9
commit f0cc3c585d
60 changed files with 6497 additions and 908 deletions

View File

@@ -1053,4 +1053,22 @@ footer .tab-pane p {
justify-content: center;
align-items: center;
}*/
}
.movie {
transition: all 0.1s;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.movie:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
font-size: 1.1em;
}
.movie:active {
transform: scale(1.1);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
font-size: 1.2em;
font-weight: bold;
}