Actions

MediaWiki

MediaWiki:Common.css

From Modig.pl Wiki

Revision as of 14:05, 2 July 2025 by Administrator (talk | contribs) (Created page with "→‎Umieszczony tutaj kod CSS zostanie zastosowany we wszystkich skórkach: .jzpdflink {float: right;} #mheader { margin-top: 20px; } .product-list { display: flex; flex-wrap: wrap; gap: 1%; align-items: flex-end; } .product-item { flex-basis: 19%; text-align: center; margin-bottom: 20px; } @media only screen and (max-width: 1200px) { .product-item { flex-basis: 24%; } } @media only screen and (max-width: 1000px) { .product-item {...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Umieszczony tutaj kod CSS zostanie zastosowany we wszystkich skórkach */
.jzpdflink {float: right;}

#mheader {
  margin-top: 20px;
}


.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
align-items: flex-end;
}

.product-item {
  flex-basis: 19%;
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1200px) {
  .product-item {
    flex-basis: 24%;
  }
}

@media only screen and (max-width: 1000px) {
  .product-item {
    flex-basis: 32%;
  }
}

@media only screen and (max-width: 800px) {
  .product-item {
    flex-basis: 49%;
  }
}

.product-name {
  margin-bottom: 15px;
  font-size: 110%;
  font-weight: bold;
}
.product-name a {
  color: #000;
}

.product-btn a {
color: #fff;
    background: #ff6900;
    padding: .4em 1.2em .4em .7em;
    font-weight: 700;
}

.prod-photo-wrapper {
  padding: 15px;
}

#footer-privacy, #footer-about, #footer-disclaimers {
  display: none;
}