MediaWiki:Print.css: Difference between revisions
From OER in Education
No edit summary |
No edit summary |
||
(18 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
body { | body { | ||
font-family: | background: white; | ||
font-family: Arial; | |||
} | } | ||
Line 11: | Line 12: | ||
#siteSub { | #siteSub { | ||
display: none; | display: none; | ||
} | |||
td | |||
{ | |||
padding: 10px !important; | |||
text-align:left; | |||
vertical-align:top; | |||
} | |||
#firstHeading { | |||
margin-left: 0em; | |||
} | |||
#bodyContent { | |||
margin-left: 0em; | |||
} | |||
#firstHeading { | |||
margin-top: 50px; | |||
} | |||
#catlinks { | |||
display: none; | |||
} | |||
#footer-info { | |||
background: white; | |||
color: black; | |||
} | |||
/* Classes that don't display elsewhere, but only in print */ | |||
.print-display-block { | |||
display: block; | |||
} | |||
.print-display-inline { | |||
display: inline; | |||
} | |||
/* A class that doesn't display in print, but displays in anything else */ | |||
.print-display-none { | |||
display: none; | |||
} | } |
Latest revision as of 09:52, 13 February 2015
/* CSS placed here will affect the print output */
body {
background: white;
font-family: Arial;
}
#contentSub {
display: none;
}
#siteSub {
display: none;
}
td
{
padding: 10px !important;
text-align:left;
vertical-align:top;
}
#firstHeading {
margin-left: 0em;
}
#bodyContent {
margin-left: 0em;
}
#firstHeading {
margin-top: 50px;
}
#catlinks {
display: none;
}
#footer-info {
background: white;
color: black;
}
/* Classes that don't display elsewhere, but only in print */
.print-display-block {
display: block;
}
.print-display-inline {
display: inline;
}
/* A class that doesn't display in print, but displays in anything else */
.print-display-none {
display: none;
}