-
Notifications
You must be signed in to change notification settings - Fork 12
/
printmode.css
69 lines (56 loc) · 1.01 KB
/
printmode.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
/* print mode */
@media (min-width: 0) {
.container {
max-width: none !important;
margin: 5px 0 !important;
}
}
*,
*:hover {
color: #000 !important;
background-color: #fff !important;
text-shadow: none !important;
}
.illustration {
display: none !important;
}
button {
display: none !important;
}
.client,
.server {
background-color: #fff !important;
border: 1px solid black !important;
box-shadow: none !important;
max-width: none !important;
margin: 1em 0;
}
.rec-label:after {
content: "" !important;
}
.string > .explanation,
.decryption > .explanation {
background-color: #fff !important;
box-shadow: none !important;
border: 2px solid black !important;
}
.record.annotate .string > .explanation:before {
display: none;
}
pre code {
border-radius: 0 !important;
border: 2px solid black !important;
white-space: pre-wrap !important;
}
a:after {
content: " [link]";
}
a.no-show:after {
content: "";
}
.print-mode {
display: none;
}
.header {
display: none;
}