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

 
(Nu s-au afișat 37 de versiuni intermediare efectuate de același utilizator)
Linia 1: Linia 1:
/** CSS plasate aici vor fi aplicate tuturor aparițiilor */
.page-Pagina_principală #firstHeading {
body.page-Pagina_principală h1.firstHeading {
   display: none;
   display: none;
}
}


body.page-Pagina_principală #contentSub {
#bodyContent table th, #bodyContent table td {
   display: none;
   border: 1px solid #ccc;
  padding: 2px 5px;
}
}


body.page-Pagina_principală h1 {
#bodyContent table th {
   margin-top: 0px;
   background-color: #eee;
}
}


div#mw-panel {
.center {
   top: 50px;
  margin-left: auto;
   margin-right: auto;
}
}


div#p-logo {
.noautonum .tocnumber {
   height: 50px;
   display: none;
  top: -50px;
}
 
div#p-logo a {
  height: 50px;
}
}


#bodyContent table th {
/* Keep this in sync with Mobile.css. MobileFrontend only loads that file, not this. */
   background-color: #eee;
@media (prefers-color-scheme: dark) {
   border: 1px solid #aaa;
   body {
    background-color: #000;
   }
  body, img, video {
    filter: invert(1) hue-rotate(180deg);
  }
}
}

Versiunea curentă din 5 octombrie 2021 14:01

.page-Pagina_principală #firstHeading {
  display: none;
}

#bodyContent table th, #bodyContent table td {
  border: 1px solid #ccc;
  padding: 2px 5px;
}

#bodyContent table th {
  background-color: #eee;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.noautonum .tocnumber {
  display: none;
}

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