MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined"); | @import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined"); | ||
@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"); | ||
/* Estilo do Botão ATRONIA no Rodapé */ | |||
.footer-button-atronia { | |||
display: inline-block; | |||
background-color: #d1ff00; /* A cor verde do teu print */ | |||
color: #000000 !important; /* Texto preto */ | |||
padding: 8px 25px; | |||
border-radius: 50px; /* Formato de cápsula */ | |||
font-weight: bold; | |||
text-decoration: none !important; | |||
font-family: sans-serif; | |||
margin-top: 10px; | |||
transition: transform 0.2s; | |||
} | |||
.footer-button-atronia:hover { | |||
transform: scale(1.05); /* Efeito de zoom ao passar o rato */ | |||
background-color: #b8e600; | |||
} | |||