|
|
(161 revisões intermediárias por 2 usuários não estão sendo mostradas) |
Linha 1: |
Linha 1: |
| /** o código CSS colocado aqui será aplicado a todos os temas */
| | #t-specialpages { display: none; } |
| | |
| /* Layout principal */
| |
| #content { | |
| display: flex;
| |
| flex-direction: column;
| |
| align-items: center;
| |
| background-color: #ffffff;
| |
| padding: 20px;
| |
| margin: 0 auto;
| |
| max-width: 1200px; /* Largura máxima para desktops */
| |
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
| |
| border-radius: 10px;
| |
| }
| |
| | |
| @media (max-width: 768px) {
| |
| #content {
| |
| padding: 15px;
| |
| max-width: 100%;
| |
| }
| |
| }
| |
| | |
| /* Sidebar - Oculta em telas menores e deixa o conteúdo centralizado */
| |
| #mw-panel {
| |
| display: flex;
| |
| flex-direction: column;
| |
| background-color: #006400; /* Cor verde do IF */
| |
| padding: 10px;
| |
| width: 250px;
| |
| }
| |
| | |
| @media (max-width: 768px) {
| |
| #mw-panel {
| |
| display: none; /* Oculta sidebar em telas pequenas */
| |
| }
| |
| }
| |
| | |
| | |
| | |
| /* Menu de navegação */
| |
| #p-navigation {
| |
| background-color: #006400; /* Verde escuro do IF */
| |
| color: white;
| |
| padding: 10px;
| |
| border-radius: 10px;
| |
| display: flex;
| |
| flex-wrap: wrap;
| |
| justify-content: space-between;
| |
| box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
| |
| }
| |
| | |
| #p-navigation ul {
| |
| list-style: none;
| |
| padding: 0;
| |
| margin: 0;
| |
| display: flex;
| |
| flex-wrap: wrap;
| |
| }
| |
| | |
| #p-navigation li {
| |
| margin: 10px 15px;
| |
| }
| |
| | |
| #p-navigation li a {
| |
| color: white;
| |
| font-weight: bold;
| |
| text-decoration: none;
| |
| padding: 10px 15px;
| |
| border-radius: 5px;
| |
| transition: background-color 0.3s ease;
| |
| }
| |
| | |
| #p-navigation li a:hover {
| |
| background-color: #32CD32; /* Cor de destaque */
| |
| }
| |
| | |
| /* Menu em dispositivos móveis */
| |
| @media (max-width: 768px) {
| |
| #p-navigation {
| |
| flex-direction: column;
| |
| padding: 20px;
| |
| }
| |
| | |
| #p-navigation li {
| |
| margin: 10px 0;
| |
| }
| |
| }
| |
| | |
| /* Tipografia geral */
| |
| body {
| |
| font-family: 'Open Sans', sans-serif;
| |
| line-height: 1.6;
| |
| background-color: #f4f4f4; /* Fundo claro */
| |
| color: #333;
| |
| margin: 0;
| |
| padding: 0;
| |
| }
| |
| | |
| h1, h2, h3, h4, h5, h6 {
| |
| color: #006400; /* Verde do IF para títulos */
| |
| margin-bottom: 20px;
| |
| }
| |
| | |
| a {
| |
| color: #006400; /* Cor dos links */
| |
| text-decoration: none;
| |
| transition: color 0.3s ease;
| |
| }
| |
| | |
| a:hover {
| |
| color: #32CD32;
| |
| }
| |
| | |
| | |
| | |
| /* Botões */
| |
| button, .button {
| |
| background-color: #006400;
| |
| color: white;
| |
| border: none;
| |
| padding: 10px 20px;
| |
| border-radius: 5px;
| |
| font-size: 16px;
| |
| cursor: pointer;
| |
| transition: background-color 0.3s ease;
| |
| }
| |
| | |
| button:hover, .button:hover {
| |
| background-color: #228B22; /* Sombra mais clara no hover */
| |
| }
| |
| | |
| button:active, .button:active {
| |
| background-color: #32CD32;
| |
| }
| |
| | |
| | |
| /* Rodapé */
| |
| #footer {
| |
| background-color: #006400;
| |
| color: white;
| |
| padding: 20px;
| |
| text-align: center;
| |
| margin-top: 20px;
| |
| border-radius: 5px;
| |
| }
| |
| | |
| #footer a {
| |
| color: white;
| |
| text-decoration: underline;
| |
| }
| |
| | |
| @media (max-width: 768px) {
| |
| #footer {
| |
| font-size: 14px;
| |
| }
| |
| }
| |
| | |
| | |
| | |
| | |
| /* Imagens responsivas */
| |
| img {
| |
| max-width: 100%;
| |
| height: auto;
| |
| border-radius: 10px;
| |
| box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
| |
| }
| |
| | |
| | |
| | |
| /* Barra de ferramentas (toolbar) */
| |
| #p-personal, #p-views {
| |
| background-color: #006400;
| |
| padding: 10px;
| |
| border-radius: 5px;
| |
| margin-bottom: 20px;
| |
| }
| |
| | |
| #p-personal a, #p-views a {
| |
| color: white;
| |
| padding: 8px;
| |
| border-radius: 5px;
| |
| transition: background-color 0.3s ease;
| |
| }
| |
| | |
| #p-personal a:hover, #p-views a:hover {
| |
| background-color: #32CD32;
| |
| } | |