Diferencia entre revisiones de «Plantilla:Navbar»
Ir a la navegación
Ir a la búsqueda
Sin resumen de edición |
Sin resumen de edición |
||
| Línea 1: | Línea 1: | ||
<html> | <html> | ||
<div class="oroza-navbar"> | |||
<div class="oroza-navbar-inner"> | |||
<div class="oroza-navbar-brand-wrap"> | |||
<a href="https://orozaro.com/wiki/index.php?title=Main_Page" class="oroza-navbar-brand"> | |||
<span class="oroza-navbar-brand-top">OROZA RO</span> | |||
<span class="oroza-navbar-brand-bottom">WIKI</span> | |||
</a> | |||
</div> | |||
<div class="oroza-navbar-links"> | |||
} | <a href="https://orozaro.com" class="oroza-navbar-link">Pagina Web</a> | ||
<a href="https://orozaro.com/?module=account&action=create" class="oroza-navbar-link oroza-navbar-link-cta">Crea tu Cuenta</a> | |||
<a href="https://orozaro.com/?module=main&action=download" class="oroza-navbar-link">Descargas</a> | |||
<a href="https://orozaro.com/?module=donate&action=index" class="oroza-navbar-link">Donaciones</a> | |||
<a href="https://orozaro.com/?module=vote&action=index" class="oroza-navbar-link">Vota por el Server</a> | |||
</div> | |||
<div class="oroza-navbar-lang"> | |||
<a href="https://orozaro.com/wiki/index.php?title=Main_Page" class="oroza-lang-pill is-active"> | |||
<span class="oroza-flag">🇪🇸</span> | |||
<span class="oroza-lang-text">ES</span> | |||
</a> | |||
<a href="https://en.orozaro.com/wiki/index.php?title=Main_Page" class="oroza-lang-pill"> | |||
<span class="oroza-flag">🇺🇸</span> | |||
<span class="oroza-lang-text">EN</span> | |||
</a> | |||
</div> | |||
</div> | |||
</div> | |||
<style> | |||
.oroza-navbar { | |||
margin: 0 0 24px 0; | |||
padding: 0; | |||
background: transparent !important; | |||
border: 0 !important; | |||
box-shadow: none !important; | |||
font-family: "Segoe UI", Tahoma, Arial, sans-serif; | |||
} | |||
.oroza-navbar-inner { | |||
position: relative; | |||
display: flex; | |||
align-items: center; | |||
justify-content: space-between; | |||
gap: 16px; | |||
width: 100%; | |||
padding: 16px 20px; | |||
border-radius: 24px; | |||
background: linear-gradient(180deg, #334a65 0%, #27384c 100%); | |||
border: 1px solid rgba(255, 255, 255, 0.08); | |||
border-bottom: 3px solid #d6a91d; | |||
box-shadow: 0 14px 34px rgba(14, 24, 38, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05); | |||
box-sizing: border-box; | |||
overflow: hidden; | |||
} | |||
.oroza-navbar-inner:before { | |||
content: ""; | |||
position: absolute; | |||
top: 0; | |||
left: 24px; | |||
right: 24px; | |||
height: 1px; | |||
background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 100%); | |||
} | |||
.oroza-navbar-brand-wrap { | |||
flex: 0 0 auto; | |||
min-width: 120px; | |||
} | |||
.oroza-navbar-brand { | |||
display: inline-flex; | |||
flex-direction: column; | |||
justify-content: center; | |||
line-height: 1; | |||
padding: 4px 8px; | |||
border-radius: 12px; | |||
text-decoration: none !important; | |||
transition: transform 0.18s ease, background 0.18s ease; | |||
} | |||
.oroza-navbar-brand:hover { | |||
transform: translateY(-1px); | |||
background: rgba(255, 255, 255, 0.04); | |||
} | |||
.oroza-navbar-brand-top { | |||
font-size: 24px; | |||
font-weight: 900; | |||
letter-spacing: 0.3px; | |||
color: #f1c94d; | |||
text-shadow: 0 1px 0 rgba(0,0,0,0.35), 0 0 10px rgba(214,169,29,0.15); | |||
} | |||
.oroza-navbar-brand-bottom { | |||
margin-top: 0; | |||
font-size: 13px; | |||
font-weight: 800; | |||
letter-spacing: 2px; | |||
color: #dce6f1; | |||
opacity: 0.95; | |||
} | |||
.oroza-navbar-links { | |||
flex: 1 1 auto; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
flex-wrap: nowrap; | |||
gap: 8px; | |||
min-width: 0; | |||
} | |||
.oroza-navbar-link { | |||
position: relative; | |||
display: inline-flex; | |||
align-items: center; | |||
justify-content: center; | |||
min-height: 40px; | |||
padding: 0 12px; | |||
border-radius: 12px; | |||
color: #f5f8fc !important; | |||
text-decoration: none !important; | |||
font-size: 13px; | |||
font-weight: 800; | |||
letter-spacing: 0.1px; | |||
white-space: nowrap; | |||
transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; | |||
} | |||
.oroza-navbar-link:hover { | |||
color: #ffe078 !important; | |||
background: rgba(255, 255, 255, 0.05); | |||
transform: translateY(-1px); | |||
} | |||
.oroza-navbar-link:after { | |||
content: ""; | |||
position: absolute; | |||
left: 12px; | |||
right: 12px; | |||
bottom: 7px; | |||
height: 2px; | |||
border-radius: 20px; | |||
background: linear-gradient(90deg, #f1c94d 0%, #d6a91d 100%); | |||
opacity: 0; | |||
transform: scaleX(0.65); | |||
transition: opacity 0.18s ease, transform 0.18s ease; | |||
} | |||
.oroza-navbar-link:hover:after { | |||
opacity: 1; | |||
} | transform: scaleX(1); | ||
} | |||
.oroza-navbar-link-cta { | |||
color: #1d2a38 !important; | |||
padding: 0 18px; | |||
background: linear-gradient(180deg, #ffe15c 0%, #f3c928 100%); | |||
box-shadow: 0 8px 18px rgba(214, 169, 29, 0.28), inset 0 1px 0 rgba(255,255,255,0.55); | |||
} | |||
.oroza-navbar-link-cta:hover { | |||
color: #16202c !important; | |||
background: linear-gradient(180deg, #ffe76f 0%, #f7d13b 100%); | |||
box-shadow: 0 10px 20px rgba(214, 169, 29, 0.34), inset 0 1px 0 rgba(255,255,255,0.62); | |||
} | |||
.oroza-navbar-link-cta:after { | |||
display: none; | |||
} | |||
.oroza-navbar-lang { | |||
flex: 0 0 auto; | |||
display: flex; | |||
} | align-items: center; | ||
gap: 8px; | |||
} | |||
.oroza-lang-pill { | |||
display: inline-flex; | |||
align-items: center; | |||
justify-content: center; | |||
gap: 6px; | |||
min-width: 72px; | |||
height: 38px; | |||
padding: 0 12px; | |||
border-radius: 999px; | |||
text-decoration: none !important; | |||
font-size: 13px; | |||
font-weight: 900; | |||
letter-spacing: 0.4px; | |||
color: #f4f7fb !important; | |||
background: rgba(255, 255, 255, 0.05); | |||
border: 1px solid rgba(255,255,255,0.12); | |||
transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease; | |||
white-space: nowrap; | |||
} | |||
.oroza-lang-pill:hover { | |||
transform: translateY(-1px); | |||
background: rgba(255,255,255,0.08); | |||
border-color: rgba(214,169,29,0.55); | |||
} | color: #ffe078 !important; | ||
} | |||
.oroza-lang-pill.is-active { | |||
color: #1d2a38 !important; | |||
background: linear-gradient(180deg, #ffe15c 0%, #f3c928 100%); | |||
border-color: rgba(214,169,29,0.95); | |||
box-shadow: 0 6px 14px rgba(214,169,29,0.22), inset 0 1px 0 rgba(255,255,255,0.5); | |||
} | |||
.oroza-flag { | |||
font-size: 16px; | |||
line-height: 1; | |||
} | |||
.oroza-lang-text { | |||
line-height: 1; | |||
} | |||
.oroza-navbar a, | |||
.oroza-navbar a:visited, | |||
.oroza-navbar a:hover, | |||
.oroza-navbar a:active, | |||
.oroza-navbar a:focus { | |||
text-decoration: none !important; | |||
} | |||
@media (max-width: 1180px) { | |||
.oroza-navbar-inner { | |||
flex-wrap: wrap; | |||
justify-content: center; | justify-content: center; | ||
padding: 18px 20px; | |||
} | |||
.oroza-navbar-brand-wrap, | |||
.oroza-navbar-lang { | |||
width: 100%; | width: 100%; | ||
display: flex; | |||
justify-content: center; | justify-content: center; | ||
} | |||
.oroza-navbar-links { | |||
width: 100%; | |||
order: 3; | order: 3; | ||
flex-wrap: wrap; | |||
} | } | ||
} | |||
@media (max-width: 780px) { | |||
.oroza-navbar-inner { | |||
gap: 14px; | |||
border-radius: 20px; | |||
} | |||
.oroza-navbar-brand-top { | |||
font-size: 22px; | |||
} | |||
.oroza-navbar-brand-bottom { | |||
font-size: 12px; | |||
letter-spacing: 1.8px; | |||
} | |||
.oroza-navbar-links { | |||
gap: 10px; | |||
} | |||
.oroza-navbar-link { | |||
width: 100%; | |||
max-width: 320px; | |||
min-height: 44px; | |||
} | |||
.oroza-navbar-lang { | |||
order: 4; | |||
} | |||
} | |||
</style> | |||
</html> | </html> | ||
Revisión del 09:48 4 abr 2026