To get updates on new site content, like us on Facebook or follow us on Twitter.

Difference between revisions of "MediaWiki:Common.css"

From JFA Wiki
Line 8: Line 8:
  
 
/* TOP................................ */
 
/* TOP................................ */
 +
 +
/* put a logo top left */
 +
body {
 +
background-image: url(images/jfa-logo-long.png);
 +
background-size: 300px;
 +
background-repeat: no-repeat;
 +
}
  
 
/* set the top background color */
 
/* set the top background color */
Line 48: Line 55:
  
 
/* SIDEBAR............................ */
 
/* SIDEBAR............................ */
 +
 +
/* hide the sidebar logo */
 +
#p-logo a {
 +
display:none;
 +
}
  
 
/* set the sidebar backgroundcolor */
 
/* set the sidebar backgroundcolor */

Revision as of 01:52, 31 January 2019

/* CSS placed here will be applied to all skins */

/* magnify most everything */ body { font-size: 130%; color: red; }

/* TOP................................ */

/* put a logo top left */ body { background-image: url(images/jfa-logo-long.png); background-size: 300px; background-repeat: no-repeat; }

/* set the top background color */

#mw-head, #left-navigation, #right-navigation {

background-color: #f4f0f0; }

/* put a border on the bottom of the header */

  1. mw-head {

border-bottom: 2px solid red; }

/* resize the very top right personal menu */

  1. p-personal {

font-size: .9em; }

/* size and reposition top tabs */ .vectorTabs, .vectorMenu { font-size: .8em; margin-top: 1em; }

/* size and reposition the search box */

  1. simpleSearch {

font-size: .8em; margin-top: 1.6em; }

/* take the ancient gradients off some of the top tabs */ .vectorTabs li.selected, .vectorTabs ul li, .vectorTabs span, .vectorTabs ul, .vectorTabs,

  1. mw-head .vectorMenu h3

{ background-image: none; }

/* SIDEBAR............................ */

/* hide the sidebar logo */

  1. p-logo a {

display:none; }

/* set the sidebar backgroundcolor */ body { background-color: #efeade; }

/* why did the theme hide the top header "sections"? */

  1. mw-panel #p-logo + .portal h3 {

display: block; }