MediaWiki:Common.css: Difference between revisions
From Ragnafied Wiki
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* ===== MEDIAWIKI COMMON.CSS ENHANCEMENTS ===== */ | /* ===== MEDIAWIKI COMMON.CSS ENHANCEMENTS ===== */ | ||
/* Last updated: 2024 */ | /* Last updated: 2024 - CLEANED VERSION */ | ||
/* === Improved Tables === */ | /* === Improved Tables === */ | ||
| Line 112: | Line 112: | ||
padding: 12px; | padding: 12px; | ||
overflow-x: auto; | overflow-x: auto; | ||
} | } | ||
| Line 185: | Line 166: | ||
} | } | ||
/* === | /* === Logo Replacement === */ | ||
#p-logo a { | #p-logo a { | ||
background-image: url('https://wiki.ragnafied.net/images/e/ee/Ragnawikilogo.png') !important; | background-image: url('https://wiki.ragnafied.net/images/e/ee/Ragnawikilogo.png') !important; | ||
| Line 221: | Line 190: | ||
} | } | ||
/* Modern | /* === Modern Card System (UNIFIED) === */ | ||
.wiki-header-container { | .wiki-header-container, | ||
.quick-nav-container, | |||
.about-container, | |||
.guide-container, | |||
.accounts-container, | |||
.autoloot-container { | |||
max-width: 1200px; | max-width: 1200px; | ||
margin: 0 auto; | margin: 0 auto; | ||
| Line 228: | Line 202: | ||
} | } | ||
.info-card { | .info-card, | ||
.nav-card { | |||
background: white; | background: white; | ||
border-radius: 12px; | border-radius: 12px; | ||
| Line 235: | Line 210: | ||
transition: transform 0.3s ease, box-shadow 0.3s ease; | transition: transform 0.3s ease, box-shadow 0.3s ease; | ||
border: 1px solid #e1e8ed; | border: 1px solid #e1e8ed; | ||
margin-bottom: 25px; | |||
} | } | ||
.nav-card { | .nav-card { | ||
height: 100%; | height: 100%; | ||
} | } | ||
.info-card:hover, | |||
.nav-card:hover { | .nav-card:hover { | ||
transform: translateY(-5px); | transform: translateY(-5px); | ||
| Line 293: | Line 223: | ||
} | } | ||
.card-header, | |||
.nav-header { | .nav-header { | ||
padding: | padding: 18px 25px; | ||
color: white; | color: white; | ||
font-weight: 600; | font-weight: 600; | ||
font-size: | font-size: 20px; | ||
text-align: center; | text-align: center; | ||
text-shadow: 1px 1px 2px rgba(0,0,0,0.2); | text-shadow: 1px 1px 2px rgba(0,0,0,0.2); | ||
} | |||
.card-content, | |||
.nav-content { | |||
padding: 25px; | |||
line-height: 1.6; | |||
} | } | ||
| Line 306: | Line 243: | ||
} | } | ||
/* === Table Systems === */ | |||
.modern-table, | |||
.nav-table { | .nav-table { | ||
border-radius: 8px !important; | border-radius: 8px !important; | ||
overflow: hidden !important; | overflow: hidden !important; | ||
border: none !important; | |||
background: transparent !important; | |||
} | |||
.modern-table tr:hover td { | |||
background: rgba(240, 247, 255, 0.7) !important; | |||
} | } | ||
| Line 317: | Line 262: | ||
} | } | ||
/* | /* Hide URL text in nav tables */ | ||
.nav-table td:first-child { | .nav-table td:first-child { | ||
font-size: 0 | font-size: 0; | ||
} | } | ||
/* === List Systems === */ | |||
.modern-list { | .modern-list { | ||
list-style: none; | list-style: none; | ||
| Line 368: | Line 308: | ||
} | } | ||
/* | /* === Special Elements === */ | ||
. | .notes-box { | ||
transition: transform 0.2s ease; | |||
} | } | ||
. | .notes-box:hover { | ||
transform: scale(1.02); | |||
} | } | ||
. | .tip-box { | ||
border-left: 4px solid; | |||
} | } | ||
/* Code | /* === Code & Examples === */ | ||
code { | code { | ||
background: #2c5e9e; | background: #2c5e9e; | ||
| Line 397: | Line 331: | ||
} | } | ||
.command-examples code, | |||
.command-grid code, | |||
.examples-grid code { | |||
.command-examples code, .command-grid code, .examples-grid code { | |||
font-family: 'Courier New', monospace; | font-family: 'Courier New', monospace; | ||
font-size: 14px; | font-size: 14px; | ||
| Line 435: | Line 344: | ||
} | } | ||
. | /* === Hover Effects === */ | ||
.quick-overview > div { | |||
transition: transform 0.3s ease, box-shadow 0.3s ease; | |||
} | |||
.quick-overview > div:hover { | |||
transform: translateY(-3px); | |||
box-shadow: 0 5px 15px rgba(0,0,0,0.2); | |||
} | |||
.command-examples > div, | |||
.examples-grid > div { | |||
transition: transform 0.2s ease; | |||
} | |||
.command-examples > div:hover, | |||
.examples-grid > div:hover { | |||
transform: scale(1.02); | |||
} | } | ||
/* | /* === RESPONSIVE DESIGN (UNIFIED) === */ | ||
@media (max-width: 768px) { | @media (max-width: 768px) { | ||
.quick-overview { | .wikitable { | ||
grid-template-columns: | font-size: 14px; | ||
display: block; | |||
overflow-x: auto; | |||
white-space: nowrap; | |||
} | |||
#content { | |||
padding: 10px; | |||
} | |||
.wikitable th, | |||
.wikitable td { | |||
padding: 8px 6px; | |||
} | |||
/* Grid layouts */ | |||
.drops-grid, | |||
.quick-overview, | |||
.item-types-grid { | |||
grid-template-columns: 1fr !important; | |||
} | } | ||
.command-grid { | .command-grid, | ||
.examples-grid, | |||
.accounts-container .info-card .card-content > div { | |||
grid-template-columns: 1fr !important; | grid-template-columns: 1fr !important; | ||
gap: 15px !important; | gap: 15px !important; | ||
} | } | ||
.item | /* Lists */ | ||
.list-item { | |||
flex-direction: column; | |||
text-align: center; | |||
} | } | ||
. | .list-icon { | ||
margin-right: 0; | |||
margin-bottom: 10px; | |||
} | } | ||
} | } | ||
/* | /* === Print Styles === */ | ||
@media print { | |||
.wikitable { | |||
box-shadow: none; | |||
border: 1px solid #000; | |||
} | |||
a { | |||
} | color: #000; | ||
text-decoration: underline; | |||
} | |||
} | } | ||
Revision as of 17:53, 29 September 2025
/* ===== MEDIAWIKI COMMON.CSS ENHANCEMENTS ===== */
/* Last updated: 2024 - CLEANED VERSION */
/* === Improved Tables === */
.wikitable {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
margin: 1em 0;
background: white;
border: 1px solid #a2a9b1;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.wikitable th {
background: linear-gradient(135deg, #2c5e9e 0%, #1e3a5f 100%);
color: white;
font-weight: 600;
text-align: center;
padding: 12px 8px;
border-bottom: 2px solid #1e3a5f;
font-size: 14px;
}
.wikitable td {
padding: 10px 8px;
border: 1px solid #ddd;
vertical-align: top;
}
.wikitable tr:nth-child(even) {
background-color: #f8f9fa;
}
.wikitable tr:nth-child(odd) {
background-color: #ffffff;
}
.wikitable tr:hover {
background-color: #e3f2fd;
transition: background-color 0.2s ease;
}
/* === Enhanced Navigation === */
#toc {
background: #f8f9fa;
border: 1px solid #a2a9b1;
border-radius: 6px;
padding: 15px;
margin: 1em 0;
}
.tocnumber {
color: #2c5e9e;
font-weight: bold;
}
/* === Better Links === */
a {
color: #0645ad;
text-decoration: none;
transition: color 0.2s ease;
}
a:hover {
color: #0b0080;
text-decoration: underline;
}
a:visited {
color: #0b0080;
}
a.new {
color: #c20;
}
/* === Content Improvements === */
#content {
line-height: 1.6;
color: #202122;
}
#content h1,
#content h2,
#content h3,
#content h4,
#content h5,
#content h6 {
color: #2c5e9e;
border-bottom: 1px solid #a2a9b1;
padding-bottom: 0.3em;
margin-top: 1.5em;
}
#content h1 {
border-bottom: 2px solid #2c5e9e;
}
/* === Code Blocks === */
pre, code {
background: #f8f9fa;
border: 1px solid #eaecf0;
border-radius: 4px;
padding: 2px 4px;
font-family: monospace;
}
pre {
padding: 12px;
overflow-x: auto;
}
/* === Infoboxes and Special Elements === */
.infobox {
background: #f8f9fa;
border: 1px solid #a2a9b1;
border-radius: 6px;
padding: 15px;
margin: 1em 0;
}
.navbox {
background: #f8f9fa;
border: 1px solid #a2a9b1;
border-radius: 4px;
padding: 5px;
}
/* === Custom Header Colors === */
.mw-headline {
color: #2c5e9e;
}
/* === Button Improvements === */
.mw-ui-button {
background: #2c5e9e;
color: white;
border: none;
border-radius: 4px;
padding: 8px 16px;
cursor: pointer;
transition: background-color 0.2s ease;
}
.mw-ui-button:hover {
background: #1e3a5f;
}
/* === Form Elements === */
.mw-input,
textarea {
border: 1px solid #a2a9b1;
border-radius: 4px;
padding: 8px;
font-size: 14px;
}
.mw-input:focus,
textarea:focus {
border-color: #2c5e9e;
outline: none;
box-shadow: 0 0 0 2px rgba(44, 94, 158, 0.2);
}
/* === Logo Replacement === */
#p-logo a {
background-image: url('https://wiki.ragnafied.net/images/e/ee/Ragnawikilogo.png') !important;
background-size: contain !important;
background-repeat: no-repeat !important;
background-position: center !important;
background-color: transparent !important;
display: block !important;
min-width: 135px !important;
min-height: 135px !important;
transition: all 0.3s ease !important;
}
#p-logo a:hover {
opacity: 0.8 !important;
transform: scale(1.05) !important;
}
#p-logo a img {
opacity: 0 !important;
width: 135px !important;
height: 135px !important;
}
/* === Modern Card System (UNIFIED) === */
.wiki-header-container,
.quick-nav-container,
.about-container,
.guide-container,
.accounts-container,
.autoloot-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.info-card,
.nav-card {
background: white;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid #e1e8ed;
margin-bottom: 25px;
}
.nav-card {
height: 100%;
}
.info-card:hover,
.nav-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.card-header,
.nav-header {
padding: 18px 25px;
color: white;
font-weight: 600;
font-size: 20px;
text-align: center;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.card-content,
.nav-content {
padding: 25px;
line-height: 1.6;
}
.nav-content {
padding: 0;
}
/* === Table Systems === */
.modern-table,
.nav-table {
border-radius: 8px !important;
overflow: hidden !important;
border: none !important;
background: transparent !important;
}
.modern-table tr:hover td {
background: rgba(240, 247, 255, 0.7) !important;
}
.nav-table tr:hover td {
background: rgba(240, 247, 255, 0.8) !important;
transform: translateX(2px);
transition: all 0.2s ease;
}
/* Hide URL text in nav tables */
.nav-table td:first-child {
font-size: 0;
}
/* === List Systems === */
.modern-list {
list-style: none;
padding: 0;
margin: 0;
}
.list-item {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
padding: 15px;
background: rgba(255, 255, 255, 0.7);
border-radius: 8px;
border: 1px solid #e1e8ed;
transition: all 0.3s ease;
}
.list-item:hover {
background: rgba(240, 247, 255, 0.9);
transform: translateX(5px);
}
.list-icon {
background: linear-gradient(135deg, #2c5e9e, #1e3a5f);
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
margin-right: 15px;
flex-shrink: 0;
}
.list-content {
flex: 1;
}
/* === Special Elements === */
.notes-box {
transition: transform 0.2s ease;
}
.notes-box:hover {
transform: scale(1.02);
}
.tip-box {
border-left: 4px solid;
}
/* === Code & Examples === */
code {
background: #2c5e9e;
color: white;
padding: 4px 8px;
border-radius: 4px;
font-family: 'Courier New', monospace;
font-size: 14px;
}
.command-examples code,
.command-grid code,
.examples-grid code {
font-family: 'Courier New', monospace;
font-size: 14px;
}
.example-box {
font-family: 'Courier New', monospace;
font-size: 13px;
line-height: 1.4;
}
/* === Hover Effects === */
.quick-overview > div {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quick-overview > div:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.command-examples > div,
.examples-grid > div {
transition: transform 0.2s ease;
}
.command-examples > div:hover,
.examples-grid > div:hover {
transform: scale(1.02);
}
/* === RESPONSIVE DESIGN (UNIFIED) === */
@media (max-width: 768px) {
.wikitable {
font-size: 14px;
display: block;
overflow-x: auto;
white-space: nowrap;
}
#content {
padding: 10px;
}
.wikitable th,
.wikitable td {
padding: 8px 6px;
}
/* Grid layouts */
.drops-grid,
.quick-overview,
.item-types-grid {
grid-template-columns: 1fr !important;
}
.command-grid,
.examples-grid,
.accounts-container .info-card .card-content > div {
grid-template-columns: 1fr !important;
gap: 15px !important;
}
/* Lists */
.list-item {
flex-direction: column;
text-align: center;
}
.list-icon {
margin-right: 0;
margin-bottom: 10px;
}
}
/* === Print Styles === */
@media print {
.wikitable {
box-shadow: none;
border: 1px solid #000;
}
a {
color: #000;
text-decoration: underline;
}
}
