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

De la dexonline wiki
Sari la navigare Sari la căutare
 
(Nu s-au afișat 24 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 {
 
  display: none;
#bodyContent table {
/*  border-collapse: collapse; */
}
}


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


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


Linia 21: Linia 19:
.noautonum .tocnumber {
.noautonum .tocnumber {
   display: none;
   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);
  }
}
}

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);
  }
}