-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprint.css
46 lines (43 loc) · 968 Bytes
/
print.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/****************************************************
* PRINT RELATED CLASSES
****************************************************/
.ShowBorders {
border: solid 1px white ;
border-right: solid 0px white ;
}
.ShowBorders td {
border-bottom: solid 1px white ;
border-right: solid 1px white ;
}
@media print {
body, td, tr, a, .FontSoftSmall {
font-size: 9px ;
font-weight: bold ;
}
.ShowBorders {
border: solid 1px gray ;
border-right: solid 0px gray ;
}
.ShowBorders td {
border-bottom: solid 1px gray ;
border-right: solid 1px gray ;
}
.DoNotPrint {
display: none ;
}
}
/* Custom modifications required only when using static headers (like on ten-80) */
body {
padding: 120px 0px 0px 0px;
}
#HeaderNavAndBannerContainer {
height: 120px;
}
@media print {
body {
padding: 0px 0px 0px 0px;
}
#HeaderNavAndBannerContainer {
display: none ;
}
}