MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:FILL@0..1"); | @import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:FILL@0..1"); | ||
/* Contentor do botão Buy Now (MONARCH) para dar espaçamento */ | |||
.buy-now-container { | |||
margin: 20px 0; | |||
display: block; | |||
} | |||
/* Estilo do Botão Buy Now (Igual ao do site) */ | |||
.button-buy-now a { | |||
display: inline-block !important; | |||
background-color: #d1ff00 !important; /* Verde néon */ | |||
color: #000 !important; /* Texto preto */ | |||
padding: 12px 35px !important; | |||
border-radius: 50px !important; | |||
font-weight: bold !important; | |||
text-decoration: none !important; | |||
font-size: 1.1em !important; | |||
font-family: sans-serif !important; | |||
box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important; | |||
transition: transform 0.2s ease !important; | |||
} | |||
.button-buy-now a:hover { | |||
transform: scale(1.05) !important; | |||
background-color: #e2ff33 !important; | |||
text-decoration: none !important; | |||
} | |||
/* Remove a seta de link externo apenas neste botão */ | |||
.button-buy-now a.external { | |||
background-image: none !important; | |||
padding-right: 35px !important; | |||
} | |||