MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 51: | Line 51: | ||
/* Botão Técnico Atlas */ | /* Botão Técnico Atlas - Cores Customizadas */ | ||
.mw-parser-output .atlas-btn { | .mw-parser-output .atlas-btn { | ||
display: inline-block !important; | display: inline-block !important; | ||
padding: 10px | padding: 10px 22px !important; | ||
background-color: #1B2826 !important; | background-color: #1B2826 !important; /* Cor base escura */ | ||
border: 1px solid # | border: 1px solid #1B2826 !important; | ||
border-radius: 4px !important; | border-radius: 4px !important; | ||
color: #ffffff !important; | transition: all 0.25s ease !important; | ||
cursor: pointer !important; | |||
text-align: center !important; | |||
border-bottom: 1px solid #1B2826 !important; /* Remove qualquer traço de link */ | |||
} | |||
/* Link dentro do botão */ | |||
.mw-parser-output .atlas-btn a { | |||
color: #ffffff !important; /* Texto Branco */ | |||
text-decoration: none !important; | text-decoration: none !important; | ||
font-weight: bold !important; | font-weight: bold !important; | ||
font-size: 0. | font-size: 0.95em !important; | ||
} | } | ||
/* Hover: | /* Efeito Hover: Versão levemente mais clara */ | ||
.mw-parser-output .atlas-btn:hover { | .mw-parser-output .atlas-btn:hover { | ||
background-color: # | background-color: #2A3B38 !important; /* Tom mais claro */ | ||
border-color: #2A3B38 !important; | |||
text-decoration: none !important; | text-decoration: none !important; | ||
box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important; /* Sombra leve para profundidade */ | |||
box-shadow: | |||
} | } | ||
/* | /* Garante que o link não mude de cor ou sublinhe no hover */ | ||
.mw-parser-output .atlas-btn a { | .mw-parser-output .atlas-btn a:hover { | ||
text-decoration: none !important; | text-decoration: none !important; | ||
color: | color: #ffffff !important; | ||
} | } | ||