Difference between revisions of "User:Kennethau/monobook.css"

From DEW Robotics
Jump to: navigation, search
m (Created page with '#top{ background: #333333; height: 3px; Height of top section: width: 986px; Width of main container: margin-left: auto; margin-bottom: 1px; margin-right: auto; } #title{ ...')
 
Line 1: Line 1:
#top{
+
/* make the background behind the content area and the tabs a light grey */
background: #333333;
+
#content, #content table
height: 3px; /*Height of top section*/
+
#p-cactions ul li a { background: #f5f5f5; }
width: 986px; /*Width of main container*/
+
margin-left: auto;
+
/* stop background image from scrolling with content area */
margin-bottom: 1px;
+
body { background-attachment: fixed; }
margin-right: auto;
+
 +
/* replace the book in the background with something else */
 +
body { background: Purple; }
 +
 +
/* changes the background of pre areas  */
 +
pre { background: White }
 +
 +
/* change the logo */
 +
#p-logo a { background: url(http://en.wikipedia.org/upload/wiki.png) 35% 50% no-repeat !important; }
 +
 +
/* don't use any logo, move the boxes onto that area instead */
 +
#p-logo { display: none }
 +
#column-one { padding-top: 0; }
 +
 +
/* suppress the person icon by your username */
 +
li#pt-userpage { background: none }
 +
 +
/* use browser prefs for text size and font */
 +
body, #globalWrapper { font: inherit !important; }
 +
 +
/* always underline links */
 +
:link { text-decoration: underline; }
 +
 +
/*Display body content in a narrower column for easier reading*/
 +
/*adjust percentages as desired*/
 +
div#bodyContent {
 +
  width: 50%;
 +
  line-height: 105%;
 
}
 
}
 
+
#title{
+
/* change background of unselected tabs */
background: #fdfdfd;
+
#p-cactions ul li a { background: #C7FDC7; }
height: 72px; /*Height of top section*/
+
width: 986px; /*Width of main container*/
+
/* change background of selected tabs */
margin-left: auto;
+
#p-cactions ul li.selected a { background: white; }
margin-right: auto;
+
font-family: calibri;
+
/* change border background of selected tabs */
font-size: 60px;
+
#p-cactions li.selected { border-color: #aaaaaa; }
color: #de0000;
+
font-weight:bold;
+
/* tab bottom not removed on hover */
border-width: 2px;
+
#p-cactions li a:hover { z-index: 0; text-decoration: none; }
border-color: #000066;
+
#p-cactions li.selected a:hover { z-index: 3; }
border-style: solid;
+
}
+
/* style the search box and the buttons below it */
 
+
input.searchButton {
#space{
+
    background-color: #efefef !important;
background: transparent;
+
    border: 1px outset !important;
height: 1px;
 
width: 986px;
 
margin-left: auto;
 
margin-right: auto;
 
}
 
 
 
#tmenu1{
 
background: #3366CC;
 
height: 24px; /*Height of top section*/;
 
width: 986px;
 
margin-left: auto;
 
margin-right: auto;
 
margin-bottom: 2px;
 
border-width: 2px;
 
border-color: #336600;
 
border-style: solid;
 
-moz-border-radius: 5px;
 
-webkit-border-radius: 5px;
 
}
 
 
 
#main{
 
background: #transparent;
 
height: 580px;
 
width: 986px;
 
margin-right: auto;
 
margin-left: auto;
 
margin-bottom: 5px;
 
}
 
 
 
#lmenu{
 
float: left;
 
background: #fdfdfd;
 
height: 580px; /*Height of top section*/;
 
width: 178px;
 
margin-right: 3px;
 
padding-left: 1px;
 
border-width: 2px;
 
border-style: solid;
 
 
 
}
 
 
 
#content{
 
background: white;
 
height: 580px; /*Height of top section*/;
 
width: 796px; /*Width of main container*/;
 
float: right;
 
border-width: 2px;
 
border-style: solid;
 
}
 
 
 
 
 
#ticker{
 
background: #fccc2e;
 
height: 24px; /*Height of top section*/
 
width: 980px; /*Width of main container*/
 
margin-left: auto;
 
margin-right: auto;
 
margin-top: 3px;
 
margin-bottom: 2px;
 
border-color: #2B4C9A;
 
border-width: 2px;
 
border-style: solid;
 
}
 
 
 
#link{
 
background: #transparent;
 
height: 50px; /*Height of top section*/
 
width: 980px; /*Width of main container*/
 
margin-left: auto;
 
margin-right: auto;
 
border-color: #2B4C9A;
 
border-width: 2px;
 
border-style: solid;
 
margin-bottom: 3px;
 
}
 
 
 
#footer{
 
background: #333333;
 
height: 20px; /*Height of top section*/
 
width: 986px;; /*Width of main container*/
 
margin-left: auto;
 
margin-right: auto;
 
}
 
 
 
#bottom{
 
background: #333333;
 
height: 5px; /*Height of top section*/
 
width: 1000px; /*Width of main container*/
 
margin-left: auto;
 
margin-right: auto;
 
 
}
 
}
 +
#searchInput { border: 1px inset !important; }
 +
 +
/* standard link colors */
 +
:link { color: #0000FF; }
 +
:link:visited { color: #7F007F; }
 +
:link:active, :link.new { color: #FF0000; }
 +
:link.interwiki, :link.external { color: #3366BB; }
 +
:link.stub { color: #772233; }
 +
 +
/* put scrollbar on pre sections instead of ugly cutoff/overlap in firefox */
 +
pre { overflow: auto; }
 +
 +
/* strikeout Upload File link as a reminder to upload to Commons instead */
 +
li#t-upload { text-decoration: line-through; }

Revision as of 06:29, 14 February 2010

/* make the background behind the content area and the tabs a light grey */
#content, #content table
#p-cactions ul li a { background: #f5f5f5; }
 
/* stop background image from scrolling with content area */
body { background-attachment: fixed; }
 
/* replace the book in the background with something else */
body { background: Purple; }
 
/* changes the background of pre areas  */
pre { background: White }
 
/* change the logo */
#p-logo a { background: url(http://en.wikipedia.org/upload/wiki.png) 35% 50% no-repeat !important; }
 
/* don't use any logo, move the boxes onto that area instead */
#p-logo { display: none }
#column-one { padding-top: 0; }
 
/* suppress the person icon by your username */
li#pt-userpage { background: none }
 
/* use browser prefs for text size and font */
body, #globalWrapper { font: inherit !important; }
 
/* always underline links */
:link { text-decoration: underline; }
 
/*Display body content in a narrower column for easier reading*/
/*adjust percentages as desired*/
div#bodyContent {
  width: 50%;
  line-height: 105%;
}
 
/* change background of unselected tabs */
#p-cactions ul li a { background: #C7FDC7; }
 
/* change background of selected tabs */
#p-cactions ul li.selected a { background: white; }
 
/* change border background of selected tabs */
#p-cactions li.selected { border-color: #aaaaaa; }
 
/* tab bottom not removed on hover */
#p-cactions li a:hover { z-index: 0; text-decoration: none; }
#p-cactions li.selected a:hover { z-index: 3; }
 
/* style the search box and the buttons below it */
input.searchButton {
    background-color: #efefef !important;
    border: 1px outset !important;  
}
#searchInput { border: 1px inset !important; }
 
/* standard link colors */
:link { color: #0000FF; }
:link:visited { color: #7F007F; }
:link:active, :link.new { color: #FF0000; }
:link.interwiki, :link.external { color: #3366BB; }
:link.stub { color: #772233; }
 
/* put scrollbar on pre sections instead of ugly cutoff/overlap in firefox */
pre { overflow: auto; }
 
/* strikeout Upload File link as a reminder to upload to Commons instead */
li#t-upload { text-decoration: line-through; }