-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint.css
157 lines (157 loc) · 2.32 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
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
153
154
155
156
157
body {
padding:0;
margin:0;
background-color:white;
}
div.header {
width:100%;
margin:0;
}
#title {
text-align:center;
color:maroon;
font-style:italic;
font-variant:small-caps;
font-weight:bold;
font-size:large;
padding:10pt;
}
#mainmenu {
display:none;
}
div.main {
width:100%;
margin:0px;
border-top:thin solid teal;
border-bottom:thin solid teal;
color:black;
}
div.left {
display:none;
}
div.right {
padding:1em;
background-color:white;
line-height:140%;
}
div.right h1 {
color:teal;
text-align:center;
font-size:large;
font-weight:normal;
}
div.right h2 {
color:teal;
font-size:medium;
font-weight:bold;
padding-left:3pt;
background-color:#F0F0F0;
}
div.right h3 {
font-size:medium;
font-weight:normal;
margin:10pt 0 3pt 0;
border-bottom:thin dotted green;
}
div.right ul {
list-style-type:circle;
}
div.right table {
margin:10pt;
background-color:#FFF0F0;
border:thin dashed teal;
}
div.right th {
font-size:medium;
border-bottom:thin dotted teal;
}
div.right td {
padding:0 10pt 0 10pt;
}
div.footer {
width:100%;
background-color:#F5FFD9;
border-bottom:thin solid teal;
overflow:hidden;
}
div.footer span {
font-size:small;
float:right;
margin-right:20pt;
}
div.module {
min-width: 200pt;
/* padding:0 20pt 0 20pt;*/
}
span.code {
white-space:pre;
font-family:monospace;
color:black;
}
span.term {
white-space:pre;
font-family:monospace;
color:black;
}
span.var {
font-style:italic;
font-family:monospace;
color:maroon;
}
a.id {
color:blue;
text-decoration:none;
font-family:monospace;
}
a.id:hover {
color:red;
border-bottom:thin dotted red;
}
span.symbol {
color:purple;
}
span.delimiter {
color:red;
}
span.keyword {
color:blue;
}
span.literal {
color:green;
font-style:italic;
}
span.comment {
color:gray;
font-style:italic;
}
span.lineno {
margin-right:5pt;
padding-right:5pt;
border-right:thin solid black;
}
div.code {
line-height:normal;
white-space:pre;
font-family:monospace;
color:black;
padding:5pt;
background-color:#F0FFF0;
margin:10pt;
border:thin dashed maroon;
}
div.term {
line-height:normal;
white-space:pre;
font-family:monospace;
color:black;
padding:5pt;
background-color:#F0F0FF;
margin:10pt;
border:thin dashed green;
}
div.comment {
margin-left:5pt;
padding:5pt 10pt 10pt 10pt;
/* border-left:thin dotted blue;*/
/* border-right:thin dotted blue;*/
}