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

De Wiki Gla
Ir para navegação Ir para pesquisar
m
Etiqueta: Revertido
m
Etiqueta: Revertido
Linha 1: Linha 1:
.index-grid {
.index-grid {
   display: grid;
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
   grid-template-columns: repeat(auto-fit, 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-color: #f6f6f6;
   border: 1px solid #dcdcdc;
   border: 1px dashed #003366;
   border-radius: 8px;
   border-radius: 8px;
   padding: 12px;
   padding: 12px;
   color: #1a1a1a;
   box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
   display: flex;
   display: flex;
   flex-direction: column;
   flex-direction: column;
   justify-content: space-between;
   justify-content: space-between;
   min-height: 100px;
   min-height: 120px;
}
}


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


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


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


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


.index-links a:hover {
.index-cell a:hover {
  color: #024f9c;
   text-decoration: underline;
   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;
  }
}
}

Edição das 01h28min de 26 de junho de 2025

.index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  font-family: "Noto Sans", sans-serif;
}

.index-cell {
  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);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}

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