Predefinição:MainPageIndex/styles.css
Ir para navegação
Ir para pesquisar
.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%;
}
}