User:ElStrages/common.css

From RimWorld Wiki
Jump to navigation Jump to search

Note: After saving, 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: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* removed for now */
/* make the background behind the content area and the tabs a light grey */
#content, #content table #p-cactions ul li a { 
  background-color: #AAAAAA;
}

body {
   background-color: #333333;
   border: 1px solid #0033CC;
   color: #EEEEEE;
}

div {
   background-color: inherit;
   border: 1px solid inherit;
   color: inherit;
}


/* changes the background of pre areas  */
pre { 
   background-color: #DDDDDD;
   border: 1px solid #0033CC;
   color: #000000;
}

a {
   font-family: Arial;
   font-size: 11px;
   color: #EEEEEE;
}

/* Fix sidebar */
div#mw-panel { position: fixed;

  overflow: auto;
  top: 0px;
  bottom: 0px;
  height: 100%;
  /* Prevent content overlay when sidewards scrolling */
  background-color: #333333;
  border-right: 1px solid #0033CC;
}
/* Prevent sidewards scrolling in pre elements */
pre {
  overflow: auto;
  max-height: 25em;
}