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

De Wiki Gla
Ir para navegação Ir para pesquisar
Linha 3: Linha 3:
   flex-wrap: wrap;
   flex-wrap: wrap;
   gap: 16px;
   gap: 16px;
   font-family: Verdana, Arial, Helvetica, sans-serif;
   font-family: "Noto Sans", sans-serif;
   justify-content: space-between;
   justify-content: space-between;
}
}
Linha 10: Linha 10:
   flex: 1 1 48%;
   flex: 1 1 48%;
   background-color: #f6f6f6;
   background-color: #f6f6f6;
   border: 1px dashed #003366; /* azul escuro */
   border: 1px dashed #003366;
   border-radius: 8px;
   border-radius: 8px;
   padding: 12px;
   padding: 12px;
Linha 30: Linha 30:
   height: 20px;
   height: 20px;
   vertical-align: middle;
   vertical-align: middle;
}
.index-cell .index-links {
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
}


Linha 36: Linha 43:
   text-decoration: none;
   text-decoration: none;
   margin-right: 6px;
   margin-right: 6px;
  white-space: nowrap;
}
}


Linha 43: Linha 51:
}
}


@media screen and (max-width: 768px) {
@media screen and (max-width: 1024px) {
   .index-cell {
   .index-cell {
     flex: 1 1 100%;
     flex: 1 1 100%;
   }
   }
}
}

Edição das 02h48min de 2 de junho de 2025

.index-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "Noto Sans", sans-serif;
  justify-content: space-between;
}

.index-cell {
  flex: 1 1 48%;
  background-color: #f6f6f6;
  border: 1px dashed #003366;
  border-radius: 8px;
  padding: 12px;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.index-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 8px;
  gap: 6px;
}

.index-title img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.index-cell .index-links {
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.index-cell a {
  color: #0366d6;
  text-decoration: none;
  margin-right: 6px;
  white-space: nowrap;
}

.index-cell a:hover {
  color: #024f9c;
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .index-cell {
    flex: 1 1 100%;
  }
}