MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 21: | Line 21: | ||
} | } | ||
/* | /* Garante que os links dos patrocinadores não ocupem 100% da largura */ | ||
#custom-atronia-footer a:has(.footer-sponsor-img) { | |||
display: inline-block !important; | |||
width: auto !important; | |||
margin-bottom: 20px !important; /* Espaço entre as linhas */ | |||
vertical-align: middle; | |||
} | |||
/* Força o tamanho e o comportamento das imagens */ | |||
.footer-sponsor-img { | .footer-sponsor-img { | ||
height: 45px !important; | height: 45px !important; | ||
width: auto !important; | width: auto !important; | ||
display: block !important; | display: inline-block !important; /* Alterado de block para inline-block */ | ||
} | |||
/* Contentor flexível para os patrocinadores */ | |||
.sponsor-grid { | |||
display: flex !important; | |||
flex-wrap: wrap !important; | |||
gap: 30px !important; | |||
max-width: 600px !important; /* Ajuste este valor para forçar a quebra em 2 colunas */ | |||
} | } | ||