MediaWiki:Common.css: Difference between revisions

From Phidgets Support
No edit summary
No edit summary
Line 1: Line 1:
body.page-Main_Page_Mockup h1.firstHeading { display:none; }
 
/////////////////////////////////////////////////////////////////////////////////////////////////////////
// Makes the level 4 header italic so it looks different from level 3.


h4{
h4{
Line 5: Line 7:
}
}


/* When <div class="nonumtoc"> is used on the table of contents,
/////////////////////////////////////////////////////////////////////////////////////////////////////////
  the ToC will display without numbers */
 
/////////////////////////////////////////////////////////////////////////////////////////////////////////
// The following code enables numberless tables of contents.
// When <div class="nonumtoc"> is used on the table of contents, the ToC will display without numbers.
 
.nonumtoc .tocnumber { display: none; }
.nonumtoc .tocnumber { display: none; }
.nonumtoc #toc ul,
.nonumtoc #toc ul,
Line 19: Line 25:
     margin: 0 0 0 2em;  
     margin: 0 0 0 2em;  
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////

Revision as of 20:23, 21 December 2011

/////////////////////////////////////////////////////////////////////////////////////////////////////////
// Makes the level 4 header italic so it looks different from level 3.

h4{
font-style: italic;
}

/////////////////////////////////////////////////////////////////////////////////////////////////////////

/////////////////////////////////////////////////////////////////////////////////////////////////////////
// The following code enables numberless tables of contents.
// When <div class="nonumtoc"> is used on the table of contents, the ToC will display without numbers.

.nonumtoc .tocnumber { display: none; }
.nonumtoc #toc ul,
.nonumtoc .toc ul {
    line-height: 1.5em;
    list-style: none;
    margin: .3em 0 0;
    padding: 0;
}
.nonumtoc #toc ul ul, 
.nonumtoc .toc ul ul { 
    margin: 0 0 0 2em; 
}

//////////////////////////////////////////////////////////////////////////////////////////////////////////