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

De Wiki Gla
Ir para navegação Ir para pesquisar
m
m
Linha 15: Linha 15:
   box-sizing: border-box;
   box-sizing: border-box;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  min-height: 140px;
}
}


Linha 32: Linha 33:
}
}


.index-cell .index-links {
.index-links {
   font-size: 14px;
   font-size: 13px;
   line-height: 1.6;
   line-height: 1.5;
   word-wrap: break-word;
   word-wrap: break-word;
   overflow-wrap: break-word;
   overflow-wrap: break-word;
Linha 42: Linha 43:
   color: #0366d6;
   color: #0366d6;
   text-decoration: none;
   text-decoration: none;
   margin-right: 6px;
   margin-right: 4px;
   white-space: nowrap;
   white-space: nowrap;
}
}
Linha 54: Linha 55:
   .index-cell {
   .index-cell {
     flex: 1 1 100%;
     flex: 1 1 100%;
  }
}
/* teste */
.index-cell {
  min-height: 160px;
}
.index-cell a {
  font-size: 13px;
  margin-right: 4px;
  white-space: nowrap;
}
@media screen and (max-width: 1150px) {
  .index-links {
    column-count: 2;
    column-gap: 16px;
   }
   }
}
}

Edição das 12h31min de 26 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);
  min-height: 140px;
}

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

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

.index-links {
  font-size: 13px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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