MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 11: | Line 11: | ||
padding: 40px; | padding: 40px; | ||
border-radius: 20px; | border-radius: 20px; | ||
width: | width: 10%; | ||
max-width: | max-width: 1000px; | ||
height: auto; | height: auto; | ||
margin: 0 auto 40px auto; /* Center + spacing below */ | margin: 0 auto 40px auto; /* Center + spacing below */ | ||
Revision as of 12:11, 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; }
#mw-panel {
background: linear-gradient(135deg, rgba(31, 31, 31, 0.4), rgba(50, 50, 50, 0.3));
padding: 40px;
border-radius: 20px;
width: 10%;
max-width: 1000px;
height: auto;
margin: 0 auto 40px auto; /* Center + spacing below */
text-align: center;
flex-direction: column;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
border: 2px solid rgba(249, 168, 38, 0.4); /* Subtle glowing border */
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(249, 168, 38, 0.5); /* Glow effect */
}
/* Change menu text color */
#mw-panel a {
color: #ffffff !important; /* White text */
font-weight: bold;
}
/* 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 */
}