More actions
Admornstein (talk | contribs) Created page with "→General section wrapper: .luna-section { margin: 30px 0; padding: 18px 20px; border-left: 3px solid; border-radius: 4px; background: rgba(20,20,20,0.65); line-height: 1.55; color: #e6e6e6; } →Headings with alternating accents: .luna-heading-gold { font-size: 26px; color: #ffcc00; margin-bottom: 6px; font-weight: bold; text-shadow: 0 0 6px #000; } .luna-heading-crimson { font-size: 26px; color: #aa3333; margin-bottom: 6px; font-we..." |
No edit summary Tag: Manual revert |
||
| (27 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
/* | /* === SECTION HEADINGS === */ | ||
.luna-heading { | |||
font-family:'AngerStyles', serif; | |||
font-size:32px; | |||
line-height:1.2; | |||
text-align:left; | |||
margin:40px 0 8px; | |||
position:relative; | |||
text-shadow:0 0 10px #000; | |||
} | |||
/* Color Variants */ | |||
.luna-heading.gold { color:#ffd666; } | |||
.luna-heading.crimson { color:#cc4444; } | |||
.luna-heading.purple { color:#b266ff; } | |||
.luna-heading.cyan { color:#33ccee; } | |||
.luna-heading.green { color:#66cc66; } | |||
.luna-heading.orange { color:#ff9933; } | |||
/* Glowing underline (inherits currentColor) */ | |||
.luna-heading::after { | |||
content:""; | |||
position:absolute; | |||
left:0; | |||
bottom:-8px; | |||
width:100%; | |||
height:2px; | |||
background:linear-gradient( | |||
90deg, | |||
rgba(0,0,0,0) 0%, | |||
currentColor 20%, | |||
#ffffffaa 50%, | |||
currentColor 80%, | |||
rgba(0,0,0,0) 100% | |||
); | |||
box-shadow:0 0 8px currentColor; | |||
} | |||
/* === SECTION BODY === */ | |||
.luna-section { | .luna-section { | ||
margin: | margin:16px 0 32px; | ||
padding: 18px | padding:18px 24px; | ||
border-left: 3px solid; | border-left:3px solid currentColor; | ||
border-radius: | border-radius:6px; | ||
background: rgba(20,20,20,0. | background:rgba(20,20,20,0.7); | ||
line-height: 1.55; | line-height:1.55; | ||
box-shadow:0 0 12px #000 inset; | |||
} | } | ||
/* | /* Background accents per color */ | ||
.luna- | .luna-section.gold { border-color:#ffd666; background:rgba(35,30,10,0.25); } | ||
.luna-section.crimson { border-color:#cc4444; background:rgba(35,20,20,0.25); } | |||
.luna-section.purple { border-color:#b266ff; background:rgba(30,20,40,0.25); } | |||
margin | .luna-section.cyan { border-color:#33ccee; background:rgba(15,30,35,0.25); } | ||
.luna-section.green { border-color:#66cc66; background:rgba(20,35,20,0.25); } | |||
.luna-section.orange { border-color:#ff9933; background:rgba(40,25,10,0.25); } | |||
/* === LISTS === */ | |||
.luna-section ul { | |||
margin:8px 0 8px 20px; | |||
} | |||
.luna-section li { | |||
margin:4px 0; | |||
padding-left:4px; | |||
} | } | ||
.luna- | |||
/* === DIAMOND BULLETS === */ | |||
color: | .luna-section li::marker { | ||
content:"◆ "; | |||
color:currentColor; | |||
} | } | ||
.hover-gif { | |||
. | display:inline-block; | ||
width:200px; | |||
height:200px; | |||
background:url("https://wiki.cathedralofblades.com/images/Valravn.png") no-repeat center/cover; | |||
} | } | ||
. | .hover-gif:hover { | ||
background-image:url("https://wiki.cathedralofblades.com/images/Valravndemo.gif"); | |||
} | |||
.hover-gif img { display:none; } /* Hide the original wiki-rendered <img> */ | |||
.citizen-overflow-wrapper { | |||
max-width: calc(100vw - 40px); | |||
} | |||
.smaller-table .citizen-overflow-wrapper { | |||
max-width: calc(100vw - 100px); | |||
} | |||
.wikitable { | |||
width: 100%; | |||
} | |||
.luna-section { | |||
overflow-x: auto; | |||
max-width: calc(100vw - 40px); | |||
} | } | ||
Latest revision as of 10:20, 5 November 2025
/* === SECTION HEADINGS === */
.luna-heading {
font-family:'AngerStyles', serif;
font-size:32px;
line-height:1.2;
text-align:left;
margin:40px 0 8px;
position:relative;
text-shadow:0 0 10px #000;
}
/* Color Variants */
.luna-heading.gold { color:#ffd666; }
.luna-heading.crimson { color:#cc4444; }
.luna-heading.purple { color:#b266ff; }
.luna-heading.cyan { color:#33ccee; }
.luna-heading.green { color:#66cc66; }
.luna-heading.orange { color:#ff9933; }
/* Glowing underline (inherits currentColor) */
.luna-heading::after {
content:"";
position:absolute;
left:0;
bottom:-8px;
width:100%;
height:2px;
background:linear-gradient(
90deg,
rgba(0,0,0,0) 0%,
currentColor 20%,
#ffffffaa 50%,
currentColor 80%,
rgba(0,0,0,0) 100%
);
box-shadow:0 0 8px currentColor;
}
/* === SECTION BODY === */
.luna-section {
margin:16px 0 32px;
padding:18px 24px;
border-left:3px solid currentColor;
border-radius:6px;
background:rgba(20,20,20,0.7);
line-height:1.55;
box-shadow:0 0 12px #000 inset;
}
/* Background accents per color */
.luna-section.gold { border-color:#ffd666; background:rgba(35,30,10,0.25); }
.luna-section.crimson { border-color:#cc4444; background:rgba(35,20,20,0.25); }
.luna-section.purple { border-color:#b266ff; background:rgba(30,20,40,0.25); }
.luna-section.cyan { border-color:#33ccee; background:rgba(15,30,35,0.25); }
.luna-section.green { border-color:#66cc66; background:rgba(20,35,20,0.25); }
.luna-section.orange { border-color:#ff9933; background:rgba(40,25,10,0.25); }
/* === LISTS === */
.luna-section ul {
margin:8px 0 8px 20px;
}
.luna-section li {
margin:4px 0;
padding-left:4px;
}
/* === DIAMOND BULLETS === */
.luna-section li::marker {
content:"◆ ";
color:currentColor;
}
.hover-gif {
display:inline-block;
width:200px;
height:200px;
background:url("https://wiki.cathedralofblades.com/images/Valravn.png") no-repeat center/cover;
}
.hover-gif:hover {
background-image:url("https://wiki.cathedralofblades.com/images/Valravndemo.gif");
}
.hover-gif img { display:none; } /* Hide the original wiki-rendered <img> */
.citizen-overflow-wrapper {
max-width: calc(100vw - 40px);
}
.smaller-table .citizen-overflow-wrapper {
max-width: calc(100vw - 100px);
}
.wikitable {
width: 100%;
}
.luna-section {
overflow-x: auto;
max-width: calc(100vw - 40px);
}