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

From RimWorld Wiki
Jump to navigation Jump to search
Line 24: Line 24:
 
   border-top-right-radius: 1em;
 
   border-top-right-radius: 1em;
 
   border-bottom-right-radius: 1em;
 
   border-bottom-right-radius: 1em;
 +
}
 +
 +
/* Fix sidebar */
 +
div#mw-panel { position: fixed;
 +
  overflow: auto;
 +
  top: 0px;
 +
  bottom: 0px;
 +
  height: 100%;
 +
  /* Prevent content overlay when sidewards scrolling */
 +
  background-color: #F6F6F6;
 +
  border-right: 1px solid #A7D7F9;
 +
}
 +
/* Prevent sidewards scrolling in pre elements */
 +
pre {
 +
  overflow: auto;
 +
  max-height: 25em;
 
}
 
}

Revision as of 11:34, 5 March 2015

/* removed for now */
tab {
   background-color: #000000;
}

body {
   background-color: #000000;
}

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

#p-cactions ul li, #p-cactions ul li a {
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
}
#content {
  border-top-left-radius: 1em;
  border-bottom-left-radius: 1em;
}
div.pBody {
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
}

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