MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 7: | Line 7: | ||
/* - | /* 1. Contentor do Rodapé - Força a largura total para permitir o alinhamento à direita */ | ||
#footer-places { | |||
display: | display: flex !important; | ||
width: 100% !important; | |||
align-items: center !important; | |||
flex-wrap: nowrap !important; | |||
padding: 10px 0 !important; | |||
} | } | ||
. | /* 2. Links da Esquerda - Garante o espaçamento entre eles */ | ||
#footer-places li { | |||
margin-right: 15px !important; | |||
list-style: none !important; | |||
} | } | ||
/* | /* 3. O Alvo do Botão - O "margin-left: auto" empurra-o para o extremo direito */ | ||
#footer-custom-button { | |||
margin-left: auto !important; | |||
margin-right: 0 !important; | |||
list-style: none !important; | |||
} | } | ||
/* Estilo do Botão | /* 4. Estilo Final do Botão (Cápsula Verde) */ | ||
.footer-button-atronia-real { | .footer-button-atronia-real { | ||
display: inline-block !important; | display: inline-block !important; | ||
background-color: #d1ff00 !important; /* Verde do site */ | background-color: #d1ff00 !important; /* Verde néon do site */ | ||
color: #000 !important; /* Texto preto */ | color: #000 !important; /* Texto preto */ | ||
padding: | padding: 6px 20px !important; | ||
border-radius: 50px !important; | border-radius: 50px !important; | ||
font-weight: bold !important; | font-weight: bold !important; | ||
text-decoration: none !important; | text-decoration: none !important; | ||
font-size: 0.85em !important; | |||
white-space: nowrap !important; | |||
box-shadow: 0 2px 4px rgba(0,0,0,0.15) !important; | |||
transition: transform 0.2s ease, background-color 0.2s ease !important; | |||
font-family: sans-serif !important; | font-family: sans-serif !important; | ||
} | } | ||
/* Efeito Hover */ | |||
.footer-button-atronia-real:hover { | .footer-button-atronia-real:hover { | ||
background-color: #e2ff33 !important; | background-color: #e2ff33 !important; | ||
transform: scale(1.05); | transform: scale(1.05) !important; | ||
text-decoration: none !important; | |||
} | } | ||
/* Remove a | /* Remove a seta de link externo do MediaWiki */ | ||
.footer-button-atronia-real.external { | .footer-button-atronia-real.external, | ||
.footer-button-atronia-real.external:after { | |||
background-image: none !important; | background-image: none !important; | ||
padding-right: 20px !important; | padding-right: 20px !important; | ||
margin-right: 0 !important; | |||
margin-right | |||
} | } | ||