Difference between revisions of "User:ElStrages/common.css"

From RimWorld Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
/* removed for now */
 
/* removed for now */
div.mw-geshi div,
+
/* make the background behind the content area and the tabs a light grey */
div.mw-geshi div pre,
+
#content, #content table
span.mw-geshi,
+
#p-cactions ul li a { background: #fAAAAAA; }
pre.source-css,
 
pre.source-javascript,
 
pre.source-lua {
 
    -moz-tab-size: 10;
 
    -o-tab-size: 10;
 
    tab-size: 10;
 
}
 
 
 
  
 
body {
 
body {

Revision as of 11:45, 5 March 2015

/* 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: #fAAAAAA; }

body {
   background-color: #AAAAAA;
   border: 1px solid #6600CC;
}

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

/* Fix sidebar */
div#mw-panel { position: fixed;
  overflow: auto;
  top: 0px;
  bottom: 0px;
  height: 100%;
  /* Prevent content overlay when sidewards scrolling */
  background-color: #AAAAAA;
  border-right: 1px solid #6600CC;
}
/* Prevent sidewards scrolling in pre elements */
pre {
  overflow: auto;
  max-height: 25em;
}