forked from ruby/www.ruby-lang.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint.css
52 lines (44 loc) · 1.09 KB
/
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
47
48
49
50
51
52
@media print {
html, body {
width: auto !important;
margin: 0 !important;
padding: 0 !important;
border: 0 !important;
float: none !important;
font-size: 10pt !important;
line-height: 14pt !important;
color: black !important;
background: transparent !important;
display: block !important;
min-height: 0 !important;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
#header {
margin: 0 0 5px !important;
padding: 0 0 5px !important;
border-bottom: 4pt solid black !important;
}
#header_content > a {
background: none;
padding-left: 0;
margin-left: 0;
}
#header h1 { font-size: 28px; }
#search-box,
#header nav,
nav.site-links { display: none; }
#home-page-layout #code pre { margin-right: 24px; }
#sidebar { margin-right: 24px; }
#content-wrapper {
width: 65%;
padding: 0 24px;
}
#home-page-layout #intro {
padding-right: 24px;
padding-left: 24px;
}
#header_content { padding: 20px 24px 0; }
#footer { margin: 0; }
}