You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
/* General container for all cards */
.card-container {
display: grid;
grid-template-columns: repeat(2, 1fr); /* Two cards per row */
gap: 20px;
padding: 20px;
box-sizing: border-box;
justify-items: center; /* Center cards horizontally */
align-items: start; /* Align cards at the top vertically */
}
/* Card styling - Increased size slightly */
.card {
color: black; /* Ensure text inside the card is black */
width: 480px; /* Increased card width */
height: 380px; /* Increased card height */
background-color: #fff;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
position: relative;
cursor: pointer;
000
1:0
Return to MediaWiki:Common.css.