Diferență între revizuiri ale paginii „MediaWiki:Mobile.css”

De la dexonline wiki
Sari la navigare Sari la căutare
 
(Nu s-a afișat o versiune intermediară efectuată de același utilizator)
Linia 6: Linia 6:
}
}


.header {
/* Keep this in sync with Common.css. MobileFrontend only loads this file, not that one. */
   margin-top: 50px;
@media (prefers-color-scheme: dark) {
   background: url("http://wiki.dexonline.ro/images/6/6f/Logo.svg") no-repeat center;
   body {
    background-color: #000;
   }
  body, img, video {
    filter: invert(1) hue-rotate(180deg);
  }
}
}

Versiunea curentă din 5 octombrie 2021 13:24

/* CSS placed here will affect users of the mobile site */

/* hide the Last modified bar underneath the search box */
#content_wrapper .last-modified-bar {
  display: none;
}

/* Keep this in sync with Common.css. MobileFrontend only loads this file, not that one. */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #000;
  }
  body, img, video {
    filter: invert(1) hue-rotate(180deg);
  }
}