MediaWiki:Common.css

From Puella Magi Wiki
Revision as of 11:34, 2 October 2011 by Homerun-chan (talk | contribs) (Trying something totally at random)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Runes font */
@font-face {
  font-family: MadokaRunes;
  src: url(/resources/runes.ttf);
}

@font-face {
  font-family: MadokaMusical;
  src: url(/resources/runesmusical.ttf);
}

/* TODO table */
table.todo {
  width: 100%;
}
table.todo td:first-child {
  width: 70px;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
}
table.todo td:nth-child(2),
table.todo td:nth-child(3) {
  width: 70px;
  font-size: 11px;
  text-align: center;
}
table.todo td.waiting {
  background: #eee;
  font-weight: normal;
  color: #999;
}
table.todo td.working {
  background: #FFE5CC;
  color: #B44723;
}
table.todo td.working ~ td {
  background: #FFF9EF;
}
table.todo td.partial {
  background: #6E9591;
  color: #fff;
}
table.todo td.partial ~ td {
  background: #D9F2F5;
}
table.todo td.done {
  background: #3c3;
  color: #fff;
}
table.todo td.done ~ td {
  background: #E4FFE3;
}

/* Inline spoilers tag */
.inline-spoilers, .inline_spoilers a, .inline_spoilers a:visited {
  /*background: #222;
  color: #222;*/
  background: white;
  color: white;
  border-bottom: 1px solid #b3b3b3;
  border-left:   1px solid #b3b3b3;
  border-right:  1px solid #b3b3b3;
  padding: 2px;
}

.inline-spoilers:hover {
  color: black;
}

table.collapsed tr.collapsible {
        display: none;
}
 
.collapseButton {                /* 'show'/'hide' buttons created dynamically by the               */
        float: right;               /* CollapsibleTables JavaScript in [[MediaWiki:Common.js]] */
        font-weight: normal;        /* are styled here so they can be customised.               */
        text-align: right;
        width: auto;
        margin-left: 10px;
}