MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 82: | Line 82: | ||
} | } | ||
/* General Table Styling */ | |||
.wikitable { | |||
width: 100%; | |||
border: 2px solid #666; | |||
border-radius: 8px; | |||
background: linear-gradient(to bottom, #333, #222); | |||
color: #eee; /* Softer white text for better contrast */ | |||
border-collapse: separate; /* Better spacing for modern design */ | |||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Modern shadow effect */ | |||
} | |||
/* Header Styling */ | |||
.wikitable th { | |||
background: #444; | |||
color: #ffff55; | |||
font-weight: bold; | |||
padding: 10px 15px; | |||
border-bottom: 3px solid #666; | |||
text-transform: uppercase; | |||
} | |||
/* Table Cell Styling */ | |||
.wikitable td { | .wikitable td { | ||
color: # | color: #ddd; /* Softer color for text */ | ||
padding: 8px 12px; | |||
border-top: 1px solid #666; | |||
transition: background 0.3s ease, color 0.3s ease; | |||
} | } | ||
/* Highlight Effect on Hover */ | |||
.wikitable td:hover { | .wikitable td:hover { | ||
color: #ffff55; /* | background: #555; /* Softer background on hover */ | ||
color: #ffff55; | |||
cursor: pointer; /* Indicates clickable content */ | |||
} | } | ||
/* Table Link Styling */ | |||
.wikitable a { | .wikitable a { | ||
color: #fff !important; | color: #fff !important; /* Default link color */ | ||
text-decoration: none; | text-decoration: none; | ||
font-weight: bold; | |||
transition: color 0.3s ease; | |||
} | } | ||
/* Hover Effect for Links */ | |||
.wikitable a:hover { | .wikitable a:hover { | ||
color: #ffff55 !important; | color: #ffff55 !important; /* Yellow on hover */ | ||
text-decoration: underline; /* | text-decoration: underline; | ||
} | |||
/* Styling for Unstyled Elements */ | |||
body { | |||
background: #1a1a1a; /* Dark background for contrast */ | |||
color: #ddd; /* Softer text for improved readability */ | |||
font-family: 'Arial', sans-serif; /* Clean, modern font */ | |||
} | |||
h1, h2, h3 { | |||
color: #ffff55; /* Stand-out headers in yellow */ | |||
border-bottom: 2px solid #555; | |||
padding-bottom: 5px; | |||
margin-bottom: 15px; | |||
} | |||
p { | |||
line-height: 1.6; | |||
margin: 0 0 10px; | |||
} | |||
/* Button Styles */ | |||
.button { | |||
background: #444; | |||
color: #fff; | |||
padding: 8px 16px; | |||
border: 2px solid #666; | |||
border-radius: 5px; | |||
transition: background 0.3s ease, color 0.3s ease; | |||
} | |||
.button:hover { | |||
background: #ffff55; | |||
color: #222; | |||
} | } | ||
Revision as of 09:14, 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;
}
/* General Table Styling */
.wikitable {
width: 100%;
border: 2px solid #666;
border-radius: 8px;
background: linear-gradient(to bottom, #333, #222);
color: #eee; /* Softer white text for better contrast */
border-collapse: separate; /* Better spacing for modern design */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Modern shadow effect */
}
/* Header Styling */
.wikitable th {
background: #444;
color: #ffff55;
font-weight: bold;
padding: 10px 15px;
border-bottom: 3px solid #666;
text-transform: uppercase;
}
/* Table Cell Styling */
.wikitable td {
color: #ddd; /* Softer color for text */
padding: 8px 12px;
border-top: 1px solid #666;
transition: background 0.3s ease, color 0.3s ease;
}
/* Highlight Effect on Hover */
.wikitable td:hover {
background: #555; /* Softer background on hover */
color: #ffff55;
cursor: pointer; /* Indicates clickable content */
}
/* Table Link Styling */
.wikitable a {
color: #fff !important; /* Default link color */
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
/* Hover Effect for Links */
.wikitable a:hover {
color: #ffff55 !important; /* Yellow on hover */
text-decoration: underline;
}
/* Styling for Unstyled Elements */
body {
background: #1a1a1a; /* Dark background for contrast */
color: #ddd; /* Softer text for improved readability */
font-family: 'Arial', sans-serif; /* Clean, modern font */
}
h1, h2, h3 {
color: #ffff55; /* Stand-out headers in yellow */
border-bottom: 2px solid #555;
padding-bottom: 5px;
margin-bottom: 15px;
}
p {
line-height: 1.6;
margin: 0 0 10px;
}
/* Button Styles */
.button {
background: #444;
color: #fff;
padding: 8px 16px;
border: 2px solid #666;
border-radius: 5px;
transition: background 0.3s ease, color 0.3s ease;
}
.button:hover {
background: #ffff55;
color: #222;
}