source: main/waeup.plonetheme.ngren3/trunk/waeup/plonetheme/ngren3/skins/plonetheme_bootstrap_custom/print.css @ 10222

Last change on this file since 10222 was 10084, checked in by Henrik Bettermann, 12 years ago

Fill trunk.

File size: 2.6 KB
Line 
1/* Removes certain elements when printing, and apply basic font styles
2   for the remaining content. */
3
4body {
5    font-family: "Helvetica Neue", Arial, FreeSans, sans-serif;
6}
7h1, h2, h3, h4, h5, h6 {
8    font-family: "Helvetica Neue", Arial, FreeSans, sans-serif;
9    font-weight: bold;
10    line-height: 125%;
11    page-break-inside: avoid;
12    page-break-after: avoid;
13}
14h1, h2 {
15    letter-spacing: -0.05em;
16}
17a {
18    text-decoration: none;
19    border-bottom: 0.1em solid gray;
20    color: black;
21}
22#portal-column-content {
23    width: 95%;
24}
25
26.documentDescription {
27    font-weight: bold;
28}
29pre {
30    border: 1pt dotted black;
31    white-space: pre;
32    font-size: 8pt;
33    overflow: auto;
34    padding: 1em;
35}
36table.listing,
37table.listing td {
38    border: 1pt solid black;
39    border-collapse: collapse;
40}
41table.listing td,
42table.listing th {
43    padding: 6px;
44}
45
46/* Page break class for use when printing */
47div.pageBreak {
48    page-break-before: always;
49}
50
51/* Basic styles for listing and document views */
52#content dt {
53    margin:1em 0 0.625em;
54}
55#content p, #content table {
56    margin-bottom:0.625em;
57    margin-top:0.625em;
58}
59#content .documentDescription, #content #description {
60    margin:0.5em 0 1.31em;
61}
62
63/* Uncomment these if you want link addresses inserted along with the link text
64   when you print.
65#content a:link:after,
66#content a:visited:after {
67   content: " [" attr(href) "] ";
68}
69*/
70
71/* Hide all the elements that are irrelevant for printing */
72div.top,
73#portal-logo,
74#portal-siteactions,
75.hiddenStructure,
76#portal-searchbox,
77#portal-globalnav,
78#portal-personaltools,
79#portal-breadcrumbs,
80#edit-bar,
81#portal-column-one,
82#portal-column-two,
83#portal-languageselector,
84.contentViews,
85.contentActions,
86.help,
87.legend,
88.portalMessage,
89.documentActions,
90.netscape4,
91#viewlet-below-content .reply,
92#viewlet-below-content .discussion,
93#kss-spinner,
94#review-history,
95#content-history,
96.listingBar,
97#portal-footer,
98#portal-colophon,
99.skipnav,
100#kss-spinner,
101#review-history,
102#content-history,
103.listingBar,
104.link-presentation,
105input.standalone,
106.overlay,
107.managePortletsFallback,
108.close,
109.link-parent,
110.draggingHook,
111#foldercontents-order-column,
112input.context,
113.visualNoPrint {
114    display: none;
115}
116
117/* Image alignment classes */
118.image-left {
119    float: left;
120    clear: both;
121    margin: 0.5em 1em 0.5em 0;
122    border: 0.4pt solid Black;
123}
124.image-inline {
125    float: none;
126}
127.image-right {
128    float: right;
129    clear: both;
130    margin: 0.5em;
131    border: 0.4pt solid Black;
132}
133dd.image-caption {
134    text-align:left;
135    padding: 0; margin:0;
136}
137dl.captioned {
138    padding: 0.8em;
139}
140.newsImageContainer {
141    float:right;
142    margin: 0 0 0.5em 1em;
143    width: 16em;
144}
Note: See TracBrowser for help on using the repository browser.