Minecraft Wiki
No edit summary
(Fixed page base. Unfortunately, the design of the vectortabs makes it pretty impossible to use CSS3 gradients, maybe the next mediawiki version will be better.)
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
  +
/** General Vector skin improvements **/
  +
/* Replacing extremely unnecessary images with CSS (this also makes the wiki look nicer when you have images disabled) */
  +
body {
  +
background-color: #F6F6F6;
  +
background-image: none
  +
}
  +
  +
#footer, #content, #mw-head-base {
  +
background-image: none
  +
}
  +
  +
#content, #mw-head-base {
  +
border-bottom: 1px solid #A7D7F9
  +
}
  +
#content {
  +
border-left: 1px solid #A7D7F9
  +
}
  +
  +
#left-navigation {
  +
top: 2.56em
  +
}
  +
#right-navigation {
  +
margin-top: 2.56em
  +
}
  +
  +
/* Tab improvements for people with images disabled */
  +
div.vectorTabs li.selected {
  +
background-color: white
  +
}
  +
div.vectorTabs ul li {
  +
background-color: #EAF2F8
  +
}
  +
  +
/* CSS3 overrides for browsers that aren't terrible */
  +
#simpleSearch {
  +
background-image: -moz-linear-gradient(top, rgb(246,246,246) 0%, rgb(255,255,255) 70%) !important;
  +
background-image: -webkit-linear-gradient(top, rgb(246,246,246) 0%,rgb(255,255,255) 70%) !important;
  +
background-image: -o-linear-gradient(top, rgb(246,246,246) 0%,rgb(255,255,255) 70%) !important;
  +
background-image: -ms-linear-gradient(top, rgb(246,246,246) 0%,rgb(255,255,255) 70%) !important;
  +
background-image: linear-gradient(top, rgb(246,246,246) 0%,rgb(255,255,255) 70%) !important;
  +
}
  +
  +
#mw-page-base {
  +
background-image: -moz-linear-gradient(top, rgb(255,255,255) 50%, rgb(246,246,246) 100%) !important;
  +
background-image: -webkit-linear-gradient(top, rgb(255,255,255) 50%,rgb(246,246,246) 100%) !important;
  +
background-image: -o-linear-gradient(top, rgb(255,255,255) 50%,rgb(246,246,246) 100%) !important;
  +
background-image: -ms-linear-gradient(top, rgb(255,255,255) 50%,rgb(246,246,246) 100%) !important;
  +
background-image: linear-gradient(top, rgb(255,255,255) 50%,rgb(246,246,246) 100%) !important;
  +
}
  +
  +
/** Personal Vector skin improvements **/
 
/* Make the "changed since your last visit" on page history have a cyan background and darker cyan outline (basically a cyan version of the "You have new messages" box) */
 
/* Make the "changed since your last visit" on page history have a cyan background and darker cyan outline (basically a cyan version of the "You have new messages" box) */
 
.updatedmarker {
 
.updatedmarker {
Line 48: Line 99:
 
}
 
}
   
  +
/* Fixing the [http://en.wikipedia.org/w/index.php?title=User:Svick/DropDownToTabs.js Drop-Down Vector Tabs] */
  +
div.vectorTabs li span a {
  +
font-size: 0.8em;
  +
padding-top: 0.6em;
  +
line-height: 34px
  +
}
  +
  +
#p-cactions {
  +
margin-left: -1px
  +
}
  +
  +
/** Curse fixes **/
 
/* Hiding Curse footer */
 
/* Hiding Curse footer */
 
#ft {
 
#ft {
Line 77: Line 140:
 
}
 
}
   
/* [[User:Ultradude25/The Workbench|The Workbench]] */
+
/** [[User:Ultradude25/The Workbench|The Workbench]] styling **/

Revision as of 04:11, 4 September 2011

/** General Vector skin improvements **/
/* Replacing extremely unnecessary images with CSS (this also makes the wiki look nicer when you have images disabled) */
body {
    background-color: #F6F6F6;
    background-image: none
}

#footer, #content, #mw-head-base {
    background-image: none
}

#content, #mw-head-base {
    border-bottom: 1px solid #A7D7F9
}
#content {
    border-left: 1px solid #A7D7F9
}

#left-navigation {
    top: 2.56em
}
#right-navigation {
    margin-top: 2.56em
}

/* Tab improvements for people with images disabled */
div.vectorTabs li.selected {
    background-color: white
}
div.vectorTabs ul li {
    background-color: #EAF2F8
}

/* CSS3 overrides for browsers that aren't terrible */
#simpleSearch {
   background-image: -moz-linear-gradient(top, rgb(246,246,246) 0%, rgb(255,255,255) 70%) !important;
   background-image: -webkit-linear-gradient(top, rgb(246,246,246) 0%,rgb(255,255,255) 70%) !important;
   background-image: -o-linear-gradient(top, rgb(246,246,246) 0%,rgb(255,255,255) 70%) !important;
   background-image: -ms-linear-gradient(top, rgb(246,246,246) 0%,rgb(255,255,255) 70%) !important;
   background-image: linear-gradient(top, rgb(246,246,246) 0%,rgb(255,255,255) 70%) !important;
}

#mw-page-base {
   background-image: -moz-linear-gradient(top, rgb(255,255,255) 50%, rgb(246,246,246) 100%) !important;
   background-image: -webkit-linear-gradient(top, rgb(255,255,255) 50%,rgb(246,246,246) 100%) !important;
   background-image: -o-linear-gradient(top, rgb(255,255,255) 50%,rgb(246,246,246) 100%) !important;
   background-image: -ms-linear-gradient(top, rgb(255,255,255) 50%,rgb(246,246,246) 100%) !important;
   background-image: linear-gradient(top, rgb(255,255,255) 50%,rgb(246,246,246) 100%) !important;
}

/** Personal Vector skin improvements **/
/* Make the "changed since your last visit" on page history have a cyan background and darker cyan outline (basically a cyan version of the "You have new messages" box) */
.updatedmarker {
    background: #00FFFF;
    outline: 1px solid #00BEFF;
    padding: 1px
}

/* Make the search box bigger */
#simpleSearch input#searchInput {
    width: 20em
}

/* Make redirect links green */
.mw-redirect,
.mw-redirect:link,
.mw-redirect:visited {
    color: #008000
}

/* Stop redirect links in comments and user links (the (Talk | Contribs) area in logs and page histories) from being green */
.comment .mw-redirect,
.mw-usertoollinks .mw-redirect,
.comment .mw-redirect:link,
.mw-usertoollinks .mw-redirect:link {
    color: #0645AD !important
}
.comment .mw-redirect:visited,
.mw-usertoollinks .mw-redirect:visited {
    color: #0B0080 !important
}
.comment .mw-redirect:active,
.mw-usertoollinks .mw-redirect:active {
    color: #FAA700 !important
}

/* Make delete/protect reason field and edit summary field take up the whole screen width */
input#wpSummary, #mw-deleteconfirm-table, input#wpReason, #mw-protect-table3, input#mwProtect-reason {
    width: 100%
}

#mw-deleteconfirm-table .mw-label, #mw-protect-table3 .mw-label {
    width: 138px
}

/* Make toolbox permanently open */
#p-tb div.body {
    display: block !important
}

/* Fixing the [http://en.wikipedia.org/w/index.php?title=User:Svick/DropDownToTabs.js Drop-Down Vector Tabs] */
div.vectorTabs li span a {
    font-size: 0.8em;
    padding-top: 0.6em;
    line-height: 34px
}

#p-cactions {
    margin-left: -1px
}

/** Curse fixes **/
/* Hiding Curse footer */
#ft {
    display: none
}

/* Hiding Main Page title */
body.page-Minecraft_Wiki h1.firstHeading {
    display:none
}

/* Fixing odd spacing */
body.page-Minecraft_Wiki #contentSub {
    margin: 0
}

body.page-Minecraft_Wiki .usermessage {
    margin: 0 0 1em
}

/* Removing massive Curse sidebar */
#curse-panel {
    display: none
}

#bodyContent2.en {
    margin-right: 0;
    min-height: 0
}

/** [[User:Ultradude25/The Workbench|The Workbench]] styling **/