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: #fdfdfd;
border: 1px dashed #AAAAAA;
border-radius: 8px;
padding: 12px;
box-sizing: border-box;
}
.index-title {
display: flex;
align-items: center;
font-weight: bold;
font-size: 15px;
margin-bottom: 6px;
}
.index-title img {
width: 20px;
height: 20px;
margin-right: 6px;
}
.index-links {
font-size: 14px;
line-height: 1.6;
}
.index-links a {
color: #0366d6;
text-decoration: none;
margin-right: 6px;
}
.index-links a:hover {
text-decoration: underline;
}
@media screen and (max-width: 768px) {
.index-cell {
flex: 1 1 100%;
}
}