User:George Orwell III/vector.css

From Wikipedia

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* move Mark all pages visited button a bit right  Might not be possible to make permanent however */
#mw-watchlist-resetbutton {
	display: block;
	position: absolute;
	right: 0;
	top: 2.00em;
}
/* start hide side bar test
#mw-navigation #p-logo-text {
	position: absolute;
	left: 1.00em;
	top: 0.25em;
	width: 8.00em;
	height: 2.25em;
	padding-left: 0.25em;
	z-index: 100;
}
#mw-navigation #p-logo-text a {
	display: inline-block;
	color: #000000;
	font-family: 'Linux Libertine',Georgia,Times,sans-serif;
	font-size: 1.50rem;
	line-height: 1.0;
	font-weight: 400;
	text-align: center;
	vertical-align: top;
}
#mw-navigation #p-logo-text a:hover, #mw-navigation #p-logo-text a:focus {
	color: #000000;
	text-decoration: none;
}
div#mw-panel div.portal:first-child {
    background-image: none;
    margin-top: 0;
}
*/
/**
 * Basically hides side-bar & site-logo until hover
 * Based on 2015-12-01 revision of
 * https://it.wikipedia.org/wiki/MediaWiki:Gadget-AutohidePanel.css
 * 
 */
div#mw-panel {
	visibility: visible;
	position: fixed;
	resize: vertical;
	top: 5.0rem;
	left: -9.5rem;
/*	background-color: #E8E8E8;*/
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 2;
/**
 * this number sets the height of your navigation bar.
 * The higher the number, the higher the navigation bar.
 * Make sure you have "em" to the right of the number.
 * The the original value I set it was 22em.
 */
	height: 36rem;
}
div#mw-panel div {
	overflow: visible;
	resize: none;
}
div#mw-panel:hover, div#mw-panel:focus {
	background-color: #F6F6F6;
	left: 0;
}
div#p-logo {
	position: fixed;
	left: -9.5em;
	top: 0;
/*	background-color: #E8E8E8;*/
	z-index: 1;
}
div#mw-panel:hover div#p-logo {
	background-color: #F6F6F6;
	left: 0;
}
/*
div#mw-head-base {
	margin-left: 10px;
}
div#content {
	position: relative;
	left: 10px;
	margin-left: 0;
}
div#left-navigation {
	left: 50px;
}
div#footer {
	margin-left: 10px;
}
*/
/* @end */