Jump to content

User:Wierdox/vector.css

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Wierdox (talk | contribs) at 18:08, 18 September 2012. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
#p-logo { display: none }
/* Fix sidebar */
div#mw-panel {
  overflow: none;
  top: 0px;
  bottom: 0px;
  height: 100%;
  width: 160px;
  left: 0px;
  /* Prevent content overlay when sidewards scrolling */
background: url(http://upload.wikimedia.org/wikipedia/en/1/1d/Malignus_logo.png) no-repeat !important;
  background-color: #000000;
  border-right: 1px solid #007f00;
}
/* Prevent sidewards scrolling in pre elements */
pre {
  overflow: auto;
  max-height: 25em;
}

/* standard link colors */
a:link { color: #7F0000 !important; }
a:visited { color: #FF0000 !important; }
a.new:link { color: #0000cc !important; }
a.new:visited { color: #0000ee !important; }
a.extiw:link { color: #EEEE00 !important; } /* links to other Wikipedias */
a.extiw:visited { color: #FFFF00 !important; }
a.external:link { color: #00FFFF !important; } /* external links */
a.external:visited { color: #007F7F !important; }

/******************************************************************/
/* moving catlinks                                                */
/******************************************************************/

/* move the catlinks box */
#catlinks {
  position: relative;
  z-index:1;
  border: 1px solid #00FFFF;
  background: #101010; 
  right:0em;
  top:-0.25em;
  width:10.5em;
  float: right;
  margin: 0.2em;
  padding:0.2em;
}

/* format the catlinks itself */
p.catlinks {
  color: #7F7F00;
  font-family: Verdana,sans-serif;
  font-size:67%;
  line-height: 1.5em;
  text-align:left;
  text-indent:0;
  text-transform: none;
  white-space:normal;
  margin: 0.2em;
}

#p-personal h5 {
    display: inline;
}

/* format links in the catlinks (as distinguished from ":" and "|") */
p.catlinks a {
  color:#007F7F;
}








/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */
#p-cactions ul li, #p-cactions ul li a {
  border-left: 160px;
  -moz-border-radius-topleft: 2em;
  -moz-border-radius-topright: 2em;
}
#content {
  border-left: 160px;
  -moz-border-radius-topleft: 2em;
  -moz-border-radius-bottomleft: 2em;
}
div.pBody {
  -moz-border-radius-topright: 2em;
  -moz-border-radius-bottomright: 2em;
}

/* same following the css3 draft specs, any browsers supporting this? */
#p-cactions ul li, #p-cactions ul li a {
  border-left: 160px;
  border-top-left-radius: 2em;
  border-top-right-radius: 2em;
}
#content {
  border-left: 160px;
  border-top-left-radius: 2em;
  border-bottom-left-radius: 2em;
}
div.pBody {
  border-top-right-radius: 2em;
  border-bottom-right-radius: 2em;
}