Difference between revisions of "MediaWiki:Common.css"

From CCS Cataloging Manual
Jump to navigation Jump to search
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


div#UnionList p {
div#UnionList p {
Line 10: Line 9:
padding-top : 0.5em;
padding-top : 0.5em;
padding-bottom : 0.5em;
padding-bottom : 0.5em;
}
/* Two column list */
ul.TwoColumns {
overflow : hidden;
width : 65%;
}
li.TwoColumns {
display : inline;
float : left;
text-align : left;
width : 50%;
}
}


/* genre headings */
/* genre headings */
.Level2 div { text-indent: 2em; }
.Level2 div { margin-left: 2em; }
.Level3 div { text-indent: 4em; }
.Level3 div { margin-left: 4em; }
.Level4 div { text-indent: 6em; }
.Level4 div { margin-left: 6em; }
.Level5 div { text-indent: 8em; }
.Level5 div { margin-left: 8em; }
.Level6 div { text-indent: 10em; }
.Level6 div { margin-left: 10em; }


@media print
@media print

Revision as of 15:54, 3 December 2015

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

div#UnionList p {
white-space : pre;
background-color : #cccccc;
font-family : monospace;
margin-bottom : 1em;
margin-top : 0;
padding-top : 0.5em;
padding-bottom : 0.5em;
}

/* genre headings */
.Level2 div { margin-left: 2em; }
.Level3 div { margin-left: 4em; }
.Level4 div { margin-left: 6em; }
.Level5 div { margin-left: 8em; }
.Level6 div { margin-left: 10em; }

@media print
{
    .NoPrint
    {
        display: none;
    }
}