MediaWiki:Vector.css

From S E B A S T I E N G O Y

(Difference between revisions)
Jump to: navigation, search
m
m
 
(36 intermediate revisions not shown)
Line 1: Line 1:
/* CSS placed here will affect users of the Vector skin */
/* CSS placed here will affect users of the Vector skin */
 +
 +
/* Font */
 +
* {
 +
  font-family: "Courier New", "Courier";
 +
  /*font-family: "Georgia";*/
 +
  /*font-family: "Palatino Linotype", "Book Antiqua3", "Palatino";*/
 +
  /*text-align: justify;*/
 +
}
 +
 +
a:link {
 +
color: #FF4500;
 +
}
 +
a:visited {
 +
color: #1E90FF;
 +
}
 +
a:link:visited {
 +
color: #1E90FF;
 +
}
 +
a.mw-redirect {
 +
color: #FF4500;
 +
}
 +
a.mw-redirect:visited {
 +
color: #1E90FF;
 +
}
 +
#bodyContent a.external {
 +
        color: #FF4500;
 +
}
/* Change sidebar height, from 160px */
/* Change sidebar height, from 160px */
div#mw-panel {
div#mw-panel {
position: absolute;
position: absolute;
-
top: 1.9em;
+
top: 0em;
padding-top: 1em;
padding-top: 1em;
width: 10em;
width: 10em;
Line 10: Line 37:
}
}
 +
/* Hide Main Page title */
 +
body.page-Main_Page h1.firstHeading {
 +
display: none;
 +
}
 +
 +
 +
/*                    */
/* Change anchor color */
/* Change anchor color */
 +
/*                    */
 +
 +
/* Tabs*/
 +
div.vectorTabs li a,
 +
div.vectorTabs li a span,
 +
div.vectorTabs li a:visited,
 +
div.vectorTabs li a:visited span {
 +
color: #525252;
 +
font-style:italic;
 +
}
 +
div.vectorTabs li.selected a,
div.vectorTabs li.selected a,
-
div.vectorTabs li.selected a span,
+
div.vectorTabs li.selected a span,
-
div.vectorTabs li.selected a:visited
+
div.vectorTabs li.selected a:visited
-
div.vectorTabs li.selected a:visited span {
+
div.vectorTabs li.selected a:visited span {
-
color: #333333;
+
color: #333333;
-
text-decoration: none;
+
text-decoration: none;
-
}
+
font-style:italic;
-
div.vectorTabs li.new a,
+
}
-
div.vectorTabs li.new a span,
+
-
div.vectorTabs li.new a:visited,
+
-
div.vectorTabs li.new a:visited span {
+
-
color: #525252;
+
-
}
+
 +
div.vectorTabs li.new a,
 +
div.vectorTabs li.new a span,
 +
div.vectorTabs li.new a:visited,
 +
div.vectorTabs li.new a:visited span {
 +
color: #525252;
 +
font-style:italic;
 +
}
 +
 +
/* Menu */
div.vectorMenu li a {
div.vectorMenu li a {
-
color: #525252;
+
color: #525252;
-
cursor: pointer;
+
cursor: pointer;
-
font-size: 0.8em;
+
font-size: 0.8em;
-
}
+
}
-
div.vectorMenu li.selected a,
+
-
div.vectorMenu li.selected a:visited {
+
-
color: #333333;
+
-
text-decoration: none;
+
-
}
+
-
div#mw-panel div.portal div.body ul li a {
+
div.vectorMenu li.selected a,
-
color: #525252;
+
div.vectorMenu li.selected a:visited {
-
                font-style:italic;
+
color: #333333;
-
}
+
text-decoration: none;
-
div#mw-panel div.portal div.body ul li a:visited {
+
}
-
color: #111111;
+
-
                font-style:italic;
+
-
}
+
-
div#mw-panel div.portal h5 {
+
/* Panel, i.e. SideBar */
-
font-weight: normal;
+
-
color: #111111;
+
-
padding: 0.25em;
+
-
padding-top: 0;
+
-
padding-left: 1.75em;
+
-
cursor: default;
+
-
border: none;
+
-
font-size: 1em;
+
-
}
+
-
/* Hide Main Page title */
+
div#mw-panel div.portal div.body ul li a {
-
body.page-Main_Page h1.firstHeading {
+
color: #FF4500;
-
display: none;
+
        background-color: white;
 +
/*font-style:italic;*/
 +
padding-left: 2em;
 +
        text-align: justify;
}
}
-
/* Hide "Powered by MediaWiki" logo */
+
div#mw-panel div.portal div.body ul li a:visited {
-
#footer-icon-poweredby { display: none; }
+
color: #1E90FF;
 +
        background-color: white;
 +
/*font-style:italic;*/
 +
padding-left: 2em;
 +
        text-align: justify;
 +
}
 +
 
 +
div#mw-panel div.portal h5 {
 +
font-weight: normal;
 +
color: #FF4500;
 +
        background-color: white;
 +
padding: 0.25em;
 +
padding-top: 0;
 +
padding-left: 1.75em;
 +
cursor: default;
 +
border: none;
 +
font-size: 0.75em;
 +
        text-align: justify;
 +
}

Latest revision as of 10:46, 17 February 2011

/* CSS placed here will affect users of the Vector skin */

/* Font */
* {
  font-family: "Courier New", "Courier";
  /*font-family: "Georgia";*/
  /*font-family: "Palatino Linotype", "Book Antiqua3", "Palatino";*/
  /*text-align: justify;*/
} 

a:link {
	color: #FF4500;
}
a:visited {
	color: #1E90FF;
}
a:link:visited {
	color: #1E90FF;
}
a.mw-redirect {
	color: #FF4500;
}
a.mw-redirect:visited {
	color: #1E90FF;
}
#bodyContent a.external {
        color: #FF4500;
}

/* Change sidebar height, from 160px */
div#mw-panel {
	position: absolute;
	top: 0em;
	padding-top: 1em;
	width: 10em;
	left: -0.5em;
}

/* Hide Main Page title */
body.page-Main_Page h1.firstHeading {
	display: none;
}


/*                     */
/* Change anchor color */
/*                     */

/* Tabs*/
div.vectorTabs li a,
div.vectorTabs li a span,
div.vectorTabs li a:visited,
div.vectorTabs li a:visited span {
	color: #525252;
	font-style:italic;
}

div.vectorTabs li.selected a,
div.vectorTabs li.selected a span,
div.vectorTabs li.selected a:visited
div.vectorTabs li.selected a:visited span {
	color: #333333;
	text-decoration: none;
	font-style:italic;
}

div.vectorTabs li.new a,
div.vectorTabs li.new a span,
div.vectorTabs li.new a:visited,
div.vectorTabs li.new a:visited span {
	color: #525252;
	font-style:italic;
}

/* Menu */
div.vectorMenu li a {
	color: #525252;
	cursor: pointer;
	font-size: 0.8em;
}

div.vectorMenu li.selected a,
div.vectorMenu li.selected a:visited {
	color: #333333;
	text-decoration: none;
}

/* Panel, i.e. SideBar */

div#mw-panel div.portal div.body ul li a {
	color: #FF4500;
        background-color: white;
	/*font-style:italic;*/
	padding-left: 2em;
        text-align: justify;
}

div#mw-panel div.portal div.body ul li a:visited {
	color: #1E90FF;
        background-color: white;
	/*font-style:italic;*/
	padding-left: 2em;
        text-align: justify;
}

div#mw-panel div.portal h5 {
	font-weight: normal;
	color: #FF4500;
        background-color: white;
	padding: 0.25em;
	padding-top: 0;
	padding-left: 1.75em;
	cursor: default;
	border: none;
	font-size: 0.75em;
        text-align: justify;
}
Personal tools
Namespaces
Variants
Actions
S E B A S T I E N  G O Y                                                   
Works
About