MediaWiki:Common.css: Difference between revisions

From IIFQ
(Created page with "→‎CSS placed here will be applied to all skins: @font-face { font-family: "Kontora ExtraBlack"; src: url("/resources/assets/KontoraExtraBlack.woff2") format("woff2"), url("/resources/assets/KontoraExtraBlack.woff") format("woff"); font-weight: 900; font-style: normal; font-display: swap; } @font-face { font-family: "Kontora"; src: url("/resources/assets/Kontora-Bold.woff2") format("woff2"), url("/resources/assets/Kontora-Bold.woff") format("woff"...")
 
No edit summary
Line 102: Line 102:
   border: none;
   border: none;
   box-shadow: none;
   box-shadow: none;
}
.p-navbar .navbar-brand.p-logo {
  height: 140px;
}
@media (min-width: 1105px) {
  .flex-cmln-row, .p-navbar.collapsible .navbar-collapse {
    align-self: end;
  }
}
}

Revision as of 23:15, 2 November 2023

/* CSS placed here will be applied to all skins */
@font-face {
  font-family: "Kontora ExtraBlack";
  src: url("/resources/assets/KontoraExtraBlack.woff2") format("woff2"),
    url("/resources/assets/KontoraExtraBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kontora";
  src: url("/resources/assets/Kontora-Bold.woff2") format("woff2"),
    url("/resources/assets/Kontora-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kontora";
  src: url("/resources/assets/KontoraMedium.woff2") format("woff2"),
    url("/resources/assets/KontoraMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kontora";
  src: url("/resources/assets/KontoraBlack.woff2") format("woff2"),
    url("/resources/assets/KontoraBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kontora";
  src: url("/resources/assets/KontoraExtraBold.woff2") format("woff2"),
    url("/resources/assets/KontoraExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kontora SemBd";
  src: url("/resources/assets/Kontora-SemiBold.woff2") format("woff2"),
    url("/resources/assets/Kontora-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kontora";
  src: url("/resources/assets/Kontora-Regular.woff2") format("woff2"),
    url("/resources/assets/Kontora-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kontora";
  src: url("/resources/assets/KontoraLight.woff2") format("woff2"),
    url("/resources/assets/KontoraLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kontora";
  src: url("/resources/assets/KontoraThin.woff2") format("woff2"),
    url("/resources/assets/KontoraThin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
.p-navbar {
  background: #100e0d;
}
.p-navbar,
.p-navbar .navbar-nav .nav-link,
.p-navbar .navbar-nav .navbar-tool > a,
.p-navbar a.navbar-userloggedin {
  color: #fff;
}
body {
  font-family: "Roboto Condensed",Roboto,sans-serif;
}
.footer {
  background: #231f20;
}
#searchform .form-control {
  background: #2a2827;
  color: #fff;
  border: none;
  border-radius: 0;
}
#searchform .form-control::placeholder {
  color: #5f5e5d;
}
#searchGoButton {
  background: transparent;
  color: white;
  border: none;
  box-shadow: none;
}
.p-navbar .navbar-brand.p-logo {
  height: 140px;
}
@media (min-width: 1105px) {
  .flex-cmln-row, .p-navbar.collapsible .navbar-collapse {
    align-self: end;
  }
}