More actions
Content deleted Content added
No edit summary |
No edit summary |
||
Line 33: | Line 33: | ||
text-align: center; |
text-align: center; |
||
line-height: 1.6; |
line-height: 1.6; |
||
min-height: 380px; |
min-height: 380px; /* Ensures equal height */ |
||
max-height: 380px; |
|||
padding: 1.5em; |
|||
background-color: #0f0f14; |
|||
border-radius: 10px; |
|||
box-sizing: border-box; |
|||
box-shadow: 0 0 10px rgba(50, 30, 80, 0.2); |
|||
} |
} |
Revision as of 17:46, 3 June 2025
.banner-container {
height: 30%;
overflow: hidden;
position: relative;
}
.banner-container img {
width: 100%;
position: relative;
top: -70%;
object-fit: cover;
border-radius: var(--border-radius-medium);
}
.card-patreon img {
filter: invert(32%) sepia(19%) saturate(5052%) hue-rotate(328deg) brightness(125%) contrast(110%); /* https://codepen.io/sosuke/pen/Pjoqqp */
}
.ritual-columns {
display: flex;
gap: 2em;
justify-content: center;
margin-top: 2em;
font-style: italic;
font-family: Georgia, serif;
color: #c2a8ff;
opacity: 0.85;
flex-wrap: wrap;
}
.ritual-block {
flex: 1 1 300px;
text-align: center;
line-height: 1.6;
min-height: 380px; /* Ensures equal height */
}