Jump to navigation Jump to search

Difference between revisions of "MediaWiki:Common.css"

Line 2: Line 2:


.toc {
.toc {
  background: #302026;
  background-color: #302026;
}
}




.nowiki {
.nowiki {
  background: #302026;
  background-color: #302026;
}
}


.mw-code {
.mw-code {
  background: #545253;
  background-color: #545253;
}
}


.pre {
.pre {
  background: #545253;
  background-color: #545253;
}
}



Revision as of 22:10, 14 December 2019

/* CSS placed here will be applied to all skins */

.toc {
 background-color: #302026;
}


.nowiki {
 background-color: #302026;
}

.mw-code {
 background-color: #545253;
}

.pre {
 background-color: #545253;
}

/* visited link */
a:visited {
  color: #d9832e;
}

/* mouse over link */
a:hover {
  color: red;
}

/* selected link */
a:active {
  color: #cc0000;
}