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; /* fundo levemente cinza */ | ||
border: 1px dashed # | border: 1px dashed #d4af37; /* dourado sutil no tracejado */ | ||
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); /* profundidade leve */ | |||
} | } | ||
| Linha 21: | Linha 22: | ||
font-weight: bold; | font-weight: bold; | ||
font-size: 15px; | font-size: 15px; | ||
margin-bottom: 6px; | margin-bottom: 8px; | ||
gap: 6px; | |||
border-left: 3px solid #d4af37; /* destaque sutil dourado */ | |||
padding-left: 8px; | |||
} | } | ||
| Linha 27: | Linha 31: | ||
width: 20px; | width: 20px; | ||
height: 20px; | height: 20px; | ||
vertical-align: middle; | |||
} | } | ||
.index- | .index-cell a { | ||
color: #0366d6; | color: #0366d6; | ||
text-decoration: none; | text-decoration: none; | ||
| Linha 41: | Linha 40: | ||
} | } | ||
.index- | .index-cell a:hover { | ||
color: #024f9c; | |||
text-decoration: underline; | text-decoration: underline; | ||
} | } | ||
Edição das 23h35min 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; /* fundo levemente cinza */
border: 1px dashed #d4af37; /* dourado sutil no tracejado */
border-radius: 8px;
padding: 12px;
box-sizing: border-box;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); /* profundidade leve */
}
.index-title {
display: flex;
align-items: center;
font-weight: bold;
font-size: 15px;
margin-bottom: 8px;
gap: 6px;
border-left: 3px solid #d4af37; /* destaque sutil dourado */
padding-left: 8px;
}
.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%;
}
}