MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tags: Manual revert Reverted |
No edit summary Tag: Reverted |
||
Line 36: | Line 36: | ||
/* Sidebar Styles */ | /* Sidebar Styles */ | ||
#mw-panel | #mw-panel { | ||
background-color: # | background-color: #e6f7ff !important; /* Very light blue background */ | ||
color: # | color: #000 !important; /* Black text color */ | ||
padding: 10px; | padding: 10px; | ||
font-family: Arial, sans-serif; | font-family: Arial, sans-serif; | ||
Line 44: | Line 44: | ||
#p-logo { | #p-logo { | ||
background-color: #e6f7ff !important; /* Background color for the logo */ | |||
padding: 10px; | |||
text-align: center; | text-align: center; | ||
} | } | ||
#p-logo a { | #p-logo a { | ||
color: # | color: #000 !important; /* Black text color */ | ||
text-decoration: none; | text-decoration: none; | ||
} | } | ||
Line 62: | Line 64: | ||
#p-navigation .body ul li a { | #p-navigation .body ul li a { | ||
color: # | color: #000 !important; /* Black text color */ | ||
text-decoration: none; | text-decoration: none; | ||
padding: 5px 10px; | padding: 5px 10px; | ||
Line 69: | Line 71: | ||
#p-navigation .body ul li a:hover { | #p-navigation .body ul li a:hover { | ||
background-color: # | background-color: #b0e0e6 !important; /* Hover background color */ | ||
} | } | ||
#p-tb, #p-lang { | #p-tb, #p-lang { | ||
color: # | color: #000 !important; /* Black text color */ | ||
padding: 10px; | padding: 10px; | ||
} | } | ||
Line 87: | Line 89: | ||
#p-tb .body ul li a, #p-lang .body ul li a { | #p-tb .body ul li a, #p-lang .body ul li a { | ||
color: # | color: #000 !important; /* Black text color */ | ||
text-decoration: none; | text-decoration: none; | ||
padding: 5px 10px; | padding: 5px 10px; | ||
Line 94: | Line 96: | ||
#p-tb .body ul li a:hover, #p-lang .body ul li a:hover { | #p-tb .body ul li a:hover, #p-lang .body ul li a:hover { | ||
background-color: # | background-color: #b0e0e6 !important; /* Hover background color */ | ||
} | } |
Revision as of 00:23, 27 June 2024
/* General page background */ body { background-color: #e6f7ff; /* Very light blue background */ } /* Header background */ #content h1, #content h2 { background-color: #4682b4; /* Steel blue for headers */ color: white; padding: 10px; border-radius: 5px; } /* Link colors */ a { color: #1e90ff; /* Dodger blue for links */ } a:visited { color: #104e8b; /* Darker blue for visited links */ } /* Box styling for the images */ div[style*="display: inline-block; margin: 10px;"] { background-color: #87cefa; /* Light sky blue for boxes */ border: 2px solid #4682b4; /* Steel blue border */ border-radius: 10px; padding: 10px; } /* Text styling within boxes */ div[style*="display: inline-block; margin: 10px;"] p { color: #000080; /* Navy for text */ font-weight: bold; } /* Sidebar Styles */ #mw-panel { background-color: #e6f7ff !important; /* Very light blue background */ color: #000 !important; /* Black text color */ padding: 10px; font-family: Arial, sans-serif; } #p-logo { background-color: #e6f7ff !important; /* Background color for the logo */ padding: 10px; text-align: center; } #p-logo a { color: #000 !important; /* Black text color */ text-decoration: none; } #p-navigation .body ul { list-style-type: none; padding: 0; } #p-navigation .body ul li { margin: 5px 0; } #p-navigation .body ul li a { color: #000 !important; /* Black text color */ text-decoration: none; padding: 5px 10px; display: block; } #p-navigation .body ul li a:hover { background-color: #b0e0e6 !important; /* Hover background color */ } #p-tb, #p-lang { color: #000 !important; /* Black text color */ padding: 10px; } #p-tb .body ul, #p-lang .body ul { list-style-type: none; padding: 0; } #p-tb .body ul li, #p-lang .body ul li { margin: 5px 0; } #p-tb .body ul li a, #p-lang .body ul li a { color: #000 !important; /* Black text color */ text-decoration: none; padding: 5px 10px; display: block; } #p-tb .body ul li a:hover, #p-lang .body ul li a:hover { background-color: #b0e0e6 !important; /* Hover background color */ }