MediaWiki:Common.js

From 24PinTech Wiki
Revision as of 23:32, 28 February 2018 by Tgriego (talk | contribs)
Jump to navigation Jump to search

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.
/* Any JavaScript here will be loaded for all users on every page load. */

$(function () {
  var e = document.getElementById('wip');
  e.style["font-size"] = "32px";
  e.style["vertical-align"] = "center";
  e.style["font-weight"] = "700";

  var e2 = document.getElementById('cde');
  e2.style.color = "rgba(0, 0, 0, 1)";
  e2.style["background-color"] = "rgba(248, 249, 250, 1)";
  e2.style.border = "1px solid rgba(234, 236, 240, 1)";
  e2.style["font-family"] = "'Courier', monospace";
  e2.style.padding = "5px";
}());