MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 10: | Line 10: | ||
/* Change menu text color */ | /* Change menu text color */ | ||
#mw-panel a { | #mw-panel a { | ||
border-radius: 10px; | border-radius: 10px; | ||
padding: 10px; | padding: 10px; | ||
| Line 20: | Line 19: | ||
align-items: center; | align-items: center; | ||
gap: 10px; | gap: 10px; | ||
box-shadow: inset 0 0 8px rgba(255, 165, 0, 0.2), 0 4px 15px rgba(255, 165, 0, 0.3); | box-shadow: inset 0 0 8px rgba(255, 165, 0, 0.2), 0 4px 15px rgba(255, 165, 0, 0.3); | ||
overflow: hidden; | overflow: hidden; | ||
Revision as of 12:18, 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 menu text color */
#mw-panel a {
border-radius: 10px;
padding: 10px;
margin-bottom: 10px;
font-size: 1.2rem;
font-weight: bold;
color: #ffcc70;
display: flex;
align-items: center;
gap: 10px;
box-shadow: inset 0 0 8px rgba(255, 165, 0, 0.2), 0 4px 15px rgba(255, 165, 0, 0.3);
overflow: hidden;
cursor: pointer;
}
/* Change hover effect */
#mw-panel a:hover {
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 */
}