Once I get that upgrade to 36-hour days, I will tackle that. – Mychaeel

Difference between revisions of "MediaWiki:Monobook.css"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
m
Line 12: Line 12:
 
/* global background color */
 
/* global background color */
 
body {
 
body {
   background-color: #cfe7ff;
+
   background: #cfe7ff;
 
}
 
}
  
Line 27: Line 27:
 
#p-search    .pBody,
 
#p-search    .pBody,
 
#p-tb        .pBody {
 
#p-tb        .pBody {
   background-color: #eff7ff;
+
   background: #eff7ff;
 
}
 
}
  
 
/* content and page tab background color */
 
/* content and page tab background color */
 
#content, #p-caction li a, #pcaction li.selected a {
 
#content, #p-caction li a, #pcaction li.selected a {
   background-color: #eff7ff;
+
   background: #eff7ff;
 
}
 
}
  

Revision as of 03:23, 2 March 2008

/*
Fix for weird-looking preview and diff, doesn't affect CSS content:
<source lang="css">
*/
 
/** Unreal Wiki Style **********************************************************
 *
 * Description: Adjustments to the style to give the site a bit more of a unique
 * identity
 */
 
/* global background color */
body {
  background: #cfe7ff;
}
 
/* indent sidebar boxes a tiny bit */
#p-navigation,
#p-search,
#p-tb {
  margin-left: 0.3em;
  width: 11.3em;
}
 
/* sidebar box background color */
#p-navigation .pBody,
#p-search     .pBody,
#p-tb         .pBody {
  background: #eff7ff;
}
 
/* content and page tab background color */
#content, #p-caction li a, #pcaction li.selected a {
  background: #eff7ff;
}
 
/** Advertisement placement ****************************************************
 *
 * Description: Positions the advertisement corrently, and adjusts the footer
 * bar to fit in well with it.
 */
 
#f-copyrightico {
  top: 10px;
}
#f-poweredbyico {
  top: -5px;
  margin-right: 0px;
}
#f-poweredbyico, #f-copyrightico {
  height: auto;
}
#footer {
  height: 40px;
  padding: 4px 0pt 14px;
}
 
/** Source code highlighter modifications **************************************
 *
 * Description: Adjustments to the source code highlighter to fit better with
 * the rest of the site style.
 */
 
.highlighted-source {
  background-color:  #f9f9f9;
  border:            1px dashed #2f6fab;
  color:             black;
  padding:           1em;
}
 
.highlighted-source, .highlighted-source * {
  line-height:       1.1em;
}
 
/*
</source>
(end of preview fix) */