MediaWiki:Common.css: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* ============================================================ | /* ============================================================ | ||
KH LEAF THEME - | KH LEAF THEME - GREEN & GOLD EDITION | ||
============================================================ */ | ============================================================ */ | ||
| Line 6: | Line 6: | ||
.portable-infobox { | .portable-infobox { | ||
background-color: #ffffff !important; | background-color: #ffffff !important; | ||
border: 2px solid # | border: 2px solid #3e5a47 !important; /* Changed to Green border */ | ||
width: 300px !important; | width: 300px !important; | ||
float: right !important; | float: right !important; | ||
| Line 17: | Line 17: | ||
} | } | ||
/* 2. INFOBOX TITLE (Yellow Background, Dark Text) */ | |||
.portable-infobox .pi-title { | .portable-infobox .pi-title { | ||
background-color: # | background-color: #ffd700 !important; /* Gold/Yellow */ | ||
color: # | color: #2d4234 !important; /* Dark Green text for readability */ | ||
text-align: center !important; | text-align: center !important; | ||
padding: 12px 0 !important; | padding: 12px 0 !important; | ||
| Line 27: | Line 28: | ||
margin: -2px -2px 0 -2px !important; | margin: -2px -2px 0 -2px !important; | ||
box-sizing: border-box !important; | box-sizing: border-box !important; | ||
font-weight: bold !important; | |||
} | } | ||
/* 3. INFOBOX SECTION HEADERS (Green Background, White Text) */ | |||
.portable-infobox .pi-header { | .portable-infobox .pi-header { | ||
background-color: #3e5a47 !important; | background-color: #3e5a47 !important; /* Forest Green */ | ||
color: #ffffff !important; | color: #ffffff !important; /* White text */ | ||
text-align: center !important; | text-align: center !important; | ||
padding: 8px 0 !important; | padding: 8px 0 !important; | ||
| Line 44: | Line 46: | ||
} | } | ||
/* 4. THE CUSTOM SIDEBAR */ | |||
/* Targets the sidebar area (Vector skin) */ | |||
#mw-panel { | |||
background-color: #f4f9f6 !important; /* Very faint leaf-green wash */ | |||
border-right: 2px solid #3e5a47 !important; /* Forest Green divider */ | |||
height: 100vh !important; | |||
} | |||
/* Sidebar Link Styling */ | |||
#mw-panel .vector-menu-content-list li a { | |||
color: #3e5a47 !important; | |||
font-family: "Georgia", serif !important; | |||
} | |||
#mw-panel .vector-menu-content-list li a:hover { | |||
color: #ffd700 !important; /* Glows Yellow on hover */ | |||
text-decoration: none !important; | |||
} | |||
/* 5. IMAGE AREA (Centered) */ | |||
.portable-infobox .pi-image { | .portable-infobox .pi-image { | ||
background-color: # | background-color: #fcfdfc !important; | ||
padding: 15px !important; | padding: 15px !important; | ||
text-align: center !important; | text-align: center !important; | ||
display: block | display: block; | ||
} | } | ||
| Line 56: | Line 77: | ||
display: block !important; | display: block !important; | ||
max-width: 100% !important; | max-width: 100% !important; | ||
} | } | ||
/* 6. DATA ROWS & LEAVES */ | |||
.portable-infobox .pi-data { | .portable-infobox .pi-data { | ||
display: flex !important; | display: flex !important; | ||
| Line 70: | Line 91: | ||
border-right: 1px solid #ddd !important; | border-right: 1px solid #ddd !important; | ||
font-size: 11px !important; | font-size: 11px !important; | ||
font-weight: bold | font-weight: bold; | ||
} | } | ||
| Line 83: | Line 103: | ||
content: "\1F343 " !important; | content: "\1F343 " !important; | ||
font-size: 10px !important; | font-size: 10px !important; | ||
} | } | ||
/* | /* 7. ARTICLE HEADERS (H2/H3) */ | ||
.mw-parser-output h2, .mw-parser-output h3 { | .mw-parser-output h2, .mw-parser-output h3 { | ||
border-bottom: 2px solid #3e5a47 !important; | border-bottom: 2px solid #3e5a47 !important; | ||
color: # | color: #3e5a47 !important; /* Switched to Green to match theme */ | ||
} | } | ||
| Line 97: | Line 114: | ||
.mw-parser-output h3::before { content: "\1F343 " !important; font-size: 16px !important; } | .mw-parser-output h3::before { content: "\1F343 " !important; font-size: 16px !important; } | ||
/* | /* 8. TABLE OF CONTENTS */ | ||
#toc, .toc { | #toc, .toc { | ||
border: 2px solid #3e5a47 !important; | border: 2px solid #3e5a47 !important; | ||
background-color: #fff !important; | |||
} | } | ||
#toctitle h2 { | #toctitle h2 { color: #3e5a47 !important; border-bottom: 1px solid #ffd700 !important; } | ||
.tocnumber { color: #ffd700 !important; } | |||
} | |||
/* 9. AUTOMATIC FOOTER */ | |||
/* | |||
.mw-parser-output::after { | .mw-parser-output::after { | ||
content: "🍃\A END OF ENTRY"; | content: "🍃\A END OF ENTRY"; | ||
| Line 129: | Line 133: | ||
border-top: 1px solid #3e5a47 !important; | border-top: 1px solid #3e5a47 !important; | ||
font-family: "Georgia", serif !important; | font-family: "Georgia", serif !important; | ||
color: # | color: #3e5a47 !important; | ||
font-size: 10px !important; | font-size: 10px !important; | ||
letter-spacing: 3px !important; | letter-spacing: 3px !important; | ||
} | } | ||
/* | /* 10. UI FIXES */ | ||
#p-search, .vector-search-box | #p-search, .vector-search-box { | ||
float: right !important; | float: right !important; | ||
} | } | ||