forked from BonsaiDen/JavaScript-Garden
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprint.css
More file actions
152 lines (120 loc) · 1.5 KB
/
print.css
File metadata and controls
152 lines (120 loc) · 1.5 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
body {
font-family: Arial, sans-serif;
width: 100%;
background: #fff;
color: #000;
}
section {
margin-right: 0;
}
nav {
display: none;
}
#intro h1 {
font-size: 35px;
padding: 20px 0;
}
header h1 {
font-size: 20px;
padding: 20px 0;
}
h2 {
margin: 20px 0 10px;
font-size: 16px;
padding-top: 0;
}
h3 {
font-size: 13px;
margin: 15px 0 8px;
}
h2, h3 {
font-variant: normal;
text-transform: capitalize;
page-break-after: avoid;
}
header h1, #intro h1,
h2, h3 {
text-shadow: none;
}
article h2 > code, article h3 > code {
text-transform: none;
font-size: 0.9em;
}
article h2 a {
display: none;
}
article {
font-size: 11px;
width: 78%;
padding-bottom: 0;
border-bottom-width: 2px;
}
header article {
}
aside {
width: 26%;
right: -28%;
padding-bottom: 6px;
opacity: 1;
}
aside.es5:after {
display: none;
}
a {
color: inherit;
}
p, ul, ol {
orphans: 3;
line-height: 1.3em;
}
pre {
background: #eee;
padding: 6px 0 6px 20px;
}
aside p {
font-size: 10px;
color: #666;
}
article code, article pre code {
background: #eee;
}
article code {
padding: 1px 3px;
}
article pre code {
padding: 0px;
}
article li {
margin-top: 6px;
}
article ul, article ol {
list-style-position: inside;
margin-left: 8px;
}
.com {
color: #600;
font-style: italic;
}
.typ {
color: #404;
font-weight: bold;
}
.lit {
color: #044;
}
.pun {
color: #440;
}
.pln {
color: #444;
}
.atn {
color: #404;
}
.str, .atv {
color: #060;
}
.kwd, .tag {
color: #006;
font-weight: bold;
}