User:Pisceesumsprecan/monobook.css: Difference between revisions
From FrathWiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 201: | Line 201: | ||
/* Space below is for testing */ | /* Space below is for testing */ | ||
/* Fix the sidebar's position while you scroll */ | |||
div[id=column-one] { /* Using the attribute selector hides this from IE */ | |||
position: fixed; | |||
height: 100%; /* If you shrink the browser too small, the side column will */ | |||
overflow: auto; /* become scrollable, so stuff is always accessible, albeit ugly */ | |||
z-index: 2; | |||
} | |||
#p-lang .pBody ul{ /* Sets the language box to a fixed height and scrollable if too long to fit */ | |||
height: 10em; | |||
overflow: auto; | |||
} | |||
body { /* Fix the background image, too, so it looks nice as you scroll */ | |||
background-attachment: fixed; | |||
} | |||
#footer { /* Fix the footer so it looks nice and doesn't overlap the sidebar */ | |||
margin-left: 13.6em; | |||
border-left: solid 1px rgb(250, 189, 35); | |||
/* Uncomment this if you use rounded edges: */ | |||
/* | |||
-moz-border-radius-topleft: 1em; | |||
-moz-border-radius-bottomleft: 1em; | |||
*/ | |||
} | |||
/* Don't use any logo, move the boxes onto that area instead */ | |||
#p-logo { | |||
display: none; | |||
} | |||
#column-one { | |||
padding-top: 0; | |||
} |
Revision as of 22:30, 21 September 2008
/* If you copy this, please include the following line: */ /* Stolen from [[User:Animum/monobook.css]] */ /* Thank you. */ /* Orange "You have new messages" changed to use that nice icon of a rotary phone and complimenting colors */ .usermessage { background-color: transparent; background: url('http://upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Exquisite-Modem_cropped.png/32px-Exquisite-Modem_cropped.png') no-repeat left; color: #444444; border: none; font-weight: bold; margin: 2em 0em 1em 0em; padding-left: 3.5em; vertical-align: middle; } .usermessage a { color:#444444; } /* "From Wikipedia, the free encyclopedia" modification */ #siteSub { font-family:Trebuchet MS; font-size: 95%; } /* Text alignment */ body.mediawiki { text-align: left; } /* Tab rounding */ #p-cactions ul { overflow:visible; } #p-cactions li { border: 2px solid lightgrey; position: relative; float: left; -moz-border-radius-topleft: .5em; -moz-border-radius-topright: .5em; } /* Get rid of the border in the page title */ .firstHeading { border-bottom:none; } hr#hrTitleModification { width:0%; } /* Replace dotted borders on pre with a solid one. */ #bodyContent pre { border: 1px solid #aaa; } /* Miscellaneous Corner-rounding */ div.pBody { -moz-border-radius-topright:0.5em; -moz-border-radius-bottomright:0.5em; } #content { -moz-border-radius-topleft: 0.75em; -moz-border-radius-bottomleft: 0.75em; border:1px solid #AAAAAA; } #footer { -moz-border-radius: 6px; border:1px solid #fabd23; } /* Link customization */ #bodyContent a:active { font-weight: normal; } #bodyContent a.interwiki, a.external { color: #002bb8; background:none; }} #bodyContent a.text { background: display; } /* Some editing screen modifications */ #editpage-copywarn3, #editpage-copywarn2, #editpage-copywarn { display: none; } input#wpSummary { width: 50%; margin-top: 12px; } .editHelp { margin-top:1.25em; margin-bottom:6px; } #wpSave, #wpPreview { margin-right:1px; } #previewnote { text-decoration: blink; } #toolbar { display: none; } #protectedpagewarning { -moz-border-radius:.5em; margin: 0 0 1em; padding: .6em .6em; vertical-align: middle; border: solid #aaaaaa 1px; font-size:91%; background-color:#ffffff; color:#000000; } #longpagewarning { display:none } /* Get RID of that annoying fund raiser advert */ #siteNotice { display:none } /* Admin tools link fixer */ #adminbarlinks a:visited { color:#002BB8 } /* Patrolled pages fixer */ .patrollink { display:none } li.not-patrolled { background-color:transparent } /* THIS LAST BIT IS STOLEN FROM AZATOTH'S MONOBOOK.CSS */ /* Nice borders for (almost) all boxes */ input[type="radio"], input[type="checkbox"] { border:none; } input[type="submit"] { border: 1px solid #aaa !important; background-color: #f9f9f9 !important; } /* make round corners for the rest */ input[type="submit"] { -moz-border-radius-topleft: 2px !important; -moz-border-radius-topright: 2px !important; -moz-border-radius-bottomleft: 2px; -moz-border-radius-bottomright: 2px; } input[type="submit"] {color: #aaa !important;} input[type="submit"]:hover, input[type="submit"]:focus {background-color: #fff !important; color: #000 !important; cursor: pointer !important;} /* For use with my monobook */ .ns-0 * .tabmenu ul li { background: white !important; } /* Prettify the headers of the quickbar (left-hand column of boxes) */ #p-navigation h5, #p-interaction h5, #p-search h5, #p-tb h5, #p-navclone h5, #p-lang h5 { display: inline; height: 1em; font-size: 85%; font-weight: normal; white-space: nowrap; border-color:#aaa; border-width:1px; border-style: solid solid none solid; padding: 0 1em 1px 1em; text-transform: lowercase; background: white; -moz-border-radius-topright:1em } #p-navigation, #p-interaction, #p-search, #p-tb, #p-navclone, #p-lang { padding-top: 2px; } /* Diff screen changes */ del.diffchange.diffchange-inline, ins.diffchange.diffchange-inline { border:none; } /* Works in conjunction with my monobook.js */ li#ca-userrights, li#ca-stats6, li#ca-rts { display:none; } /* Space below is for testing */ /* Fix the sidebar's position while you scroll */ div[id=column-one] { /* Using the attribute selector hides this from IE */ position: fixed; height: 100%; /* If you shrink the browser too small, the side column will */ overflow: auto; /* become scrollable, so stuff is always accessible, albeit ugly */ z-index: 2; } #p-lang .pBody ul{ /* Sets the language box to a fixed height and scrollable if too long to fit */ height: 10em; overflow: auto; } body { /* Fix the background image, too, so it looks nice as you scroll */ background-attachment: fixed; } #footer { /* Fix the footer so it looks nice and doesn't overlap the sidebar */ margin-left: 13.6em; border-left: solid 1px rgb(250, 189, 35); /* Uncomment this if you use rounded edges: */ /* -moz-border-radius-topleft: 1em; -moz-border-radius-bottomleft: 1em; */ } /* Don't use any logo, move the boxes onto that area instead */ #p-logo { display: none; } #column-one { padding-top: 0; }