MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 50: | Line 50: | ||
div img { | |||
width: 100%; /* Torna as imagens responsivas */ | |||
height: auto; /* Mantém a proporção da imagem */ | |||
} | |||
@media (max-width: 900px) { | |||
.wikitable img { | |||
width: 75%; /* Ajusta as imagens para ocupar 75% da largura disponível */ | |||
} | |||
} | |||
@media (max-width: 500px) { | |||
.wikitable img { | |||
width: 50%; /* Ajusta as imagens para ocupar 50% da largura disponível */ | |||
} | |||
} | |||
Revision as of 19:48, 26 November 2024
/** o código CSS colocado aqui será aplicado a todos os temas */ body { background-image: url('resources\assets\BG_Arrumado.png'); background-size: cover; background-repeat: no-repeat; background-attachment: fixed; margin: 0; padding: 0; height: 100%; } #mw-page-base { background: transparent !important; margin: 0 !important; padding: 0 !important; } /* Definir o fundo branco do painel */ #mw-panel { background-color: #ffffff; border: none; margin-top:3%; } /* Ajusta o container do tabber */ .tabber { position: relative; } /* Oculta abas inativas */ .tabber-tabpanel { display: none; /* Oculta abas que não estão ativas */ padding: 11110px; /* Adiciona espaçamento interno nas abas */ } /* Exibe a aba ativa */ .tabberlive > .tabber-tab[style*="display: block"] { display: block; } /* Define altura mínima fixa para a área das abas */ .tabber-tabpanel { min-height: 7200px; /* Ajuste conforme o maior conteúdo */ transition: all 0.3s ease-in-out; /* Transição suave entre abas */ } div img { width: 100%; /* Torna as imagens responsivas */ height: auto; /* Mantém a proporção da imagem */ } @media (max-width: 900px) { .wikitable img { width: 75%; /* Ajusta as imagens para ocupar 75% da largura disponível */ } } @media (max-width: 500px) { .wikitable img { width: 50%; /* Ajusta as imagens para ocupar 50% da largura disponível */ } } #ca-history { display: none !important;} #ca-viewsource { display: none !important; } #ca-view { display: none !important; }