User:Segjin/monobook.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 16: | Line 16: | ||
pre { background: white } | pre { background: white } | ||
/* | |||
/* change the logo */ | /* change the logo */ | ||
#p-logo a { background: url(http://www.addictmud.org/images/main_castle.gif) 35% 50% no-repeat !important; } | #p-logo a { background: url(http://www.addictmud.org/images/main_castle.gif) 35% 50% no-repeat !important; } | ||
/* don't use any logo, move the boxes onto that area instead */ | /* don't use any logo, move the boxes onto that area instead */ | ||
#p-logo { display: none } | #p-logo { display: none } | ||
#column-one { padding-top: 0; } | #column-one { padding-top: 0; } | ||
| Line 32: | Line 32: | ||
/* always underline links */ | /* always underline links */ | ||
:link { text-decoration: | :link { | ||
text-decoration: none; | |||
} | |||
/*Display body content in a narrower column for easier reading*/ | /*Display body content in a narrower column for easier reading*/ | ||
/*adjust percentages as desired*/ | /*adjust percentages as desired*/ | ||
div#bodyContent { | div#bodyContent { | ||
width: 100%; | |||
line-height: 105%; | |||
} | } | ||
/* change background of unselected tabs */ | /* change background of unselected tabs */ | ||
#p-cactions ul li a { background: #C7FDC7; } | #p-cactions ul li a { | ||
background: #C7FDC7; | |||
} | |||
/* change background of selected tabs */ | /* change background of selected tabs */ | ||
#p-cactions ul li.selected a { background: white; } | #p-cactions ul li.selected a { | ||
background: white; | |||
} | |||
/* change border background of selected tabs */ | /* change border background of selected tabs */ | ||
#p-cactions li.selected { border-color: #aaaaaa; } | #p-cactions li.selected { | ||
border-color: #aaaaaa; | |||
} | |||
/* tab bottom not removed on hover */ | /* tab bottom not removed on hover */ | ||
#p-cactions li a:hover { z-index: 0; text-decoration: none; } | #p-cactions li a:hover { | ||
#p-cactions li.selected a:hover { z-index: 3; } | z-index: 0; text-decoration: none; | ||
} | |||
#p-cactions li.selected a:hover { | |||
z-index: 3; | |||
} | |||
/* style the search box and the buttons below it */ | /* style the search box and the buttons below it */ | ||
input.searchButton { | input.searchButton { | ||
background-color: #efefef !important; | |||
border: 1px outset !important; | |||
} | |||
#searchInput { | |||
border: 1px inset !important; | |||
} | } | ||
/* standard link colors */ | /* standard link colors */ | ||
:link { color: #0000FF; } | :link { color: #0000FF; } | ||
:link:visited { color: #7F007F; } | :link:visited { color: #7F007F; } | ||
| Line 69: | Line 85: | ||
/* put scrollbar on pre sections instead of ugly cutoff/overlap in firefox */ | /* put scrollbar on pre sections instead of ugly cutoff/overlap in firefox */ | ||
pre { overflow: auto; | pre { | ||
overflow: auto; | |||
} | |||
Revision as of 02:08, 31 October 2005
/* make the background behind the content area and the tabs a light grey */
#content, #content table
#p-cactions ul li a { background: #f5f5f5; }
textarea {
width: 100%;
}
/* stop background image from scrolling with content area */
body { background-attachment: fixed; }
/* replace the book in the background with something else */
body { background: black; }
/* changes the background of pre areas */
pre { background: white }
/*
/* change the logo */
#p-logo a { background: url(http://www.addictmud.org/images/main_castle.gif) 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: none;
}
/*Display body content in a narrower column for easier reading*/
/*adjust percentages as desired*/
div#bodyContent {
width: 100%;
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;
}