MediaWiki:Common.css: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição |
Sem resumo de edição |
||
| Linha 1: | Linha 1: | ||
/* ================================================ | /* ============================================================ | ||
EDDA WORLD WIKI — | EDDA WORLD WIKI — Common.css | ||
Paleta: Azul Espacial/Ciano | |||
================================================ */ | Compatível com: MediaWiki 1.41 · Skin Vector | ||
============================================================ */ | |||
/* === VARIÁVEIS ============================================= */ | |||
:root { | |||
--edda-bg: #050E1F; | |||
--edda-bg2: #0A1A35; | |||
--edda-primary: #0EA5E9; | |||
--edda-primary2: #0284C7; | |||
--edda-glow: rgba(14, 165, 233, 0.18); | |||
--edda-accent: #7DD8FF; | |||
--edda-border: rgba(14, 165, 233, 0.18); | |||
--edda-border2: rgba(14, 165, 233, 0.35); | |||
--edda-text: #0C1A36; | |||
--edda-muted: #8EA8C4; | |||
--edda-white: #ffffff; | |||
--edda-surface: #F5F8FF; | |||
--edda-radius: 10px; | |||
--edda-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; | |||
} | |||
/* === RESET BASE ============================================ */ | |||
body { | |||
font-family: var(--edda-font) !important; | |||
background: var(--edda-surface) !important; | |||
color: var(--edda-text) !important; | |||
} | |||
/* === HEADER / TOPBAR ====================================== */ | |||
#mw-head, | |||
.vector-header, | |||
#head { | |||
background: var(--edda-bg) !important; | |||
border-bottom: 1px solid rgba(14, 165, 233, 0.2) !important; | |||
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4) !important; | |||
} | |||
/* Logo */ | /* Logo */ | ||
#p-logo { | #p-logo a, | ||
.mw-logo { | |||
filter: brightness(1.1); | |||
} | } | ||
#p- | /* Tabs de navegação da página (Página, Discussão, Ler, Editar...) */ | ||
#p-namespaces li a, | |||
#p-views li a, | |||
.vector-tab-noaction a, | |||
.selected a { | |||
background: transparent !important; | |||
border-color: var(--edda-border2) !important; | |||
color: rgba(255,255,255,0.65) !important; | |||
font-size: 12px !important; | |||
transition: all 0.2s !important; | |||
} | } | ||
# | #p-namespaces li.selected a, | ||
#p-views li.selected a { | |||
color: var(--edda-accent) !important; | |||
background: rgba(14,165,233,0.12) !important; | |||
border-bottom-color: var(--edda-primary) !important; | |||
} | } | ||
#p-namespaces li a:hover, | |||
# | #p-views li a:hover { | ||
color: var(--edda-accent) !important; | |||
background: rgba(14,165,233,0.1) !important; | |||
} | } | ||
#mw-panel . | /* === SIDEBAR ============================================== */ | ||
#mw-panel, | |||
.vector-column-start, | |||
#column-one { | |||
background: var(--edda-bg) !important; | |||
border-right: 1px solid rgba(14,165,233,0.12) !important; | |||
} | } | ||
/* Títulos de seção na sidebar */ | |||
.portal h3, | |||
.portal .pBody h3, | |||
#p-tb h3, | |||
#p-navigation h3 { | |||
color: var(--edda-accent) !important; | |||
font-size: 10px !important; | |||
font-weight: 700 !important; | |||
letter-spacing: 1px !important; | |||
text-transform: uppercase !important; | |||
border-bottom: 1px solid rgba(14,165,233,0.2) !important; | |||
padding-bottom: 4px !important; | |||
margin-bottom: 6px !important; | |||
} | } | ||
/* Links | /* Links da sidebar */ | ||
a { | .portal li a, | ||
#p-tb li a, | |||
#p-navigation li a { | |||
color: rgba(255,255,255,0.55) !important; | |||
font-size: 12px !important; | |||
text-decoration: none !important; | |||
padding: 2px 0 !important; | |||
display: block !important; | |||
transition: color 0.15s !important; | |||
} | |||
.portal li a:hover, | |||
#p-tb li a:hover, | |||
#p-navigation li a:hover { | |||
color: var(--edda-primary) !important; | |||
} | |||
/* === CONTEÚDO PRINCIPAL =================================== */ | |||
#content, | |||
#mw-content-text, | |||
.mw-body, | |||
.mw-body-content { | |||
background: var(--edda-white) !important; | |||
border: 1px solid var(--edda-border) !important; | |||
border-radius: var(--edda-radius) !important; | |||
padding: 24px 28px !important; | |||
margin: 12px !important; | |||
box-shadow: 0 1px 8px rgba(14,165,233,0.06) !important; | |||
} | |||
/* === TIPOGRAFIA =========================================== */ | |||
h1, .firstHeading { | |||
color: var(--edda-text) !important; | |||
font-size: 22px !important; | |||
font-weight: 700 !important; | |||
letter-spacing: -0.3px !important; | |||
border-bottom: 2px solid var(--edda-primary) !important; | |||
padding-bottom: 10px !important; | |||
margin-bottom: 18px !important; | |||
} | |||
h2 { | |||
color: var(--edda-text) !important; | |||
font-size: 17px !important; | |||
font-weight: 700 !important; | |||
border-bottom: 1px solid rgba(14,165,233,0.2) !important; | |||
padding-bottom: 6px !important; | |||
margin: 22px 0 12px !important; | |||
} | |||
h3 { | |||
color: var(--edda-primary2) !important; | |||
font-size: 14px !important; | |||
font-weight: 700 !important; | |||
margin: 16px 0 8px !important; | |||
} | |||
h4, h5, h6 { | |||
color: var(--edda-text) !important; | |||
font-weight: 600 !important; | |||
} | |||
/* Links */ | |||
a, a:visited { | |||
color: var(--edda-primary2) !important; | |||
text-decoration: none !important; | |||
transition: color 0.15s !important; | |||
} | } | ||
a:hover { | a:hover { | ||
color: var(--edda-primary) !important; | |||
text-decoration: underline !important; | |||
} | |||
/* === TABELAS ============================================== */ | |||
table.wikitable { | |||
border-collapse: collapse !important; | |||
width: 100% !important; | |||
border-radius: 8px !important; | |||
overflow: hidden !important; | |||
border: 1px solid var(--edda-border) !important; | |||
font-size: 13px !important; | |||
margin: 12px 0 !important; | |||
} | |||
table.wikitable th { | |||
background: var(--edda-bg) !important; | |||
color: var(--edda-accent) !important; | |||
font-size: 11px !important; | |||
font-weight: 700 !important; | |||
text-transform: uppercase !important; | |||
letter-spacing: 0.5px !important; | |||
padding: 10px 14px !important; | |||
border: 1px solid rgba(14,165,233,0.2) !important; | |||
white-space: nowrap !important; | |||
} | |||
table.wikitable td { | |||
padding: 9px 14px !important; | |||
border: 1px solid rgba(14,165,233,0.1) !important; | |||
color: var(--edda-text) !important; | |||
background: #fff !important; | |||
} | |||
table.wikitable tr:nth-child(even) td { | |||
background: #F0F8FF !important; | |||
} | |||
table.wikitable tr:hover td { | |||
background: #E8F4FF !important; | |||
} | |||
/* === SEARCH BOX ========================================== */ | |||
#searchInput, | |||
input[name="search"], | |||
.cdx-text-input__input { | |||
background: rgba(255,255,255,0.08) !important; | |||
border: 1px solid rgba(255,255,255,0.15) !important; | |||
border-radius: 20px !important; | |||
color: rgba(255,255,255,0.8) !important; | |||
padding: 5px 14px !important; | |||
font-size: 12px !important; | |||
} | |||
#searchInput::placeholder { | |||
color: rgba(255,255,255,0.4) !important; | |||
} | |||
/* === BOTÕES =============================================== */ | |||
.mw-ui-button, | |||
input[type="submit"], | |||
input[type="button"], | |||
button { | |||
background: var(--edda-primary) !important; | |||
color: #fff !important; | |||
border: none !important; | |||
border-radius: 6px !important; | |||
padding: 7px 16px !important; | |||
font-size: 12px !important; | |||
font-weight: 600 !important; | |||
cursor: pointer !important; | |||
transition: background 0.2s !important; | |||
} | |||
.mw-ui-button:hover, | |||
input[type="submit"]:hover { | |||
background: var(--edda-primary2) !important; | |||
} | |||
/* === TOC (Tabela de conteúdo) ============================ */ | |||
#toc, | |||
.toc { | |||
background: #F0F8FF !important; | |||
border: 1px solid var(--edda-border) !important; | |||
border-radius: 8px !important; | |||
padding: 14px 16px !important; | |||
font-size: 12px !important; | |||
} | |||
#toc h2, | |||
.toc h2 { | |||
border: none !important; | |||
font-size: 12px !important; | |||
color: var(--edda-muted) !important; | |||
font-weight: 700 !important; | |||
letter-spacing: 0.5px !important; | |||
text-transform: uppercase !important; | |||
margin: 0 0 8px !important; | |||
padding: 0 !important; | |||
} | } | ||
#toc li, | |||
.toc li { | |||
padding: 2px 0 !important; | |||
} | } | ||
#toc a, | |||
.toc a { | |||
color: var(--edda-primary2) !important; | |||
font-size: 12px !important; | |||
} | } | ||
/* | /* === CATEGORIAS =========================================== */ | ||
#catlinks { | |||
background: #F0F8FF !important; | |||
border: 1px solid var(--edda-border) !important; | |||
border-radius: 8px !important; | |||
padding: 8px 14px !important; | |||
font-size: 12px !important; | |||
margin-top: 20px !important; | |||
} | } | ||
/* === EDIT AREA =========================================== */ | |||
#wpTextbox1 { | |||
border: 1px solid var(--edda-border) !important; | |||
border-radius: 6px !important; | |||
padding: 10px !important; | |||
font-family: "Courier New", monospace !important; | |||
font-size: 13px !important; | |||
} | } | ||
. | /* === FOOTER ============================================== */ | ||
#footer, | |||
.mw-footer { | |||
background: var(--edda-bg) !important; | |||
border-top: 1px solid rgba(14,165,233,0.12) !important; | |||
padding: 16px 24px !important; | |||
margin-top: 0 !important; | |||
} | } | ||
#footer-info li, | |||
# | #footer-places li, | ||
#footer-icons li, | |||
.mw-footer li { | |||
font-size: 11px !important; | |||
color: rgba(255,255,255,0.4) !important; | |||
} | } | ||
#footer a, | |||
.mw- | .mw-footer a { | ||
color: rgba(255,255,255,0.5) !important; | |||
} | } | ||
.mw- | #footer a:hover, | ||
.mw-footer a:hover { | |||
color: var(--edda-primary) !important; | |||
} | } | ||
/* | /* === NOTIFICAÇÕES / ALERTAS ============================== */ | ||
.mw-message-box, | |||
.successbox, | |||
.warningbox, | |||
.errorbox { | |||
border-radius: 8px !important; | |||
padding: 10px 14px !important; | |||
font-size: 12px !important; | |||
border-left: 3px solid var(--edda-primary) !important; | |||
} | } | ||
/* | /* === SCROLLBAR =========================================== */ | ||
::-webkit-scrollbar { width: 6px; } | |||
::-webkit-scrollbar-track { background: rgba(14,165,233,0.05); } | |||
::-webkit-scrollbar-thumb { | |||
background: rgba(14,165,233,0.3); | |||
border-radius: 3px; | |||
} | } | ||
::-webkit-scrollbar-thumb:hover { background: var(--edda-primary); } | |||
/* === COMPONENTES CUSTOMIZADOS (use em páginas wiki) ====== | |||
CARD GRID — <html><div class="edda-grid edda-grid-3"></html> | |||
CARD — <html><div class="edda-card"></html> | |||
BADGE — <html><span class="edda-badge">Texto</span></html> | |||
HERO BOX — <html><div class="edda-hero"></html> | |||
INFOBOX — <html><div class="edda-infobox"></html> | |||
======================================================== */ | |||
/* | /* GRID SYSTEM */ | ||
.edda-grid { | |||
display: grid; | |||
gap: 12px; | |||
margin: 16px 0; | |||
} | } | ||
.edda-grid-2 { grid-template-columns: repeat(2, 1fr); } | |||
.edda-grid-3 { grid-template-columns: repeat(3, 1fr); } | |||
.edda-grid-4 { grid-template-columns: repeat(4, 1fr); } | |||
.edda-grid-6 { grid-template-columns: repeat(6, 1fr); } | |||
# | @media (max-width: 800px) { | ||
.edda-grid-3, .edda-grid-4, .edda-grid-6 { grid-template-columns: repeat(2, 1fr); } | |||
} | |||
@media (max-width: 500px) { | |||
.edda-grid-2, .edda-grid-3, .edda-grid-4, .edda-grid-6 { grid-template-columns: 1fr; } | |||
} | |||
/* CARD */ | |||
.edda-card { | |||
background: #fff; | |||
border: 1px solid var(--edda-border); | |||
border-radius: var(--edda-radius); | |||
padding: 16px; | |||
transition: all 0.2s; | |||
text-decoration: none !important; | |||
display: block; | |||
color: var(--edda-text) !important; | |||
} | |||
.edda-card:hover { | |||
border-color: var(--edda-primary); | |||
box-shadow: 0 4px 16px rgba(14,165,233,0.14); | |||
transform: translateY(-2px); | |||
} | |||
.edda-card-icon { | |||
font-size: 24px; | |||
margin-bottom: 8px; | |||
} | |||
.edda-card-title { | |||
font-size: 13px; | |||
font-weight: 700; | |||
color: var(--edda-text); | |||
margin-bottom: 4px; | |||
} | |||
.edda-card-desc { | |||
font-size: 11px; | |||
color: var(--edda-muted); | |||
line-height: 1.5; | |||
} | |||
/* HERO BOX */ | |||
.edda-hero { | |||
background: var(--edda-bg); | |||
border-radius: var(--edda-radius); | |||
padding: 32px 28px; | |||
text-align: center; | |||
margin-bottom: 20px; | |||
position: relative; | |||
overflow: hidden; | |||
} | |||
.edda-hero-title { | |||
color: #fff; | |||
font-size: 22px; | |||
font-weight: 700; | |||
margin-bottom: 8px; | |||
} | |||
.edda-hero-title .accent { color: var(--edda-primary); } | |||
.edda-hero-sub { | |||
color: rgba(255,255,255,0.55); | |||
font-size: 13px; | |||
line-height: 1.6; | |||
margin-bottom: 16px; | |||
} | |||
/* PILLS / BADGES */ | |||
.edda-pills { | |||
display: flex; | |||
gap: 8px; | |||
justify-content: center; | |||
flex-wrap: wrap; | |||
} | |||
.edda-pill { | |||
background: rgba(255,255,255,0.08); | |||
border: 1px solid rgba(255,255,255,0.14); | |||
color: rgba(255,255,255,0.8); | |||
padding: 4px 12px; | |||
border-radius: 20px; | |||
font-size: 11px; | |||
display: inline-flex; | |||
align-items: center; | |||
gap: 5px; | |||
} | |||
.edda-badge { | |||
display: inline-flex; | |||
align-items: center; | |||
background: rgba(14,165,233,0.12); | |||
border: 1px solid var(--edda-border2); | |||
color: var(--edda-primary); | |||
font-size: 10px; | |||
font-weight: 700; | |||
padding: 2px 8px; | |||
border-radius: 20px; | |||
text-transform: uppercase; | |||
letter-spacing: 0.5px; | |||
} | |||
/* INFO BAR (linha de stats do servidor) */ | |||
.edda-infobar { | |||
display: grid; | |||
grid-template-columns: repeat(6, 1fr); | |||
background: #fff; | |||
border: 1px solid var(--edda-border); | |||
border-radius: var(--edda-radius); | |||
overflow: hidden; | |||
margin-bottom: 16px; | |||
} | |||
.edda-infobar-cell { | |||
padding: 10px 12px; | |||
border-right: 1px solid rgba(14,165,233,0.1); | |||
text-align: center; | |||
} | |||
.edda-infobar-cell:last-child { border-right: none; } | |||
.edda-infobar-label { | |||
font-size: 9px; | |||
font-weight: 700; | |||
text-transform: uppercase; | |||
letter-spacing: 0.5px; | |||
color: var(--edda-muted); | |||
margin-bottom: 3px; | |||
} | |||
.edda-infobar-value { | |||
font-size: 12px; | |||
font-weight: 700; | |||
color: var(--edda-text); | |||
} | |||
.edda-infobar-value.blue { color: var(--edda-primary2); } | |||
/* SECTION HEADER */ | |||
.edda-section-header { | |||
display: flex; | |||
align-items: center; | |||
gap: 10px; | |||
margin: 20px 0 12px; | |||
} | |||
.edda-section-title { | |||
font-size: 13px; | |||
font-weight: 700; | |||
color: var(--edda-text); | |||
white-space: nowrap; | |||
} | |||
.edda-section-line { | |||
flex: 1; | |||
height: 1px; | |||
background: rgba(14,165,233,0.15); | |||
} | |||
/* INFOBOX (float right para páginas de sistema/evento) */ | |||
.edda-infobox { | |||
float: right; | |||
clear: right; | |||
background: #fff; | |||
border: 1px solid var(--edda-border); | |||
border-radius: var(--edda-radius); | |||
padding: 0; | |||
margin: 0 0 16px 20px; | |||
width: 280px; | |||
overflow: hidden; | |||
font-size: 12px; | |||
} | |||
.edda-infobox-title { | |||
background: var(--edda-bg); | |||
color: var(--edda-accent); | |||
font-size: 12px; | |||
font-weight: 700; | |||
padding: 10px 14px; | |||
text-align: center; | |||
letter-spacing: 0.3px; | |||
} | |||
.edda-infobox-img img { | |||
width: 100%; | |||
display: block; | |||
} | |||
.edda-infobox table { | |||
width: 100%; | |||
border-collapse: collapse; | |||
} | |||
.edda-infobox td { | |||
padding: 7px 12px; | |||
border-bottom: 1px solid rgba(14,165,233,0.08); | |||
font-size: 12px; | |||
} | |||
.edda-infobox td:first-child { | |||
font-weight: 700; | |||
color: var(--edda-muted); | |||
width: 45%; | |||
} | |||
.edda-infobox td:last-child { color: var(--edda-text); } | |||
.edda-infobox tr:last-child td { border-bottom: none; } | |||
/* BANNER ANUNCIO */ | |||
.edda-banner { | |||
background: var(--edda-bg); | |||
border: 1px solid rgba(14,165,233,0.22); | |||
border-radius: var(--edda-radius); | |||
padding: 16px 20px; | |||
display: flex; | |||
align-items: center; | |||
gap: 14px; | |||
margin: 16px 0; | |||
} | |||
.edda-banner-icon { font-size: 24px; } | |||
.edda-banner-title { color: #fff; font-weight: 700; font-size: 13px; margin-bottom: 3px; } | |||
.edda-banner-sub { color: rgba(255,255,255,0.5); font-size: 11px; line-height: 1.4; } | |||
.edda-banner-tags { display: flex; gap: 8px; margin-left: auto; flex-shrink: 0; } | |||
.edda-banner-tag { | |||
background: rgba(14,165,233,0.2); | |||
border: 1px solid rgba(14,165,233,0.38); | |||
color: var(--edda-accent); | |||
font-size: 10px; | |||
font-weight: 700; | |||
padding: 4px 10px; | |||
border-radius: 20px; | |||
white-space: nowrap; | |||
} | |||
/* DROP TABLE (tabela de drops de monstros) */ | |||
.edda-drops { | |||
width: 100%; | |||
border-collapse: collapse; | |||
font-size: 12px; | |||
border: 1px solid var(--edda-border); | |||
border-radius: 8px; | |||
overflow: hidden; | |||
} | |||
.edda-drops thead th { | |||
background: var(--edda-bg); | |||
color: var(--edda-accent); | |||
font-size: 10px; | |||
font-weight: 700; | |||
text-transform: uppercase; | |||
letter-spacing: 0.5px; | |||
padding: 8px 12px; | |||
} | } | ||
.edda-drops tbody td { padding: 7px 12px; border-bottom: 1px solid rgba(14,165,233,0.08); } | |||
.edda-drops tbody tr:last-child td { border-bottom: none; } | |||
.edda-drops tbody tr:hover td { background: #EBF6FF; } | |||
.drop-rare { color: #C084FC; font-weight: 700; } | |||
.drop-uncommon { color: #F59E0B; font-weight: 600; } | |||
.drop-common { color: var(--edda-muted); } | |||
Edição das 18h39min de 5 de abril de 2026
/* ============================================================
EDDA WORLD WIKI — Common.css
Paleta: Azul Espacial/Ciano
Compatível com: MediaWiki 1.41 · Skin Vector
============================================================ */
/* === VARIÁVEIS ============================================= */
:root {
--edda-bg: #050E1F;
--edda-bg2: #0A1A35;
--edda-primary: #0EA5E9;
--edda-primary2: #0284C7;
--edda-glow: rgba(14, 165, 233, 0.18);
--edda-accent: #7DD8FF;
--edda-border: rgba(14, 165, 233, 0.18);
--edda-border2: rgba(14, 165, 233, 0.35);
--edda-text: #0C1A36;
--edda-muted: #8EA8C4;
--edda-white: #ffffff;
--edda-surface: #F5F8FF;
--edda-radius: 10px;
--edda-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
/* === RESET BASE ============================================ */
body {
font-family: var(--edda-font) !important;
background: var(--edda-surface) !important;
color: var(--edda-text) !important;
}
/* === HEADER / TOPBAR ====================================== */
#mw-head,
.vector-header,
#head {
background: var(--edda-bg) !important;
border-bottom: 1px solid rgba(14, 165, 233, 0.2) !important;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4) !important;
}
/* Logo */
#p-logo a,
.mw-logo {
filter: brightness(1.1);
}
/* Tabs de navegação da página (Página, Discussão, Ler, Editar...) */
#p-namespaces li a,
#p-views li a,
.vector-tab-noaction a,
.selected a {
background: transparent !important;
border-color: var(--edda-border2) !important;
color: rgba(255,255,255,0.65) !important;
font-size: 12px !important;
transition: all 0.2s !important;
}
#p-namespaces li.selected a,
#p-views li.selected a {
color: var(--edda-accent) !important;
background: rgba(14,165,233,0.12) !important;
border-bottom-color: var(--edda-primary) !important;
}
#p-namespaces li a:hover,
#p-views li a:hover {
color: var(--edda-accent) !important;
background: rgba(14,165,233,0.1) !important;
}
/* === SIDEBAR ============================================== */
#mw-panel,
.vector-column-start,
#column-one {
background: var(--edda-bg) !important;
border-right: 1px solid rgba(14,165,233,0.12) !important;
}
/* Títulos de seção na sidebar */
.portal h3,
.portal .pBody h3,
#p-tb h3,
#p-navigation h3 {
color: var(--edda-accent) !important;
font-size: 10px !important;
font-weight: 700 !important;
letter-spacing: 1px !important;
text-transform: uppercase !important;
border-bottom: 1px solid rgba(14,165,233,0.2) !important;
padding-bottom: 4px !important;
margin-bottom: 6px !important;
}
/* Links da sidebar */
.portal li a,
#p-tb li a,
#p-navigation li a {
color: rgba(255,255,255,0.55) !important;
font-size: 12px !important;
text-decoration: none !important;
padding: 2px 0 !important;
display: block !important;
transition: color 0.15s !important;
}
.portal li a:hover,
#p-tb li a:hover,
#p-navigation li a:hover {
color: var(--edda-primary) !important;
}
/* === CONTEÚDO PRINCIPAL =================================== */
#content,
#mw-content-text,
.mw-body,
.mw-body-content {
background: var(--edda-white) !important;
border: 1px solid var(--edda-border) !important;
border-radius: var(--edda-radius) !important;
padding: 24px 28px !important;
margin: 12px !important;
box-shadow: 0 1px 8px rgba(14,165,233,0.06) !important;
}
/* === TIPOGRAFIA =========================================== */
h1, .firstHeading {
color: var(--edda-text) !important;
font-size: 22px !important;
font-weight: 700 !important;
letter-spacing: -0.3px !important;
border-bottom: 2px solid var(--edda-primary) !important;
padding-bottom: 10px !important;
margin-bottom: 18px !important;
}
h2 {
color: var(--edda-text) !important;
font-size: 17px !important;
font-weight: 700 !important;
border-bottom: 1px solid rgba(14,165,233,0.2) !important;
padding-bottom: 6px !important;
margin: 22px 0 12px !important;
}
h3 {
color: var(--edda-primary2) !important;
font-size: 14px !important;
font-weight: 700 !important;
margin: 16px 0 8px !important;
}
h4, h5, h6 {
color: var(--edda-text) !important;
font-weight: 600 !important;
}
/* Links */
a, a:visited {
color: var(--edda-primary2) !important;
text-decoration: none !important;
transition: color 0.15s !important;
}
a:hover {
color: var(--edda-primary) !important;
text-decoration: underline !important;
}
/* === TABELAS ============================================== */
table.wikitable {
border-collapse: collapse !important;
width: 100% !important;
border-radius: 8px !important;
overflow: hidden !important;
border: 1px solid var(--edda-border) !important;
font-size: 13px !important;
margin: 12px 0 !important;
}
table.wikitable th {
background: var(--edda-bg) !important;
color: var(--edda-accent) !important;
font-size: 11px !important;
font-weight: 700 !important;
text-transform: uppercase !important;
letter-spacing: 0.5px !important;
padding: 10px 14px !important;
border: 1px solid rgba(14,165,233,0.2) !important;
white-space: nowrap !important;
}
table.wikitable td {
padding: 9px 14px !important;
border: 1px solid rgba(14,165,233,0.1) !important;
color: var(--edda-text) !important;
background: #fff !important;
}
table.wikitable tr:nth-child(even) td {
background: #F0F8FF !important;
}
table.wikitable tr:hover td {
background: #E8F4FF !important;
}
/* === SEARCH BOX ========================================== */
#searchInput,
input[name="search"],
.cdx-text-input__input {
background: rgba(255,255,255,0.08) !important;
border: 1px solid rgba(255,255,255,0.15) !important;
border-radius: 20px !important;
color: rgba(255,255,255,0.8) !important;
padding: 5px 14px !important;
font-size: 12px !important;
}
#searchInput::placeholder {
color: rgba(255,255,255,0.4) !important;
}
/* === BOTÕES =============================================== */
.mw-ui-button,
input[type="submit"],
input[type="button"],
button {
background: var(--edda-primary) !important;
color: #fff !important;
border: none !important;
border-radius: 6px !important;
padding: 7px 16px !important;
font-size: 12px !important;
font-weight: 600 !important;
cursor: pointer !important;
transition: background 0.2s !important;
}
.mw-ui-button:hover,
input[type="submit"]:hover {
background: var(--edda-primary2) !important;
}
/* === TOC (Tabela de conteúdo) ============================ */
#toc,
.toc {
background: #F0F8FF !important;
border: 1px solid var(--edda-border) !important;
border-radius: 8px !important;
padding: 14px 16px !important;
font-size: 12px !important;
}
#toc h2,
.toc h2 {
border: none !important;
font-size: 12px !important;
color: var(--edda-muted) !important;
font-weight: 700 !important;
letter-spacing: 0.5px !important;
text-transform: uppercase !important;
margin: 0 0 8px !important;
padding: 0 !important;
}
#toc li,
.toc li {
padding: 2px 0 !important;
}
#toc a,
.toc a {
color: var(--edda-primary2) !important;
font-size: 12px !important;
}
/* === CATEGORIAS =========================================== */
#catlinks {
background: #F0F8FF !important;
border: 1px solid var(--edda-border) !important;
border-radius: 8px !important;
padding: 8px 14px !important;
font-size: 12px !important;
margin-top: 20px !important;
}
/* === EDIT AREA =========================================== */
#wpTextbox1 {
border: 1px solid var(--edda-border) !important;
border-radius: 6px !important;
padding: 10px !important;
font-family: "Courier New", monospace !important;
font-size: 13px !important;
}
/* === FOOTER ============================================== */
#footer,
.mw-footer {
background: var(--edda-bg) !important;
border-top: 1px solid rgba(14,165,233,0.12) !important;
padding: 16px 24px !important;
margin-top: 0 !important;
}
#footer-info li,
#footer-places li,
#footer-icons li,
.mw-footer li {
font-size: 11px !important;
color: rgba(255,255,255,0.4) !important;
}
#footer a,
.mw-footer a {
color: rgba(255,255,255,0.5) !important;
}
#footer a:hover,
.mw-footer a:hover {
color: var(--edda-primary) !important;
}
/* === NOTIFICAÇÕES / ALERTAS ============================== */
.mw-message-box,
.successbox,
.warningbox,
.errorbox {
border-radius: 8px !important;
padding: 10px 14px !important;
font-size: 12px !important;
border-left: 3px solid var(--edda-primary) !important;
}
/* === SCROLLBAR =========================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(14,165,233,0.05); }
::-webkit-scrollbar-thumb {
background: rgba(14,165,233,0.3);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--edda-primary); }
/* === COMPONENTES CUSTOMIZADOS (use em páginas wiki) ======
CARD GRID — <html><div class="edda-grid edda-grid-3"></html>
CARD — <html><div class="edda-card"></html>
BADGE — <html><span class="edda-badge">Texto</span></html>
HERO BOX — <html><div class="edda-hero"></html>
INFOBOX — <html><div class="edda-infobox"></html>
======================================================== */
/* GRID SYSTEM */
.edda-grid {
display: grid;
gap: 12px;
margin: 16px 0;
}
.edda-grid-2 { grid-template-columns: repeat(2, 1fr); }
.edda-grid-3 { grid-template-columns: repeat(3, 1fr); }
.edda-grid-4 { grid-template-columns: repeat(4, 1fr); }
.edda-grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 800px) {
.edda-grid-3, .edda-grid-4, .edda-grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
.edda-grid-2, .edda-grid-3, .edda-grid-4, .edda-grid-6 { grid-template-columns: 1fr; }
}
/* CARD */
.edda-card {
background: #fff;
border: 1px solid var(--edda-border);
border-radius: var(--edda-radius);
padding: 16px;
transition: all 0.2s;
text-decoration: none !important;
display: block;
color: var(--edda-text) !important;
}
.edda-card:hover {
border-color: var(--edda-primary);
box-shadow: 0 4px 16px rgba(14,165,233,0.14);
transform: translateY(-2px);
}
.edda-card-icon {
font-size: 24px;
margin-bottom: 8px;
}
.edda-card-title {
font-size: 13px;
font-weight: 700;
color: var(--edda-text);
margin-bottom: 4px;
}
.edda-card-desc {
font-size: 11px;
color: var(--edda-muted);
line-height: 1.5;
}
/* HERO BOX */
.edda-hero {
background: var(--edda-bg);
border-radius: var(--edda-radius);
padding: 32px 28px;
text-align: center;
margin-bottom: 20px;
position: relative;
overflow: hidden;
}
.edda-hero-title {
color: #fff;
font-size: 22px;
font-weight: 700;
margin-bottom: 8px;
}
.edda-hero-title .accent { color: var(--edda-primary); }
.edda-hero-sub {
color: rgba(255,255,255,0.55);
font-size: 13px;
line-height: 1.6;
margin-bottom: 16px;
}
/* PILLS / BADGES */
.edda-pills {
display: flex;
gap: 8px;
justify-content: center;
flex-wrap: wrap;
}
.edda-pill {
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.14);
color: rgba(255,255,255,0.8);
padding: 4px 12px;
border-radius: 20px;
font-size: 11px;
display: inline-flex;
align-items: center;
gap: 5px;
}
.edda-badge {
display: inline-flex;
align-items: center;
background: rgba(14,165,233,0.12);
border: 1px solid var(--edda-border2);
color: var(--edda-primary);
font-size: 10px;
font-weight: 700;
padding: 2px 8px;
border-radius: 20px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
/* INFO BAR (linha de stats do servidor) */
.edda-infobar {
display: grid;
grid-template-columns: repeat(6, 1fr);
background: #fff;
border: 1px solid var(--edda-border);
border-radius: var(--edda-radius);
overflow: hidden;
margin-bottom: 16px;
}
.edda-infobar-cell {
padding: 10px 12px;
border-right: 1px solid rgba(14,165,233,0.1);
text-align: center;
}
.edda-infobar-cell:last-child { border-right: none; }
.edda-infobar-label {
font-size: 9px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--edda-muted);
margin-bottom: 3px;
}
.edda-infobar-value {
font-size: 12px;
font-weight: 700;
color: var(--edda-text);
}
.edda-infobar-value.blue { color: var(--edda-primary2); }
/* SECTION HEADER */
.edda-section-header {
display: flex;
align-items: center;
gap: 10px;
margin: 20px 0 12px;
}
.edda-section-title {
font-size: 13px;
font-weight: 700;
color: var(--edda-text);
white-space: nowrap;
}
.edda-section-line {
flex: 1;
height: 1px;
background: rgba(14,165,233,0.15);
}
/* INFOBOX (float right para páginas de sistema/evento) */
.edda-infobox {
float: right;
clear: right;
background: #fff;
border: 1px solid var(--edda-border);
border-radius: var(--edda-radius);
padding: 0;
margin: 0 0 16px 20px;
width: 280px;
overflow: hidden;
font-size: 12px;
}
.edda-infobox-title {
background: var(--edda-bg);
color: var(--edda-accent);
font-size: 12px;
font-weight: 700;
padding: 10px 14px;
text-align: center;
letter-spacing: 0.3px;
}
.edda-infobox-img img {
width: 100%;
display: block;
}
.edda-infobox table {
width: 100%;
border-collapse: collapse;
}
.edda-infobox td {
padding: 7px 12px;
border-bottom: 1px solid rgba(14,165,233,0.08);
font-size: 12px;
}
.edda-infobox td:first-child {
font-weight: 700;
color: var(--edda-muted);
width: 45%;
}
.edda-infobox td:last-child { color: var(--edda-text); }
.edda-infobox tr:last-child td { border-bottom: none; }
/* BANNER ANUNCIO */
.edda-banner {
background: var(--edda-bg);
border: 1px solid rgba(14,165,233,0.22);
border-radius: var(--edda-radius);
padding: 16px 20px;
display: flex;
align-items: center;
gap: 14px;
margin: 16px 0;
}
.edda-banner-icon { font-size: 24px; }
.edda-banner-title { color: #fff; font-weight: 700; font-size: 13px; margin-bottom: 3px; }
.edda-banner-sub { color: rgba(255,255,255,0.5); font-size: 11px; line-height: 1.4; }
.edda-banner-tags { display: flex; gap: 8px; margin-left: auto; flex-shrink: 0; }
.edda-banner-tag {
background: rgba(14,165,233,0.2);
border: 1px solid rgba(14,165,233,0.38);
color: var(--edda-accent);
font-size: 10px;
font-weight: 700;
padding: 4px 10px;
border-radius: 20px;
white-space: nowrap;
}
/* DROP TABLE (tabela de drops de monstros) */
.edda-drops {
width: 100%;
border-collapse: collapse;
font-size: 12px;
border: 1px solid var(--edda-border);
border-radius: 8px;
overflow: hidden;
}
.edda-drops thead th {
background: var(--edda-bg);
color: var(--edda-accent);
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
padding: 8px 12px;
}
.edda-drops tbody td { padding: 7px 12px; border-bottom: 1px solid rgba(14,165,233,0.08); }
.edda-drops tbody tr:last-child td { border-bottom: none; }
.edda-drops tbody tr:hover td { background: #EBF6FF; }
.drop-rare { color: #C084FC; font-weight: 700; }
.drop-uncommon { color: #F59E0B; font-weight: 600; }
.drop-common { color: var(--edda-muted); }