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"); | ||
/* Botão de Seta para o Topo */ | |||
.footer-top-button { | |||
display: inline-flex !important; | |||
align-items: center !important; | |||
justify-content: center !important; | |||
background-color: #d1ff00 !important; /* Mesmo verde */ | |||
color: #000 !important; | |||
width: 40px !important; | |||
height: 40px !important; | |||
border-radius: 50% !important; /* Circular */ | |||
font-weight: bold !important; | |||
font-size: 20px !important; | |||
text-decoration: none !important; | |||
box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important; | |||
transition: transform 0.2s ease !important; | |||
cursor: pointer; | |||
} | |||
.footer-top-button:hover { | |||
transform: scale(1.1) !important; | |||
background-color: #e2ff33 !important; | |||
text-decoration: none !important; | |||
} | |||
/* Garante que o container se alinha bem no mobile */ | |||
@media screen and (max-width: 720px) { | |||
#footer-custom-buttons-container { | |||
justify-content: center !important; | |||
margin-top: 15px !important; | |||
} | |||
} | |||