Mudanças entre as edições de "Predefinição:MainPageIndex/styles.css"
Ir para navegação
Ir para pesquisar
m |
m Etiqueta: Revertido |
||
| Linha 1: | Linha 1: | ||
.index-grid { | .index-grid { | ||
display: | display: grid; | ||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); | |||
gap: 16px; | gap: 16px; | ||
padding: 12px; | |||
font-family: "Noto Sans", sans-serif; | font-family: "Noto Sans", sans-serif; | ||
} | } | ||
.index-cell { | .index-cell { | ||
background: #f8f8f8; | |||
background | border: 1px solid #dcdcdc; | ||
border: 1px | |||
border-radius: 8px; | border-radius: 8px; | ||
padding: 12px; | padding: 12px; | ||
color: #1a1a1a; | |||
display: flex; | |||
flex-direction: column; | |||
justify-content: space-between; | |||
min-height: 100px; | |||
} | } | ||
.index-title { | .index-title { | ||
font-size: 15px; | |||
font-weight: bold; | |||
margin-bottom: 8px; | |||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
gap: 6px; | gap: 6px; | ||
} | } | ||
.index-title | .index-title .emoji { | ||
font-size: 18px; | |||
} | } | ||
.index-links { | |||
font-size: 14px; | font-size: 14px; | ||
line-height: 1. | line-height: 1.5; | ||
word-wrap: break-word; | word-wrap: break-word; | ||
} | } | ||
.index- | .index-links a { | ||
color: # | color: #2a5db0; | ||
text-decoration: none; | text-decoration: none; | ||
white-space: nowrap; | |||
margin-right: 6px; | margin-right: 6px; | ||
} | } | ||
.index- | .index-links a:hover { | ||
text-decoration: underline; | text-decoration: underline; | ||
} | } | ||
@media screen and (max-width: 1024px) { | @media screen and (max-width: 1024px) { | ||
.index- | .index-grid { | ||
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); | |||
} | |||
} | |||
@media screen and (max-width: 600px) { | |||
.index-grid { | |||
grid-template-columns: 1fr; | |||
} | } | ||
} | } | ||
Edição das 01h27min de 26 de junho de 2025
.index-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 16px;
padding: 12px;
font-family: "Noto Sans", sans-serif;
}
.index-cell {
background: #f8f8f8;
border: 1px solid #dcdcdc;
border-radius: 8px;
padding: 12px;
color: #1a1a1a;
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100px;
}
.index-title {
font-size: 15px;
font-weight: bold;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 6px;
}
.index-title .emoji {
font-size: 18px;
}
.index-links {
font-size: 14px;
line-height: 1.5;
word-wrap: break-word;
}
.index-links a {
color: #2a5db0;
text-decoration: none;
white-space: nowrap;
margin-right: 6px;
}
.index-links a:hover {
text-decoration: underline;
}
@media screen and (max-width: 1024px) {
.index-grid {
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
}
@media screen and (max-width: 600px) {
.index-grid {
grid-template-columns: 1fr;
}
}