Difference between revisions of "MediaWiki:Common.css"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(busy status)
(so blockquotes stand out better)
Line 16: Line 16:
 
.stat-busy {
 
.stat-busy {
 
   background-color: #ffff44;
 
   background-color: #ffff44;
 +
}
 +
blockquote {
 +
    font-family: serif;
 +
    border: 1px solid grey;
 +
    padding: 1em;
 
}
 
}

Revision as of 13:19, 13 October 2019

/* CSS placed here will be applied to all skins */
ol {
  counter-reset: listNum;
  list-style-type: none;
}

ol > li:before {
  counter-increment: listNum;
  content: counters(listNum, ".") ".";
}

  /* status styles */
.stat-ok {
  background-color: #44ff44;
}
.stat-busy {
  background-color: #ffff44;
}
blockquote {
    font-family: serif;
    border: 1px solid grey;
    padding: 1em;
}