MediaWiki:Timeless.css: Difference between revisions
From The HOA
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 3: | Line 3: | ||
/* Resources Category Menu */ | /* Resources Category Menu */ | ||
#custom-category-menu { | #custom-category-menu { | ||
background: | background-color: rgba(255, 255, 255, 0.9) !important; /* Light background */ | ||
border: 1px solid | border: 1px solid #a2a9b1 !important; /* MediaWiki default border */ | ||
border-radius: | border-radius: 6px !important; | ||
padding: 10px; | padding: 10px !important; | ||
margin: 10px 0; | margin: 10px 0 !important; | ||
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1) !important; | |||
width: auto !important; | |||
display: block !important; | |||
} | } | ||
#custom-category-menu h3 { | #custom-category-menu h3 { | ||
font-size: 1.2em; | font-size: 1.2em !important; | ||
font-weight: bold !important; | |||
text-align: center; | text-align: center !important; | ||
margin-bottom: 8px !important; | |||
color: #202122 !important; | |||
} | } | ||
#custom-category-menu ul { | #custom-category-menu ul { | ||
list-style: none; | list-style: none !important; | ||
padding: 0; | padding: 0 !important; | ||
margin: 0 !important; | |||
} | } | ||
#custom-category-menu li { | #custom-category-menu li { | ||
padding: | padding: 6px 0 !important; | ||
} | } | ||
#custom-category-menu a { | #custom-category-menu a { | ||
text-decoration: none; | text-decoration: none !important; | ||
color: | color: #0645ad !important; /* Standard MediaWiki blue */ | ||
font-weight: normal !important; | |||
} | } | ||
#custom-category-menu a:hover { | #custom-category-menu a:hover { | ||
text-decoration: underline; | text-decoration: underline !important; | ||
color: #3366cc !important; | |||
} | } | ||
/* --------------------------- */ | /* --------------------------- */ |
Revision as of 06:50, 7 March 2025
/* CSS placed here will affect users of the Timeless skin */ /* Resources Category Menu */ #custom-category-menu { background-color: rgba(255, 255, 255, 0.9) !important; /* Light background */ border: 1px solid #a2a9b1 !important; /* MediaWiki default border */ border-radius: 6px !important; padding: 10px !important; margin: 10px 0 !important; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1) !important; width: auto !important; display: block !important; } #custom-category-menu h3 { font-size: 1.2em !important; font-weight: bold !important; text-align: center !important; margin-bottom: 8px !important; color: #202122 !important; } #custom-category-menu ul { list-style: none !important; padding: 0 !important; margin: 0 !important; } #custom-category-menu li { padding: 6px 0 !important; } #custom-category-menu a { text-decoration: none !important; color: #0645ad !important; /* Standard MediaWiki blue */ font-weight: normal !important; } #custom-category-menu a:hover { text-decoration: underline !important; color: #3366cc !important; } /* --------------------------- */