degmods.com/src/styles/cardGames.css
freakoverse 4a7899cfde
All checks were successful
Release to Staging / build_and_release (push) Successful in 48s
Update src/styles/cardGames.css
2024-09-02 18:52:21 +00:00

48 lines
932 B
CSS

.cardGameMainWrapperLink {
transition: ease 0.4s;
display: flex;
flex-direction: column;
grid-gap: 10px;
text-decoration: unset;
}
.cardGameMainWrapperLink:hover {
transition: ease 0.4s;
transform: scale(1.02);
text-decoration: unset;
}
.cardGameMainWrapperLink:active {
transition: ease 0.1s;
transform: scale(1);
}
.cardGameMainWrapper {
position: relative;
padding-top: 150%;
}
.cardGameMain {
border-radius: 15px;
box-shadow: 0 0 8px 0 rgb(0, 0, 0, 0.1);
width: 100%;
object-fit: cover; /* Ensures the image covers the container like a background image */
position: absolute;
height: 100%;
top: 0;
}
.cardGameMainTitle {
transition: ease 0.4s;
color: rgba(255, 255, 255, 0.5);
padding: 0 15px;
font-weight: bold;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
-webkit-line-clamp: 1;
font-size: 18px;
line-height: 1.5;
text-align: center;
}