MediaWiki:Vector.css: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
m (increase text-size of items in history pg, but reduce line-height)
Line 7: Line 7:
}
}


/* for view history items - reduce wrapping from Vector centering */
/* for view history items - less wrapping from Vector centering */
ul#pagehistory  {
ul#pagehistory  {
   font-size: .7em;
   font-size: .8em;
}
 
/* line height of items in diff of history pg    */
table.diff  {
  line-height: 1.2;  /* was 1.6  */
}
}



Revision as of 20:55, 11 September 2015

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


/* needed to keep content border top from extending too far left  */
div#mw-head-base { 
   margin-left: 11.5em; /* for Vector centering project  */
}

/* for view history items - less wrapping from Vector centering */
ul#pagehistory  {
   font-size: .8em;
}

/* line height of items in diff of history pg    */
table.diff  {
   line-height: 1.2;   /* was 1.6  */
}

/* needed to keep content border bottom from extending too far left  */
div#footer  {   
   margin-left: 11em;   
}

/* move sidebar items to left */ 
div#mw-panel.collapsible-nav .portal {
   margin-left: 1px;
}

#p-logo  { 
   width: 11em; 
}

/* next 2 to give headings greater distinction -- slightly bolder, slightly larger  */ 

div#mw-panel.collapsible-nav .portal.expanded h3 a {
   font-weight: 600;
}
div#mw-panel.collapsible-nav .portal h3  { 
   font-size: .80em;
}