MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 20: | Line 20: | ||
align-items: left; | align-items: left; | ||
gap: 10px; | gap: 10px; | ||
text-shadow: | text-shadow: 2px 2px 5px rgba(0, 0, 0, 1); | ||
cursor: pointer; | cursor: pointer; | ||
} | } | ||
Revision as of 12:22, 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;
margin-left: 10px;
font-size: 1.2rem;
font-weight: bold;
color: #ffcc70;
display: flex;
align-items: left;
gap: 10px;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
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 */
}