Página Principal: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição Etiqueta: Revertido |
Sem resumo de edição Etiqueta: Reversão manual |
||
| Linha 22: | Linha 22: | ||
--edda-text-secondary: #6B6478; | --edda-text-secondary: #6B6478; | ||
} | } | ||
/* ===== HERO ===== */ | /* ===== HERO ===== */ | ||
| Linha 96: | Linha 90: | ||
.edda-pill-dot { color: var(--edda-mint); font-size: 11px; flex-shrink: 0; } | .edda-pill-dot { color: var(--edda-mint); font-size: 11px; flex-shrink: 0; } | ||
@media (max-width: 780px) { | @media (max-width: 780px) { | ||
.edda-hero { background-position: 72% center; } | .edda-hero { background-position: 72% center; height: 340px; align-items: flex-start; } | ||
.edda-hero-content { max-width: 100%; padding: 22px; } | .edda-hero-content { max-width: 100%; padding: 22px; } | ||
.edda-hero-logo { width: 220px; } | .edda-hero-logo { width: 220px; } | ||
| Linha 112: | Linha 99: | ||
.edda-infobar { | .edda-infobar { | ||
display: grid; | display: grid; | ||
grid-template-columns: repeat( | grid-template-columns: repeat(6, 1fr); | ||
gap: 1px; | gap: 1px; | ||
background: var(--edda-mint-tint-strong); | background: var(--edda-mint-tint-strong); | ||
| Linha 120: | Linha 107: | ||
margin-bottom: 14px; | margin-bottom: 14px; | ||
} | } | ||
.edda-infobar-cell { background: #fff; padding: 12px 14px | .edda-infobar-cell { background: #fff; padding: 12px 14px; } | ||
.edda-infobar-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; color: var(--edda-text-secondary); margin-bottom: 4px; } | .edda-infobar-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; color: var(--edda-text-secondary); margin-bottom: 4px; } | ||
.edda-infobar-value { font-size: 12.5px; font-weight: 700; color: var(--edda-text); line-height: 1.35 | .edda-infobar-value { font-size: 12.5px; font-weight: 700; color: var(--edda-text); line-height: 1.35; } | ||
.edda-infobar-value.mint { color: #2E8F6E; } | .edda-infobar-value.mint { color: #2E8F6E; } | ||
@media (max-width: 780px) { | |||
.edda-infobar { grid-template-columns: repeat(2, 1fr); } | |||
} | |||
/* ===== BLOCOS BASE ===== */ | /* ===== BLOCOS BASE ===== */ | ||
.wiki-col-wrap { display:grid; grid-template-columns: | .wiki-col-wrap { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; align-items:start; } | ||
.wiki-block { background:#fff; border:1px solid var(--edda-mint-tint-strong); border-radius:10px; overflow:hidden; margin-bottom | .wiki-block { background:#fff; border:1px solid var(--edda-mint-tint-strong); border-radius:10px; overflow:hidden; margin-bottom:0; } | ||
.wiki-block-full { background:#fff; border:1px solid var(--edda-mint-tint-strong); border-radius:10px; overflow:hidden; margin-bottom:0; } | .wiki-block-full { background:#fff; border:1px solid var(--edda-mint-tint-strong); border-radius:10px; overflow:hidden; margin-bottom:0; } | ||
.wiki-block-title { background:var(--edda-plum); padding:9px 16px; display:flex; align-items:center; gap:8px; } | .wiki-block-title { background:var(--edda-plum); padding:9px 16px; display:flex; align-items:center; gap:8px; } | ||
.wiki-block-title-text { color:var(--edda-mint-light); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.9px; } | .wiki-block-title-text { color:var(--edda-mint-light); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.9px; } | ||
.wiki-link { display:flex; align-items:center; gap:8px; padding:8px 14px; border-bottom:1px solid var(--edda-mint-tint); text-decoration:none; color:var(--edda-text); font-size:13px; transition:color 0.1s,background 0.1s | .wiki-link { display:flex; align-items:center; gap:8px; padding:8px 14px; border-bottom:1px solid var(--edda-mint-tint); text-decoration:none; color:var(--edda-text); font-size:13px; transition:color 0.1s,background 0.1s; } | ||
.wiki-link:last-child { border-bottom:none; } | .wiki-link:last-child { border-bottom:none; } | ||
.wiki-link:hover { color:#2E8F6E; background:#F2FBF7; } | .wiki-link:hover { color:#2E8F6E; background:#F2FBF7; } | ||
| Linha 138: | Linha 129: | ||
.wiki-list .wiki-link:last-child { border-bottom:none; } | .wiki-list .wiki-link:last-child { border-bottom:none; } | ||
.wiki-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); } | |||
.wiki-grid-2 { display:grid; grid-template-columns:repeat( | .wiki-grid-2 .wiki-link { border-right:1px solid var(--edda-mint-tint); } | ||
.wiki-grid-3 { display:grid; grid-template-columns:repeat( | .wiki-grid-2 .wiki-link:nth-child(2n) { border-right:none; } | ||
.wiki-grid-4 { display:grid; grid-template-columns:repeat( | .wiki-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); } | ||
.wiki-grid-3 .wiki-link { border-right:1px solid var(--edda-mint-tint); } | |||
.wiki-grid-3 .wiki-link:nth-child(3n) { border-right:none; } | |||
.wiki-grid-4 { display:grid; grid-template-columns:repeat(4,1fr); } | |||
.wiki-grid-4 .wiki-link { border-right:1px solid var(--edda-mint-tint); } | |||
.wiki-grid-4 .wiki-link:nth-child(4n) { border-right:none; } | |||
/* ===== COMUNIDADE / ACESSO RÁPIDO | /* ===== COMUNIDADE / ACESSO RÁPIDO ===== */ | ||
.wiki-quick { display:grid; grid-template-columns:repeat( | .wiki-quick { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:14px; } | ||
.wiki-quick- | .wiki-quick-card { position:relative; overflow:hidden; display:flex; flex-direction:column; gap:2px; background:var(--edda-plum); border:1px solid var(--edda-lavender-tint); border-radius:10px; padding:12px 14px 12px 17px; text-decoration:none; transition:border-color 0.15s,transform 0.15s; } | ||
.wiki-quick-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background:var(--edda-mint); } | |||
.wiki-quick-card:hover { border-color:var(--edda-mint); transform:translateY(-2px); } | |||
.wiki-quick-title { color:var(--edda-mint-light); font-size:12.5px; font-weight:700; } | |||
.wiki-quick-sub { color:rgba(255,255,255,0.45); font-size:10px; } | |||
} | |||
.wiki-quick- | |||
} | |||
.wiki-quick- | |||
} | |||
/* ===== ÍNDICE RÁPIDO ===== */ | /* ===== ÍNDICE RÁPIDO ===== */ | ||
| Linha 192: | Linha 170: | ||
.edda-banner-sub { color:rgba(255,255,255,0.5); font-size:11.5px; line-height:1.5; } | .edda-banner-sub { color:rgba(255,255,255,0.5); font-size:11.5px; line-height:1.5; } | ||
/* ===== RESPONSIVO | /* ===== RESPONSIVO ===== */ | ||
@ | @media (max-width:720px) { | ||
.wiki- | .wiki-quick { grid-template-columns:repeat(2,1fr); } | ||
} | .wiki-col-wrap { grid-template-columns:1fr; } | ||
.wiki-grid-4 { grid-template-columns:repeat(2,1fr); } | |||
.wiki-grid-4 .wiki-link:nth-child(2n) { border-right:none; } | |||
.wiki-grid-4 .wiki-link:nth-child(4n) { border-right:1px solid var(--edda-mint-tint); } | |||
.wiki-grid-3 { grid-template-columns:repeat(2,1fr); } | |||
.wiki-grid-3 .wiki-link:nth-child(2n) { border-right:none; } | |||
.wiki-grid-3 .wiki-link:nth-child(3n) { border-right:1px solid var(--edda-mint-tint); } | |||
.wiki-section-desc { display:none; } | .wiki-section-desc { display:none; } | ||
} | } | ||
</style> | </style> | ||
<!-- HERO --> | <!-- HERO --> | ||
| Linha 243: | Linha 221: | ||
<!-- COMUNIDADE --> | <!-- COMUNIDADE --> | ||
<div class="wiki-quick"> | <div class="wiki-quick"> | ||
<a href="https://discord.gg/7WZM2w5mTM" class="wiki-quick- | <a href="https://discord.gg/7WZM2w5mTM" class="wiki-quick-card"> | ||
< | <span class="wiki-quick-title">Discord</span> | ||
<span class="wiki-quick-sub">Comunidade & suporte</span> | |||
</a> | </a> | ||
<a href="https://www.eddaworld.com.br" class="wiki-quick- | <a href="https://www.eddaworld.com.br" class="wiki-quick-card"> | ||
< | <span class="wiki-quick-title">Site Oficial</span> | ||
<span class="wiki-quick-sub">Notícias & downloads</span> | |||
</a> | </a> | ||
<a href="/index.php/Regras" class="wiki-quick- | <a href="/index.php/Regras" class="wiki-quick-card"> | ||
< | <span class="wiki-quick-title">Regras</span> | ||
<span class="wiki-quick-sub">Conduta do servidor</span> | |||
</a> | </a> | ||
</div> | </div> | ||
| Linha 433: | Linha 414: | ||
<div class="edda-banner-sub">Tudo acontece por aqui — fendas dimensionais, MVPs globais e muito mais!</div> | <div class="edda-banner-sub">Tudo acontece por aqui — fendas dimensionais, MVPs globais e muito mais!</div> | ||
</div> | </div> | ||
</div> | </div> | ||
</html> | </html> | ||
Edição das 16h42min de 31 de julho de 2026
Comece Aqui
Primeiros passos do jogador novo
Início da Jornada
ROPs & Recompensas
Onde ganhar, gastar e trocar recursos
ROPs & Pontos
PvP & Eventos
Combate competitivo e conteúdo sazonal
PvP & Batalhas
Progressão & Criação
Forje, encante e evolua seu equipamento
Criação & Aprimoramento
Mundo & Conteúdo PvE
Instâncias estruturadas e o mundo aberto de Edda
Conteúdo PvE
Instâncias
7
PvM & Mundos
11