More actions
Content deleted Content added
No edit summary |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
⚫ | |||
.ritual-block code, |
|||
.ritual-block .mw-code { |
|||
all: unset; |
|||
font-family: 'Courier New', monospace; |
|||
⚫ | |||
display: block; |
|||
white-space: pre-wrap; |
|||
⚫ | |||
.banner-container { |
.banner-container { |
||
height: 30%; |
height: 30%; |
||
Line 15: | Line 25: | ||
.card-patreon img { |
.card-patreon img { |
||
filter: invert(32%) sepia(19%) saturate(5052%) hue-rotate(328deg) brightness(125%) contrast(110%); /* https://codepen.io/sosuke/pen/Pjoqqp */ |
filter: invert(32%) sepia(19%) saturate(5052%) hue-rotate(328deg) brightness(125%) contrast(110%); /* https://codepen.io/sosuke/pen/Pjoqqp */ |
||
⚫ | |||
⚫ | |||
border: none !important; |
|||
background: none !important; |
|||
padding: 0 !important; |
|||
box-shadow: none !important; |
|||
border-radius: 0 !important; |
|||
} |
} |
||
.ritual-columns { |
.ritual-columns { |
||
display: flex; |
display: flex; |
||
⚫ | |||
flex-wrap: wrap; |
flex-wrap: wrap; |
||
⚫ | |||
align-items: stretch; |
align-items: stretch; |
||
} |
} |
||
Line 34: | Line 36: | ||
.ritual-block { |
.ritual-block { |
||
flex: 1 1 45%; |
flex: 1 1 45%; |
||
⚫ | |||
font-family: 'Courier New', monospace; |
font-family: 'Courier New', monospace; |
||
text-transform: uppercase; |
|||
padding: 1rem; |
padding: 1rem; |
||
⚫ | |||
border: 1px solid currentColor; |
|||
⚫ | |||
⚫ | |||
display: flex; |
display: flex; |
||
flex-direction: column; |
flex-direction: column; |
||
justify-content: space-between; |
justify-content: space-between; |
||
min-height: 300px; |
min-height: 300px; |
||
⚫ | |||
} |
} |
Latest revision as of 17:56, 3 June 2025
.ritual-block pre,
.ritual-block code,
.ritual-block .mw-code {
all: unset;
font-family: 'Courier New', monospace;
text-transform: uppercase;
display: block;
white-space: pre-wrap;
}
.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;
flex-wrap: wrap;
gap: 1rem;
align-items: stretch;
}
.ritual-block {
flex: 1 1 45%;
font-family: 'Courier New', monospace;
text-transform: uppercase;
padding: 1rem;
box-shadow: 0 0 8px rgba(255, 0, 60, 0.3);
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 300px;
}