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 { | ||
background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(255, 140, 0, 0.2)); | |||
border-radius: 10px; | |||
padding: 12px 18px; | |||
margin-bottom: 10px; | |||
font-size: 1.2rem; | |||
font-weight: bold; | font-weight: bold; | ||
color: #ffcc70; | |||
display: flex; | |||
align-items: center; | |||
gap: 10px; | |||
border: 1px solid rgba(255, 170, 0, 0.5); | |||
box-shadow: inset 0 0 8px rgba(255, 165, 0, 0.2), 0 4px 15px rgba(255, 165, 0, 0.3); | |||
position: relative; | |||
overflow: hidden; | |||
cursor: pointer; | |||
} | } | ||
Revision as of 12:17, 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 {
background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(255, 140, 0, 0.2));
border-radius: 10px;
padding: 12px 18px;
margin-bottom: 10px;
font-size: 1.2rem;
font-weight: bold;
color: #ffcc70;
display: flex;
align-items: center;
gap: 10px;
border: 1px solid rgba(255, 170, 0, 0.5);
box-shadow: inset 0 0 8px rgba(255, 165, 0, 0.2), 0 4px 15px rgba(255, 165, 0, 0.3);
position: relative;
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 */
}