-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathprintable.css
88 lines (79 loc) · 1.64 KB
/
printable.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
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
body {
/*width: 800px;*/
/*margin: 0px auto;*/
/*color: #3E4349;*/
color: black;
font: 10pt Georgia, serif;
line-height: 140%;
}
pre {
font: 9pt Courier, monospace;
color: black;
border-color: #3E4349;
border-style: solid;
border-width: 1px;
padding: 3pt;
margin-left: 50px;
margin-right: 50px;
}
pre code {
font-weight: normal;
}
code {
white-space: pre;
font-weight: bold;
}
p {
!line-height: 140%;
}
h1 {
font: 18pt Courier, monospace;
text-align: center;
color: black;
font-weight: bold;
}
h2 {
font: 14pt Georgia, serif;
font-style: italic;
text-align: left;
counter-increment: section;
}
h2:before {
content: counter(section) ". ";
}
h3 {
font: 12pt monospace;
text-align: left;
color: black;
counter-increment: subsection;
}
h3:before {
content: counter(section) "." counter(subsection) ". ";
}
img { /*disable Fork at Github stamp*/
display: none;
visibility: hidden;
}
iframe { /*disable youtube video*/
display: none;
visibility: hidden;
}
div { /*disable links in the bottom of the page*/
display: none;
visibility: hidden;
}
a { /*disable all links*/
display: none;
visibility: hidden;
}
.dashdash:before { content: "--"; }
.dashdash:after { content: "--"; color: white; }
.ellipsis:before { content: "..."; color: white; }
.ellipsis:after { content: "..."; }
.brackets:before { content: "["; }
.brackets:after { content: "]"; }
.angular:before { content: "<"; }
.angular:after { content: ">"; }
.parens:before { content: "("; }
.parens:after { content: ")"; }
.upper { text-transform: uppercase; }