MediaWiki:Vector.css: Różnice pomiędzy wersjami

Z WikiPasy.pl - Encyklopedia KS Cracovia
Przejdź do nawigacji Przejdź do wyszukiwania
 
(Nie pokazano 1 pośredniej wersji utworzonej przez tego samego użytkownika)
Linia 1: Linia 1:
/* Umieszczony tutaj kod CSS wpłynie na wygląd skórki Wektor */
.img-fluid {
 
  max-width: 50%;
@media only screen and (max-width: 640px) {
  width: auto;
  .img-fluid {
   height: auto;
    max-width: 50px;
    height: auto;
   }
 
  .main-page-scores {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.5rem;
  }
}
}


@media only screen and (min-width: 641px) {
.main-page-scores {
  .img-fluid {
  display: grid;
    max-width: 100px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  gap: 0.5rem;
  }
 
  .main-page-scores {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
}
}

Aktualna wersja na dzień 22:54, 3 sie 2024

.img-fluid {
  max-width: 50%;
  width: auto;
  height: auto;
}

.main-page-scores {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}