Mudanças entre as edições de "Predefinição:MainPageIndex/styles.css"

De Wiki Gla
Ir para navegação Ir para pesquisar
Linha 14: Linha 14:
   padding: 12px;
   padding: 12px;
   box-sizing: border-box;
   box-sizing: border-box;
}
.index-inner {
  background-color: #f6f6f6;
  border-radius: 6px;
  padding: 10px;
}
}


Linha 24: Linha 30:
}
}


.index-links {
.index-title img {
   font-size: 14px;
   width: 20px;
   line-height: 1.6;
   height: 20px;
  background-color: #f6f6f6; /* cinza claríssimo, quase branco */
   margin-right: 6px;
  padding: 8px;
   border-radius: 6px;
}
}



Edição das 23h32min 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: #fdfdfd;
  border: 1px dashed #AAAAAA;
  border-radius: 8px;
  padding: 12px;
  box-sizing: border-box;
}

.index-inner {
  background-color: #f6f6f6; 
  border-radius: 6px;
  padding: 10px;
}

.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%;
  }
}