jursdocs 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,350 @@
1
+ /**
2
+ * Syntax highlighting styles
3
+ */
4
+
5
+ $code_background: #f3f3f3!default;
6
+
7
+ code {
8
+ background: $code_background;
9
+ border-radius: 2px;
10
+ color: #444;
11
+ font-family: 'Roboto Mono', monospace;
12
+ font-size: 0.95em;
13
+ margin: 0 0.2rem;
14
+ padding: 0.1rem 0.5rem;
15
+ }
16
+
17
+ pre {
18
+ background: $code_background;
19
+ font-family: 'Roboto Mono', monospace;
20
+ margin-bottom: 2rem;
21
+ padding: calc(.5 * 2rem) 1.2rem;
22
+ tab-size: 4;
23
+ overflow-x: auto;
24
+ }
25
+
26
+ pre code {
27
+ background: none;
28
+ border: none;
29
+ color: #444;
30
+ margin: 0;
31
+ padding: 0;
32
+ }
33
+
34
+ .highlight {
35
+ background: #fff;
36
+
37
+ .highlighter-rouge & {
38
+ background: $code_background;
39
+ }
40
+
41
+ .c {
42
+ color: #998;
43
+ font-style: italic;
44
+ }
45
+ // Comment
46
+
47
+ .err {
48
+ color: #a61717;
49
+ background-color: #e3d2d2;
50
+ }
51
+ // Error
52
+
53
+ .k {
54
+ font-weight: bold;
55
+ }
56
+ // Keyword
57
+
58
+ .o {
59
+ font-weight: bold;
60
+ }
61
+ // Operator
62
+
63
+ .cm {
64
+ color: #998;
65
+ font-style: italic;
66
+ }
67
+ // Comment.Multiline
68
+
69
+ .cp {
70
+ color: #999;
71
+ font-weight: bold;
72
+ }
73
+ // Comment.Preproc
74
+
75
+ .c1 {
76
+ color: #998;
77
+ font-style: italic;
78
+ }
79
+ // Comment.Single
80
+
81
+ .cs {
82
+ color: #999;
83
+ font-weight: bold;
84
+ font-style: italic;
85
+ }
86
+ // Comment.Special
87
+
88
+ .gd {
89
+ color: #000;
90
+ background-color: #fdd;
91
+ }
92
+ // Generic.Deleted
93
+
94
+ .gd .x {
95
+ color: #000;
96
+ background-color: #faa;
97
+ }
98
+ // Generic.Deleted.Specific
99
+
100
+ .ge {
101
+ font-style: italic;
102
+ }
103
+ // Generic.Emph
104
+
105
+ .gr {
106
+ color: #a00;
107
+ }
108
+ // Generic.Error
109
+
110
+ .gh {
111
+ color: #999;
112
+ }
113
+ // Generic.Heading
114
+
115
+ .gi {
116
+ color: #000;
117
+ background-color: #dfd;
118
+ }
119
+ // Generic.Inserted
120
+
121
+ .gi .x {
122
+ color: #000;
123
+ background-color: #afa;
124
+ }
125
+ // Generic.Inserted.Specific
126
+
127
+ .go {
128
+ color: #888;
129
+ }
130
+ // Generic.Output
131
+
132
+ .gp {
133
+ color: #555;
134
+ }
135
+ // Generic.Prompt
136
+
137
+ .gs {
138
+ font-weight: bold;
139
+ }
140
+ // Generic.Strong
141
+
142
+ .gu {
143
+ color: #aaa;
144
+ }
145
+ // Generic.Subheading
146
+
147
+ .gt {
148
+ color: #a00;
149
+ }
150
+ // Generic.Traceback
151
+
152
+ .kc {
153
+ font-weight: bold;
154
+ }
155
+ // Keyword.Constant
156
+
157
+ .kd {
158
+ font-weight: bold;
159
+ }
160
+ // Keyword.Declaration
161
+
162
+ .kp {
163
+ font-weight: bold;
164
+ }
165
+ // Keyword.Pseudo
166
+
167
+ .kr {
168
+ font-weight: bold;
169
+ }
170
+ // Keyword.Reserved
171
+
172
+ .kt {
173
+ color: #458;
174
+ font-weight: bold;
175
+ }
176
+ // Keyword.Type
177
+
178
+ .m {
179
+ color: #099;
180
+ }
181
+ // Literal.Number
182
+
183
+ .s {
184
+ color: #d14;
185
+ }
186
+ // Literal.String
187
+
188
+ .na {
189
+ color: #008080;
190
+ }
191
+ // Name.Attribute
192
+
193
+ .nb {
194
+ color: #0086B3;
195
+ }
196
+ // Name.Builtin
197
+
198
+ .nc {
199
+ color: #458;
200
+ font-weight: bold;
201
+ }
202
+ // Name.Class
203
+
204
+ .no {
205
+ color: #008080;
206
+ }
207
+ // Name.Constant
208
+
209
+ .ni {
210
+ color: #800080;
211
+ }
212
+ // Name.Entity
213
+
214
+ .ne {
215
+ color: #900;
216
+ font-weight: bold;
217
+ }
218
+ // Name.Exception
219
+
220
+ .nf {
221
+ color: #900;
222
+ font-weight: bold;
223
+ }
224
+ // Name.Function
225
+
226
+ .nn {
227
+ color: #555;
228
+ }
229
+ // Name.Namespace
230
+
231
+ .nt {
232
+ color: #000080;
233
+ }
234
+ // Name.Tag
235
+
236
+ .nv {
237
+ color: #008080;
238
+ }
239
+ // Name.Variable
240
+
241
+ .ow {
242
+ font-weight: bold;
243
+ }
244
+ // Operator.Word
245
+
246
+ .w {
247
+ color: #bbb;
248
+ }
249
+ // Text.Whitespace
250
+
251
+ .mf {
252
+ color: #099;
253
+ }
254
+ // Literal.Number.Float
255
+
256
+ .mh {
257
+ color: #099;
258
+ }
259
+ // Literal.Number.Hex
260
+
261
+ .mi {
262
+ color: #099;
263
+ }
264
+ // Literal.Number.Integer
265
+
266
+ .mo {
267
+ color: #099;
268
+ }
269
+ // Literal.Number.Oct
270
+
271
+ .sb {
272
+ color: #d14;
273
+ }
274
+ // Literal.String.Backtick
275
+
276
+ .sc {
277
+ color: #d14;
278
+ }
279
+ // Literal.String.Char
280
+
281
+ .sd {
282
+ color: #d14;
283
+ }
284
+ // Literal.String.Doc
285
+
286
+ .s2 {
287
+ color: #d14;
288
+ }
289
+ // Literal.String.Double
290
+
291
+ .se {
292
+ color: #d14;
293
+ }
294
+ // Literal.String.Escape
295
+
296
+ .sh {
297
+ color: #d14;
298
+ }
299
+ // Literal.String.Heredoc
300
+
301
+ .si {
302
+ color: #d14;
303
+ }
304
+ // Literal.String.Interpol
305
+
306
+ .sx {
307
+ color: #d14;
308
+ }
309
+ // Literal.String.Other
310
+
311
+ .sr {
312
+ color: #009926;
313
+ }
314
+ // Literal.String.Regex
315
+
316
+ .s1 {
317
+ color: #d14;
318
+ }
319
+ // Literal.String.Single
320
+
321
+ .ss {
322
+ color: #990073;
323
+ }
324
+ // Literal.String.Symbol
325
+
326
+ .bp {
327
+ color: #999;
328
+ }
329
+ // Name.Builtin.Pseudo
330
+
331
+ .vc {
332
+ color: #008080;
333
+ }
334
+ // Name.Variable.Class
335
+
336
+ .vg {
337
+ color: #008080;
338
+ }
339
+ // Name.Variable.Global
340
+
341
+ .vi {
342
+ color: #008080;
343
+ }
344
+ // Name.Variable.Instance
345
+
346
+ .il {
347
+ color: #099;
348
+ }
349
+ // Literal.Number.Integer.Long
350
+ }
@@ -0,0 +1,184 @@
1
+ /* --------------------------------------------------------------
2
+
3
+ Hartija Css Print Framework
4
+ * Version: 1.0
5
+
6
+ -------------------------------------------------------------- */
7
+
8
+ body {
9
+ width: 80% !important;
10
+ margin: 0 auto !important;
11
+ padding: 0 !important;
12
+ line-height: 1.5;
13
+ font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
14
+ color: #000;
15
+ background: none;
16
+ font-size: 12pt;
17
+ }
18
+
19
+ /* Headings */
20
+ h1,
21
+ h2,
22
+ h3,
23
+ h4,
24
+ h5,
25
+ h6 {
26
+ page-break-after: avoid;
27
+ }
28
+
29
+ h1 {
30
+ font-size: 28pt;
31
+ }
32
+
33
+ h2 {
34
+ font-size: 17pt;
35
+ }
36
+
37
+ h3 {
38
+ font-size: 15pt;
39
+ }
40
+
41
+ h4,
42
+ h5,
43
+ h6 {
44
+ font-size: 14pt;
45
+ }
46
+
47
+ h2,
48
+ h3,
49
+ p {
50
+ orphans: 3;
51
+ widows: 3;
52
+ }
53
+
54
+ code {
55
+ font: 12pt Courier, monospace;
56
+ }
57
+
58
+ blockquote {
59
+ margin: 1.2em;
60
+ padding: 1em;
61
+ font-size: 12pt;
62
+ }
63
+
64
+ hr {
65
+ background-color: #ccc;
66
+ }
67
+
68
+ /* Images */
69
+ img {
70
+ display: block;
71
+ margin: 2rem auto;
72
+ max-width: 60% !important;
73
+ border: 1px solid #ccc;
74
+ }
75
+
76
+ a img {
77
+ border: none;
78
+ }
79
+
80
+ /* Links */
81
+ a:link,
82
+ a:visited {
83
+ background: transparent;
84
+ font-weight: 700;
85
+ text-decoration: underline;
86
+ color: #333;
87
+ }
88
+
89
+ a:link[href^="http://"]:after,
90
+ a[href^="http://"]:visited:after {
91
+ content: ' (' attr(href) ') ';
92
+ font-size: 90%;
93
+ }
94
+
95
+ abbr[title]:after {
96
+ content: ' (' attr(title) ')';
97
+ }
98
+
99
+ /* Don't show linked images */
100
+ a[href^="http://"] {
101
+ color: #000;
102
+ }
103
+
104
+ a[href$=".gif"]:after,
105
+ a[href$=".jpeg"]:after,
106
+ a[href$=".jpg"]:after,
107
+ a[href$=".png"]:after {
108
+ content: ' (' attr(href) ') ';
109
+ display: none;
110
+ }
111
+
112
+ /* Don't show links that are fragment identifiers, or use the `javascript:` pseudo protocol .. taken from html5boilerplate */
113
+ a[href^="#"]:after,
114
+ a[href^="javascript:"]:after {
115
+ content: '';
116
+ }
117
+
118
+ /* Table */
119
+ table {
120
+ margin: 1px;
121
+ text-align: left;
122
+ }
123
+
124
+ th {
125
+ border-bottom: 1px solid #333;
126
+ font-weight: bold;
127
+ }
128
+
129
+ td {
130
+ border-bottom: 1px solid #333;
131
+ }
132
+
133
+ td,
134
+ th {
135
+ padding: 4px 10px 4px 0;
136
+ }
137
+
138
+ tfoot {
139
+ font-style: italic;
140
+ }
141
+
142
+ caption {
143
+ background: #fff;
144
+ margin-bottom: 2em;
145
+ text-align: left;
146
+ }
147
+
148
+ thead {
149
+ display: table-header-group;
150
+ }
151
+
152
+ img,
153
+ tr {
154
+ page-break-inside: avoid;
155
+ }
156
+
157
+ iframe,
158
+ .subpage-nav,
159
+ #markdown-toc {
160
+ display: none;
161
+ }
162
+
163
+ article,
164
+ .cover-page {
165
+ page-break-after: always;
166
+ }
167
+
168
+ article {
169
+ margin-top: 20%;
170
+ }
171
+
172
+ .cover-page {
173
+ margin-top: 40%;
174
+ h1 {
175
+ font-size: 52pt;
176
+ }
177
+ }
178
+
179
+ .page-header,
180
+ .site-footer,
181
+ .sidebar,
182
+ .popup,
183
+ .overlay
184
+ {display:none;}