MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 89: | Line 89: | ||
.wikitable td:hover { | .wikitable td:hover { | ||
color: #ffff55; /* Highlight color - yellow */ | color: #ffff55; /* Highlight color - yellow */ | ||
} | |||
.wikitable a { | |||
color: #fff !important; /* White text for links */ | |||
text-decoration: none; /* Optional: Removes underline */ | |||
} | |||
.wikitable a:hover { | |||
color: #ffff55 !important; /* Yellow on hover */ | |||
text-decoration: underline; /* Optional: Underline on hover */ | |||
} | } | ||
Revision as of 08:39, 9 March 2025
/* CSS placed here will be applied to all skins */
body {
background: url("https://ragnarok-infinitezero.com.br/images/background5.jpg") no-repeat center center fixed;
background-size: cover;
}
#p-tb { display: none !important; }
/* Move the logo to the left */
#p-logo {
transform: translateX(-20px);
transform: translateY(-20px);
}
/* Change menu text color */
#mw-panel a {
border-radius: 10px;
padding: 10px;
margin-bottom: 10px;
margin-left: 10px;
font-size: 1rem;
font-weight: bold;
color: #fff;
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 */
}
/* Sidebar Title Styling */
#mw-panel .portal h3 {
font-size: 16px; /* Adjust title size */
font-weight: bold;
color: #ffcc00; /* Gold color */
text-transform: uppercase;
text-align: center;
border-bottom: 2px solid #ffcc00;
padding-bottom: 5px;
margin-bottom: 10px;
}
/* Change footer background color */
#footer {
background-color: #1a1a1a; /* Dark gray */
color: #ffffff; /* White text */
padding: 10px;
justify-content: center;
align-text: center;
}
/* Change footer text styling */
#footer a {
color: #ffcc00 !important; /* Gold links */
font-weight: bold;
}
/* Change hover effect */
#footer a:hover {
color: #ff6600 !important; /* Orange on hover */
}
/* Adjust text alignment and spacing */
#footer-info {
text-align: center;
font-size: 14px;
}
#footer-info-lastmod {
color: #fff;
}
.wikitable td {
color: #fff; /* Default color - white */
font-weight: bold;
}
.wikitable td:hover {
color: #ffff55; /* Highlight color - yellow */
}
.wikitable a {
color: #fff !important; /* White text for links */
text-decoration: none; /* Optional: Removes underline */
}
.wikitable a:hover {
color: #ffff55 !important; /* Yellow on hover */
text-decoration: underline; /* Optional: Underline on hover */
}