MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 6: | Line 6: | ||
#p-tb { display: none !important; } | #p-tb { display: none !important; } | ||
/* Change sidebar background color */ | |||
#mw-panel { | |||
background-color: #1a1a1a; /* Dark gray */ | |||
} | |||
/* Change menu text color */ | |||
#mw-panel a { | |||
color: #ffffff !important; /* White text */ | |||
} | |||
/* Change hover effect */ | |||
#mw-panel a:hover { | |||
background-color: #444444; /* Darker gray when hovered */ | |||
color: #ffcc00 !important; /* Gold text */ | |||
} | |||
/* Change active/current menu item */ | |||
#mw-panel .selected { | |||
background-color: #ffcc00; /* Gold background for active menu */ | |||
color: #1a1a1a !important; /* Dark text */ | |||
} | |||
Revision as of 12:06, 7 March 2025
/* CSS placed here will be applied to all skins */
body {
background: url("https://ragnarok-infinitezero.com.br/images/academy.jpg") no-repeat center center fixed;
background-size: cover;
}
#p-tb { display: none !important; }
/* Change sidebar background color */
#mw-panel {
background-color: #1a1a1a; /* Dark gray */
}
/* Change menu text color */
#mw-panel a {
color: #ffffff !important; /* White text */
}
/* Change hover effect */
#mw-panel a:hover {
background-color: #444444; /* Darker gray when hovered */
color: #ffcc00 !important; /* Gold text */
}
/* Change active/current menu item */
#mw-panel .selected {
background-color: #ffcc00; /* Gold background for active menu */
color: #1a1a1a !important; /* Dark text */
}