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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* === Global Dark Theme === */
body.madness-theme,
body.skin-vector {
  background-color: #1a0e08;
  color: #f0e6d2;
  font-family: 'Courier New', monospace;
}

/* === Headings and Text === */
#firstHeading {
  font-size: 3em;
  font-weight: bold;
  color: #ff2c2c;
  text-shadow: 0 0 8px #ff0000;
  text-align: center;
  margin-bottom: 20px;
}

.mw-body {
  background-color: #2a1b14;
  border: 2px solid #ff3b3b;
  border-radius: 10px;
  box-shadow: 0 0 12px #ff0000;
  padding: 20px;
}

/* === Sidebar Links === */
#mw-panel {
  background-color: #0e0604;
  border-right: 2px solid #ff2c2c;
  padding-top: 20px;
  width: 200px;
}
#mw-panel a {
  color: #ffd966 !important;
  background-color: #1a120e;
  padding: 8px;
  border-radius: 5px;
  display: block;
  margin-bottom: 5px;
  text-decoration: none;
}
#mw-panel a:hover {
  background-color: #333;
  color: #fff !important;
}

/* === Collapsible Tool Panel === */
#p-tb {
  position: fixed;
  right: 0;
  top: 50px;
  background-color: #120a07;
  color: #ffd966;
  padding: 10px;
  border: 2px solid #ff3b3b;
  border-radius: 10px 0 0 10px;
  max-width: 220px;
  z-index: 999;
  transition: transform 0.3s ease;
}

#p-tb.collapsed {
  transform: translateX(100%);
}

#p-tb-toggle {
  position: fixed;
  right: 0;
  top: 10px;
  background-color: #ff2c2c;
  color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 1000;
  font-weight: bold;
  border-radius: 6px 0 0 6px;
}

/* Hide old vector sticky header */
.vector-sticky-header {
  display: none !important;
}