Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

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.
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
/* Set a modern background color for the body */
body {
  background-color: #f4f4f4;
  font-family: 'Roboto', sans-serif; /* Use a modern font */
}

/* Improve the content box with a white background and shadow */
#content {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
}

/* Update link styling to be modern */
a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  color: #005b99;
  text-decoration: underline;
}

/* Header styling */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  color: #333;
  margin-bottom: 10px;
}

/* Customize sidebar appearance */
#mw-panel {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

/* Sticky sidebar and header */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Sidebar menu item customization */
#mw-panel ul {
  list-style: none;
  padding-left: 0;
}

#mw-panel li {
  padding: 8px 0;
}

#mw-panel a {
  color: #007acc;
  text-decoration: none;
}

#mw-panel a:hover {
  color: #005b99;
}