Mudanças entre as edições de "Predefinição:MainPageIndex/styles.css"
Ir para navegação
Ir para pesquisar
| Linha 9: | Linha 9: | ||
.index-cell { | .index-cell { | ||
flex: 1 1 48%; | flex: 1 1 48%; | ||
background-color: #f6f6f6; | background-color: #f6f6f6; | ||
border: 1px dashed # | border: 1px dashed #003366; /* azul escuro */ | ||
border-radius: 8px; | border-radius: 8px; | ||
padding: 12px; | padding: 12px; | ||
box-sizing: border-box; | box-sizing: border-box; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); | ||
} | } | ||
| Linha 24: | Linha 24: | ||
margin-bottom: 8px; | margin-bottom: 8px; | ||
gap: 6px; | gap: 6px; | ||
} | } | ||
Edição das 23h37min de 1 de junho de 2025
.index-grid {
display: flex;
flex-wrap: wrap;
gap: 16px;
font-family: Verdana, Arial, Helvetica, sans-serif;
justify-content: space-between;
}
.index-cell {
flex: 1 1 48%;
background-color: #f6f6f6;
border: 1px dashed #003366; /* azul escuro */
border-radius: 8px;
padding: 12px;
box-sizing: border-box;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.index-title {
display: flex;
align-items: center;
font-weight: bold;
font-size: 15px;
margin-bottom: 8px;
gap: 6px;
}
.index-title img {
width: 20px;
height: 20px;
vertical-align: middle;
}
.index-cell a {
color: #0366d6;
text-decoration: none;
margin-right: 6px;
}
.index-cell a:hover {
color: #024f9c;
text-decoration: underline;
}
@media screen and (max-width: 768px) {
.index-cell {
flex: 1 1 100%;
}
}