2024-07-11 11:19:12 +00:00
|
|
|
.cardGameMainWrapperLink {
|
|
|
|
transition: ease 0.4s;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
grid-gap: 10px;
|
|
|
|
text-decoration: unset;
|
2024-09-24 17:33:14 +00:00
|
|
|
cursor: pointer;
|
2024-07-11 11:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.cardGameMainWrapperLink:hover {
|
|
|
|
transition: ease 0.4s;
|
|
|
|
transform: scale(1.02);
|
|
|
|
text-decoration: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cardGameMainWrapperLink:active {
|
|
|
|
transition: ease 0.1s;
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
|
2024-09-02 09:47:55 +00:00
|
|
|
.cardGameMainWrapper {
|
|
|
|
position: relative;
|
|
|
|
padding-top: 150%;
|
|
|
|
}
|
|
|
|
|
2024-07-11 11:19:12 +00:00
|
|
|
.cardGameMain {
|
|
|
|
border-radius: 15px;
|
2024-09-02 08:43:39 +00:00
|
|
|
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 */
|
2024-09-02 09:47:55 +00:00
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
2024-07-11 11:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.cardGameMainTitle {
|
|
|
|
transition: ease 0.4s;
|
2024-09-02 08:43:39 +00:00
|
|
|
color: rgba(255, 255, 255, 0.5);
|
2024-07-11 11:19:12 +00:00
|
|
|
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;
|
2024-09-02 18:52:21 +00:00
|
|
|
text-align: center;
|
2024-07-11 11:19:12 +00:00
|
|
|
}
|