styless 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/_sass/styless.scss CHANGED
@@ -1,639 +1,620 @@
1
- body {
2
- margin: 0;
3
- font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
4
- "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
5
- "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
6
- line-height: 1.5;
7
- }
8
-
9
- ul, ol {
10
- padding-left: 2em;
11
-
12
- ul, ol {
13
- margin-top: 0;
14
- margin-bottom: 0;
15
- }
16
- }
17
-
18
- textarea {
19
- resize: vertical;
20
- }
21
-
22
- table {
23
- display: block;
24
- width: 100%;
25
- overflow: auto;
26
- border-collapse: collapse;
27
-
28
- th {
29
- font-weight: bold;
30
- }
31
-
32
- th,
33
- td {
34
- padding: 6px 13px;
35
- border: 1px solid lightgray;
36
- }
37
-
38
- tr {
39
- border-top: 1px solid gray;
40
-
41
- &:nth-child(2n) {
42
- background-color: lightgray;
43
- }
44
- }
45
-
46
- img {
47
- background-color: transparent;
48
- }
49
- }
50
-
51
- code,
52
- kbd,
53
- pre,
54
- samp {
55
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
56
- "Liberation Mono", "Courier New", monospace;
57
- }
58
-
59
- img,
60
- video {
61
- max-width: 100%;
62
- height: auto;
63
- &[align=right] {
64
- padding-left: 20px;
65
- }
66
-
67
- &[align=left] {
68
- padding-right: 20px;
69
- }
70
- }
71
-
72
- blockquote {
73
- border-left: 1px solid lightgray;
74
- margin: 0;
75
- }
76
-
77
- pre {
78
- border: 1px solid lightgray;
79
- overflow-x: auto;
80
- }
81
-
82
- .highlight table td {
83
- padding: 5px;
84
- }
85
- .highlight table pre {
86
- margin: 0;
87
- }
88
- .highlight .cm {
89
- color: #999988;
90
- font-style: italic;
91
- }
92
- .highlight .cp {
93
- color: #999999;
94
- font-weight: bold;
95
- }
96
- .highlight .c1 {
97
- color: #999988;
98
- font-style: italic;
99
- }
100
- .highlight .cs {
101
- color: #999999;
102
- font-weight: bold;
103
- font-style: italic;
104
- }
105
- .highlight .c,
106
- .highlight .cd {
107
- color: #999988;
108
- font-style: italic;
109
- }
110
- .highlight .err {
111
- color: #a61717;
112
- background-color: #e3d2d2;
113
- }
114
- .highlight .gd {
115
- color: #000000;
116
- background-color: #ffdddd;
117
- }
118
- .highlight .ge {
119
- color: #000000;
120
- font-style: italic;
121
- }
122
- .highlight .gr {
123
- color: #aa0000;
124
- }
125
- .highlight .gh {
126
- color: #999999;
1
+ /*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
2
+ /* Document ======== */
3
+ /** Use a better box model (opinionated). */
4
+ *, ::before, ::after {
5
+ box-sizing: border-box;
6
+ }
7
+ /** 1. Correct the line height in all browsers. 2. Prevent adjustments of font size after orientation changes in iOS. 3. Use a more readable tab size (opinionated). */
8
+ html {
9
+ line-height: 1.15;
10
+ /* 1 */
11
+ -webkit-text-size-adjust: 100%;
12
+ /* 2 */
13
+ -moz-tab-size: 4;
14
+ /* 3 */
15
+ tab-size: 4;
16
+ /* 3 */
17
+ }
18
+ /* Sections ======== */
19
+ /** 1. Remove the margin in all browsers. 2. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
20
+ body {
21
+ margin: 0;
22
+ /* 1 */
23
+ font-family: system-ui, -apple-system,
24
+ /* Firefox supports this but not yet `system-ui` */
25
+ 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
26
+ /* 2 */
27
+ }
28
+ /* Grouping content ================ */
29
+ /** 1. Add the correct height in Firefox. 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) */
30
+ hr {
31
+ height: 0;
32
+ /* 1 */
33
+ color: inherit;
34
+ /* 2 */
35
+ }
36
+ /* Text-level semantics ==================== */
37
+ /** Add the correct text decoration in Chrome, Edge, and Safari. */
38
+ abbr[title] {
39
+ text-decoration: underline dotted;
40
+ }
41
+ /** Add the correct font weight in Edge and Safari. */
42
+ b, strong {
43
+ font-weight: bolder;
44
+ }
45
+ /** 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) 2. Correct the odd 'em' font sizing in all browsers. */
46
+ code, kbd, samp, pre {
47
+ font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
48
+ /* 1 */
49
+ font-size: 1em;
50
+ /* 2 */
51
+ }
52
+ /** Add the correct font size in all browsers. */
53
+ small {
54
+ font-size: 80%;
55
+ }
56
+ /** Prevent 'sub' and 'sup' elements from affecting the line height in all browsers. */
57
+ sub, sup {
58
+ font-size: 75%;
59
+ line-height: 0;
60
+ position: relative;
61
+ vertical-align: baseline;
62
+ }
63
+ sub {
64
+ bottom: -0.25em;
65
+ }
66
+ sup {
67
+ top: -0.5em;
68
+ }
69
+ /* Tabular data ============ */
70
+ /** 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) */
71
+ table {
72
+ text-indent: 0;
73
+ /* 1 */
74
+ border-color: inherit;
75
+ /* 2 */
76
+ }
77
+ /* Forms ===== */
78
+ /** 1. Change the font styles in all browsers. 2. Remove the margin in Firefox and Safari. */
79
+ button, input, optgroup, select, textarea {
80
+ font-family: inherit;
81
+ /* 1 */
82
+ font-size: 100%;
83
+ /* 1 */
84
+ line-height: 1.15;
85
+ /* 1 */
86
+ margin: 0;
87
+ /* 2 */
88
+ }
89
+ /** Remove the inheritance of text transform in Edge and Firefox. */
90
+ button, select {
91
+ text-transform: none;
92
+ }
93
+ /** Correct the inability to style clickable types in iOS and Safari. */
94
+ button, [type='button'], [type='reset'], [type='submit'] {
95
+ -webkit-appearance: button;
96
+ }
97
+ /** Remove the inner border and padding in Firefox. */
98
+ ::-moz-focus-inner {
99
+ border-style: none;
100
+ padding: 0;
101
+ }
102
+ /** Restore the focus styles unset by the previous rule. */
103
+ :-moz-focusring {
104
+ outline: 1px dotted ButtonText;
105
+ }
106
+ /** Remove the additional ':invalid' styles in Firefox. See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737 */
107
+ :-moz-ui-invalid {
108
+ box-shadow: none;
109
+ }
110
+ /** Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers. */
111
+ legend {
112
+ padding: 0;
113
+ }
114
+ /** Add the correct vertical alignment in Chrome and Firefox. */
115
+ progress {
116
+ vertical-align: baseline;
117
+ }
118
+ /** Correct the cursor style of increment and decrement buttons in Safari. */
119
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
120
+ height: auto;
121
+ }
122
+ /** 1. Correct the odd appearance in Chrome and Safari. 2. Correct the outline style in Safari. */
123
+ [type='search'] {
124
+ -webkit-appearance: textfield;
125
+ /* 1 */
126
+ outline-offset: -2px;
127
+ /* 2 */
128
+ }
129
+ /** Remove the inner padding in Chrome and Safari on macOS. */
130
+ ::-webkit-search-decoration {
131
+ -webkit-appearance: none;
132
+ }
133
+ /** 1. Correct the inability to style clickable types in iOS and Safari. 2. Change font properties to 'inherit' in Safari. */
134
+ ::-webkit-file-upload-button {
135
+ -webkit-appearance: button;
136
+ /* 1 */
137
+ font: inherit;
138
+ /* 2 */
139
+ }
140
+ /* Interactive =========== */
141
+ /* Add the correct display in Chrome and Safari. */
142
+ summary {
143
+ display: list-item;
144
+ }
145
+ img {
146
+ max-width: 100%;
147
+ height:auto;
148
+ }
149
+ pre {
150
+ border: 1px solid lightgray;
151
+ overflow-x: auto;
152
+ }
153
+ .highlight table td {
154
+ padding: 5px;
155
+ }
156
+ .highlight table pre {
157
+ margin: 0;
158
+ }
159
+ .highlight .cm {
160
+ color: #999988;
161
+ font-style: italic;
127
162
  }
128
- .highlight .gi {
129
- color: #000000;
130
- background-color: #ddffdd;
163
+ .highlight .cp {
164
+ color: #999999;
165
+ font-weight: bold;
166
+ }
167
+ .highlight .c1 {
168
+ color: #999988;
169
+ font-style: italic;
170
+ }
171
+ .highlight .cs {
172
+ color: #999999;
173
+ font-weight: bold;
174
+ font-style: italic;
131
175
  }
132
- .highlight .go {
133
- color: #888888;
176
+ .highlight .c, .highlight .cd {
177
+ color: #999988;
178
+ font-style: italic;
134
179
  }
135
- .highlight .gp {
136
- color: #555555;
180
+ .highlight .err {
181
+ color: #a61717;
182
+ background-color: #e3d2d2;
137
183
  }
138
- .highlight .gs {
139
- font-weight: bold;
184
+ .highlight .gd {
185
+ color: #000000;
186
+ background-color: #ffdddd;
140
187
  }
141
- .highlight .gu {
142
- color: #aaaaaa;
188
+ .highlight .ge {
189
+ color: #000000;
190
+ font-style: italic;
143
191
  }
144
- .highlight .gt {
145
- color: #aa0000;
192
+ .highlight .gr {
193
+ color: #aa0000;
146
194
  }
147
- .highlight .kc {
148
- color: #000000;
149
- font-weight: bold;
195
+ .highlight .gh {
196
+ color: #999999;
150
197
  }
151
- .highlight .kd {
152
- color: #000000;
153
- font-weight: bold;
198
+ .highlight .gi {
199
+ color: #000000;
200
+ background-color: #ddffdd;
154
201
  }
155
- .highlight .kn {
156
- color: #000000;
157
- font-weight: bold;
202
+ .highlight .go {
203
+ color: #888888;
158
204
  }
159
- .highlight .kp {
160
- color: #000000;
161
- font-weight: bold;
205
+ .highlight .gp {
206
+ color: #555555;
162
207
  }
163
- .highlight .kr {
164
- color: #000000;
165
- font-weight: bold;
208
+ .highlight .gs {
209
+ font-weight: bold;
166
210
  }
167
- .highlight .kt {
168
- color: #445588;
169
- font-weight: bold;
211
+ .highlight .gu {
212
+ color: #aaaaaa;
170
213
  }
171
- .highlight .k,
172
- .highlight .kv {
173
- color: #000000;
174
- font-weight: bold;
214
+ .highlight .gt {
215
+ color: #aa0000;
175
216
  }
176
- .highlight .mf {
177
- color: #009999;
217
+ .highlight .kc {
218
+ color: #000000;
219
+ font-weight: bold;
178
220
  }
179
- .highlight .mh {
180
- color: #009999;
221
+ .highlight .kd {
222
+ color: #000000;
223
+ font-weight: bold;
181
224
  }
182
- .highlight .il {
183
- color: #009999;
225
+ .highlight .kn {
226
+ color: #000000;
227
+ font-weight: bold;
184
228
  }
185
- .highlight .mi {
186
- color: #009999;
229
+ .highlight .kp {
230
+ color: #000000;
231
+ font-weight: bold;
187
232
  }
188
- .highlight .mo {
189
- color: #009999;
233
+ .highlight .kr {
234
+ color: #000000;
235
+ font-weight: bold;
190
236
  }
191
- .highlight .m,
192
- .highlight .mb,
193
- .highlight .mx {
194
- color: #009999;
237
+ .highlight .kt {
238
+ color: #445588;
239
+ font-weight: bold;
195
240
  }
196
- .highlight .sb {
197
- color: #d14;
241
+ .highlight .k, .highlight .kv {
242
+ color: #000000;
243
+ font-weight: bold;
198
244
  }
199
- .highlight .sc {
200
- color: #d14;
245
+ .highlight .mf {
246
+ color: #009999;
201
247
  }
202
- .highlight .sd {
203
- color: #d14;
248
+ .highlight .mh {
249
+ color: #009999;
204
250
  }
205
- .highlight .s2 {
206
- color: #d14;
251
+ .highlight .il {
252
+ color: #009999;
207
253
  }
208
- .highlight .se {
209
- color: #d14;
254
+ .highlight .mi {
255
+ color: #009999;
210
256
  }
211
- .highlight .sh {
212
- color: #d14;
257
+ .highlight .mo {
258
+ color: #009999;
213
259
  }
214
- .highlight .si {
215
- color: #d14;
260
+ .highlight .m, .highlight .mb, .highlight .mx {
261
+ color: #009999;
216
262
  }
217
- .highlight .sx {
218
- color: #d14;
263
+ .highlight .sb {
264
+ color: #d14;
219
265
  }
220
- .highlight .sr {
221
- color: #009926;
266
+ .highlight .sc {
267
+ color: #d14;
222
268
  }
223
- .highlight .s1 {
224
- color: #d14;
269
+ .highlight .sd {
270
+ color: #d14;
225
271
  }
226
- .highlight .ss {
227
- color: #990073;
272
+ .highlight .s2 {
273
+ color: #d14;
228
274
  }
229
- .highlight .s {
230
- color: #d14;
275
+ .highlight .se {
276
+ color: #d14;
231
277
  }
232
- .highlight .na {
233
- color: #008080;
278
+ .highlight .sh {
279
+ color: #d14;
234
280
  }
235
- .highlight .bp {
236
- color: #999999;
281
+ .highlight .si {
282
+ color: #d14;
237
283
  }
238
- .highlight .nb {
239
- color: #0086b3;
240
- }
241
- .highlight .nc {
242
- color: #445588;
243
- font-weight: bold;
244
- }
245
- .highlight .no {
246
- color: #008080;
247
- }
248
- .highlight .nd {
249
- color: #3c5d5d;
250
- font-weight: bold;
251
- }
252
- .highlight .ni {
253
- color: #800080;
254
- }
255
- .highlight .ne {
256
- color: #990000;
257
- font-weight: bold;
258
- }
259
- .highlight .nf {
260
- color: #990000;
261
- font-weight: bold;
262
- }
263
- .highlight .nl {
264
- color: #990000;
265
- font-weight: bold;
266
- }
267
- .highlight .nn {
268
- color: #555555;
269
- }
270
- .highlight .nt {
271
- color: #000080;
272
- }
273
- .highlight .vc {
274
- color: #008080;
275
- }
276
- .highlight .vg {
277
- color: #008080;
278
- }
279
- .highlight .vi {
280
- color: #008080;
281
- }
282
- .highlight .nv {
283
- color: #008080;
284
- }
285
- .highlight .ow {
286
- color: #000000;
287
- font-weight: bold;
288
- }
289
- .highlight .o {
290
- color: #000000;
291
- font-weight: bold;
292
- }
293
- .highlight .w {
294
- color: #bbbbbb;
295
- }
296
- .highlight {
297
- background-color: #f8f8f8;
298
- }
299
-
300
- @media print {
301
- body {
302
- padding: 0.4in;
303
- font-size: 12pt;
304
- color: #444;
305
- }
306
- }
307
-
308
- .dark {
309
- a {
310
- color: rgb(140, 140, 250);
311
- }
312
-
313
- ::-webkit-scrollbar-track-piece {
314
- background-color: rgba(255, 255, 255, 0.2) !important;
315
- }
316
-
317
- ::-webkit-scrollbar-track {
318
- background-color: rgba(255, 255, 255, 0.3) !important;
319
- }
320
-
321
- ::-webkit-scrollbar-thumb {
322
- background-color: rgba(255, 255, 255, 0.5) !important;
323
- }
324
-
325
- embed[type="application/pdf"] {
326
- filter: invert(90%);
327
- }
328
-
329
- color: rgb(191, 191, 191);
330
- background: rgb(31, 31, 31) !important;
331
-
332
- body {
333
- background-color: rgb(31, 31, 31);
334
- background-image: none !important;
335
- }
336
-
337
- input,
338
- select,
339
- textarea,
340
- button {
341
- color: rgb(191, 191, 191);
342
- background-color: rgb(31, 31, 31);
343
- }
344
-
345
- font {
346
- color: rgb(191, 191, 191);
347
- }
348
-
349
- filter: contrast(100%) brightness(100%) saturate(100%);
350
-
351
- .filter {
352
- width: 100%;
353
- height: 100%;
354
- position: fixed;
355
- left: 0px;
356
- top: 0px;
357
- pointer-events: none;
358
- z-index: 2147483647;
359
- }
360
-
361
- .yellow-filter {
362
- background: rgba(255, 255, 0, 0.15);
363
- opacity: 0;
364
- }
365
-
366
- .blue-filter {
367
- background: rgba(0, 0, 255, 0.15);
368
- opacity: 0;
369
- }
370
-
371
- .dim-filter {
372
- background: rgba(0, 0, 0, 0.5);
373
- opacity: 0;
374
- }
375
-
376
- .transform-z {
377
- transform: translateZ(0px);
378
- }
379
-
380
- th,
381
- td {
382
- border-bottom: 1px solid rgb(69, 69, 69);
383
- }
384
-
385
- blockquote {
386
- border-left: 1px solid rgb(69, 69, 69);
387
- }
388
-
389
- pre {
390
- border: 1px solid rgb(69, 69, 69);
391
- }
392
-
393
- .highlight .cm {
394
- color: rgb(196, 196, 186);
395
- }
396
-
397
- .highlight .cp {
398
- color: rgb(191, 191, 191);
399
- }
400
-
401
- .highlight .c1 {
402
- color: rgb(196, 196, 186);
403
- }
404
-
405
- .highlight .cs {
406
- color: rgb(191, 191, 191);
407
- }
408
-
409
- .highlight .c,
410
- .highlight .cd {
411
- color: rgb(196, 196, 186);
412
- }
413
-
414
- .highlight .err {
415
- color: rgb(230, 153, 153);
416
- background-color: rgb(75, 47, 47);
417
- }
418
-
419
- .highlight .gd {
420
- color: rgb(191, 191, 191);
421
- background-color: rgb(69, 17, 17);
422
- }
423
-
424
- .highlight .ge {
425
- color: rgb(191, 191, 191);
426
- }
427
-
428
- .highlight .gr {
429
- color: rgb(230, 153, 153);
430
- }
431
-
432
- .highlight .gh {
433
- color: rgb(191, 191, 191);
434
- }
435
-
436
- .highlight .gi {
437
- color: rgb(191, 191, 191);
438
- background-color: rgb(17, 69, 17);
439
- }
440
-
441
- .highlight .go {
442
- color: rgb(191, 191, 191);
443
- }
444
-
445
- .highlight .gp {
446
- color: rgb(191, 191, 191);
447
- }
448
-
449
- .highlight .gu {
450
- color: rgb(191, 191, 191);
451
- }
452
-
453
- .highlight .gt {
454
- color: rgb(230, 153, 153);
455
- }
456
-
457
- .highlight .kc {
458
- color: rgb(191, 191, 191);
459
- }
460
-
461
- .highlight .kd {
462
- color: rgb(191, 191, 191);
463
- }
464
-
465
- .highlight .kn {
466
- color: rgb(191, 191, 191);
467
- }
468
-
469
- .highlight .kp {
470
- color: rgb(191, 191, 191);
471
- }
472
-
473
- .highlight .kr {
474
- color: rgb(191, 191, 191);
475
- }
476
-
477
- .highlight .kt {
478
- color: rgb(170, 181, 212);
479
- }
480
-
481
- .highlight .k,
482
- .highlight .kv {
483
- color: rgb(191, 191, 191);
484
- }
485
-
486
- .highlight .mf {
487
- color: rgb(153, 230, 230);
488
- }
489
-
490
- .highlight .mh {
491
- color: rgb(153, 230, 230);
492
- }
493
-
494
- .highlight .il {
495
- color: rgb(153, 230, 230);
496
- }
497
-
498
- .highlight .mi {
499
- color: rgb(153, 230, 230);
500
- }
501
-
502
- .highlight .mo {
503
- color: rgb(153, 230, 230);
504
- }
505
-
506
- .highlight .m,
507
- .highlight .mb,
508
- .highlight .mx {
509
- color: rgb(153, 230, 230);
510
- }
511
-
512
- .highlight .sb {
513
- color: rgb(230, 153, 172);
514
- }
515
-
516
- .highlight .sc {
517
- color: rgb(230, 153, 172);
518
- }
519
-
520
- .highlight .sd {
521
- color: rgb(230, 153, 172);
522
- }
523
-
524
- .highlight .s2 {
525
- color: rgb(230, 153, 172);
526
- }
527
-
528
- .highlight .se {
529
- color: rgb(230, 153, 172);
530
- }
531
-
532
- .highlight .sh {
533
- color: rgb(230, 153, 172);
534
- }
535
-
536
- .highlight .si {
537
- color: rgb(230, 153, 172);
538
- }
539
-
540
- .highlight .sx {
541
- color: rgb(230, 153, 172);
542
- }
543
-
544
- .highlight .sr {
545
- color: rgb(153, 230, 172);
546
- }
547
-
548
- .highlight .s1 {
549
- color: rgb(230, 153, 172);
550
- }
551
-
552
- .highlight .ss {
553
- color: rgb(230, 153, 210);
554
- }
555
-
556
- .highlight .s {
557
- color: rgb(230, 153, 172);
558
- }
559
-
560
- .highlight .na {
561
- color: rgb(153, 230, 230);
562
- }
563
-
564
- .highlight .bp {
565
- color: rgb(191, 191, 191);
566
- }
567
-
568
- .highlight .nb {
569
- color: rgb(153, 210, 230);
570
- }
571
-
572
- .highlight .nc {
573
- color: rgb(170, 181, 212);
574
- }
575
-
576
- .highlight .no {
577
- color: rgb(153, 230, 230);
578
- }
579
-
580
- .highlight .nd {
581
- color: rgb(177, 205, 205);
582
- }
583
-
584
- .highlight .ni {
585
- color: rgb(230, 153, 230);
586
- }
587
-
588
- .highlight .ne {
589
- color: rgb(230, 153, 153);
590
- }
591
-
592
- .highlight .nf {
593
- color: rgb(230, 153, 153);
594
- }
595
-
596
- .highlight .nl {
597
- color: rgb(230, 153, 153);
598
- }
599
-
600
- .highlight .nn {
601
- color: rgb(191, 191, 191);
602
- }
603
-
604
- .highlight .nt {
605
- color: rgb(153, 153, 230);
606
- }
607
-
608
- .highlight .vc {
609
- color: rgb(153, 230, 230);
610
- }
611
-
612
- .highlight .vg {
613
- color: rgb(153, 230, 230);
614
- }
615
-
616
- .highlight .vi {
617
- color: rgb(153, 230, 230);
618
- }
619
-
620
- .highlight .nv {
621
- color: rgb(153, 230, 230);
622
- }
623
-
624
- .highlight .ow {
625
- color: rgb(191, 191, 191);
626
- }
627
-
628
- .highlight .o {
629
- color: rgb(191, 191, 191);
630
- }
631
-
632
- .highlight .w {
633
- color: rgb(191, 191, 191);
634
- }
635
-
636
- .highlight {
637
- background-color: rgb(33, 33, 33);
638
- }
284
+ .highlight .sx {
285
+ color: #d14;
639
286
  }
287
+ .highlight .sr {
288
+ color: #009926;
289
+ }
290
+ .highlight .s1 {
291
+ color: #d14;
292
+ }
293
+ .highlight .ss {
294
+ color: #990073;
295
+ }
296
+ .highlight .s {
297
+ color: #d14;
298
+ }
299
+ .highlight .na {
300
+ color: #008080;
301
+ }
302
+ .highlight .bp {
303
+ color: #999999;
304
+ }
305
+ .highlight .nb {
306
+ color: #0086b3;
307
+ }
308
+ .highlight .nc {
309
+ color: #445588;
310
+ font-weight: bold;
311
+ }
312
+ .highlight .no {
313
+ color: #008080;
314
+ }
315
+ .highlight .nd {
316
+ color: #3c5d5d;
317
+ font-weight: bold;
318
+ }
319
+ .highlight .ni {
320
+ color: #800080;
321
+ }
322
+ .highlight .ne {
323
+ color: #990000;
324
+ font-weight: bold;
325
+ }
326
+ .highlight .nf {
327
+ color: #990000;
328
+ font-weight: bold;
329
+ }
330
+ .highlight .nl {
331
+ color: #990000;
332
+ font-weight: bold;
333
+ }
334
+ .highlight .nn {
335
+ color: #555555;
336
+ }
337
+ .highlight .nt {
338
+ color: #000080;
339
+ }
340
+ .highlight .vc {
341
+ color: #008080;
342
+ }
343
+ .highlight .vg {
344
+ color: #008080;
345
+ }
346
+ .highlight .vi {
347
+ color: #008080;
348
+ }
349
+ .highlight .nv {
350
+ color: #008080;
351
+ }
352
+ .highlight .ow {
353
+ color: #000000;
354
+ font-weight: bold;
355
+ }
356
+ .highlight .o {
357
+ color: #000000;
358
+ font-weight: bold;
359
+ }
360
+ .highlight .w {
361
+ color: #bbbbbb;
362
+ }
363
+ .highlight {
364
+ background-color: #f8f8f8;
365
+ }
366
+ @media print {
367
+ body {
368
+ padding: 0.4in;
369
+ font-size: 12pt;
370
+ color: #444;
371
+ }
372
+ }
373
+ .dark {
374
+ a {
375
+ color: rgb(140, 140, 250);
376
+ }
377
+ ::-webkit-scrollbar-track-piece {
378
+ background-color: rgba(255, 255, 255, 0.2) !important;
379
+ }
380
+ ::-webkit-scrollbar-track {
381
+ background-color: rgba(255, 255, 255, 0.3) !important;
382
+ }
383
+ ::-webkit-scrollbar-thumb {
384
+ background-color: rgba(255, 255, 255, 0.5) !important;
385
+ }
386
+ embed[type="application/pdf"] {
387
+ filter: invert(90%);
388
+ }
389
+ color: rgb(191, 191, 191);
390
+ background: rgb(31, 31, 31) !important;
391
+ body {
392
+ background-color: rgb(31, 31, 31);
393
+ background-image: none !important;
394
+ }
395
+ input, select, textarea, button {
396
+ color: rgb(191, 191, 191);
397
+ background-color: rgb(31, 31, 31);
398
+ }
399
+ font {
400
+ color: rgb(191, 191, 191);
401
+ }
402
+ filter: contrast(100%) brightness(100%) saturate(100%);
403
+ .filter {
404
+ width: 100%;
405
+ height: 100%;
406
+ position: fixed;
407
+ left: 0px;
408
+ top: 0px;
409
+ pointer-events: none;
410
+ z-index: 2147483647;
411
+ }
412
+ .yellow-filter {
413
+ background: rgba(255, 255, 0, 0.15);
414
+ opacity: 0;
415
+ }
416
+ .blue-filter {
417
+ background: rgba(0, 0, 255, 0.15);
418
+ opacity: 0;
419
+ }
420
+ .dim-filter {
421
+ background: rgba(0, 0, 0, 0.5);
422
+ opacity: 0;
423
+ }
424
+ .transform-z {
425
+ transform: translateZ(0px);
426
+ }
427
+ th, td {
428
+ border-bottom: 1px solid rgb(69, 69, 69);
429
+ }
430
+ blockquote {
431
+ border-left: 1px solid rgb(69, 69, 69);
432
+ }
433
+ pre {
434
+ border: 1px solid rgb(69, 69, 69);
435
+ }
436
+ .highlight .cm {
437
+ color: rgb(196, 196, 186);
438
+ }
439
+ .highlight .cp {
440
+ color: rgb(191, 191, 191);
441
+ }
442
+ .highlight .c1 {
443
+ color: rgb(196, 196, 186);
444
+ }
445
+ .highlight .cs {
446
+ color: rgb(191, 191, 191);
447
+ }
448
+ .highlight .c, .highlight .cd {
449
+ color: rgb(196, 196, 186);
450
+ }
451
+ .highlight .err {
452
+ color: rgb(230, 153, 153);
453
+ background-color: rgb(75, 47, 47);
454
+ }
455
+ .highlight .gd {
456
+ color: rgb(191, 191, 191);
457
+ background-color: rgb(69, 17, 17);
458
+ }
459
+ .highlight .ge {
460
+ color: rgb(191, 191, 191);
461
+ }
462
+ .highlight .gr {
463
+ color: rgb(230, 153, 153);
464
+ }
465
+ .highlight .gh {
466
+ color: rgb(191, 191, 191);
467
+ }
468
+ .highlight .gi {
469
+ color: rgb(191, 191, 191);
470
+ background-color: rgb(17, 69, 17);
471
+ }
472
+ .highlight .go {
473
+ color: rgb(191, 191, 191);
474
+ }
475
+ .highlight .gp {
476
+ color: rgb(191, 191, 191);
477
+ }
478
+ .highlight .gu {
479
+ color: rgb(191, 191, 191);
480
+ }
481
+ .highlight .gt {
482
+ color: rgb(230, 153, 153);
483
+ }
484
+ .highlight .kc {
485
+ color: rgb(191, 191, 191);
486
+ }
487
+ .highlight .kd {
488
+ color: rgb(191, 191, 191);
489
+ }
490
+ .highlight .kn {
491
+ color: rgb(191, 191, 191);
492
+ }
493
+ .highlight .kp {
494
+ color: rgb(191, 191, 191);
495
+ }
496
+ .highlight .kr {
497
+ color: rgb(191, 191, 191);
498
+ }
499
+ .highlight .kt {
500
+ color: rgb(170, 181, 212);
501
+ }
502
+ .highlight .k, .highlight .kv {
503
+ color: rgb(191, 191, 191);
504
+ }
505
+ .highlight .mf {
506
+ color: rgb(153, 230, 230);
507
+ }
508
+ .highlight .mh {
509
+ color: rgb(153, 230, 230);
510
+ }
511
+ .highlight .il {
512
+ color: rgb(153, 230, 230);
513
+ }
514
+ .highlight .mi {
515
+ color: rgb(153, 230, 230);
516
+ }
517
+ .highlight .mo {
518
+ color: rgb(153, 230, 230);
519
+ }
520
+ .highlight .m, .highlight .mb, .highlight .mx {
521
+ color: rgb(153, 230, 230);
522
+ }
523
+ .highlight .sb {
524
+ color: rgb(230, 153, 172);
525
+ }
526
+ .highlight .sc {
527
+ color: rgb(230, 153, 172);
528
+ }
529
+ .highlight .sd {
530
+ color: rgb(230, 153, 172);
531
+ }
532
+ .highlight .s2 {
533
+ color: rgb(230, 153, 172);
534
+ }
535
+ .highlight .se {
536
+ color: rgb(230, 153, 172);
537
+ }
538
+ .highlight .sh {
539
+ color: rgb(230, 153, 172);
540
+ }
541
+ .highlight .si {
542
+ color: rgb(230, 153, 172);
543
+ }
544
+ .highlight .sx {
545
+ color: rgb(230, 153, 172);
546
+ }
547
+ .highlight .sr {
548
+ color: rgb(153, 230, 172);
549
+ }
550
+ .highlight .s1 {
551
+ color: rgb(230, 153, 172);
552
+ }
553
+ .highlight .ss {
554
+ color: rgb(230, 153, 210);
555
+ }
556
+ .highlight .s {
557
+ color: rgb(230, 153, 172);
558
+ }
559
+ .highlight .na {
560
+ color: rgb(153, 230, 230);
561
+ }
562
+ .highlight .bp {
563
+ color: rgb(191, 191, 191);
564
+ }
565
+ .highlight .nb {
566
+ color: rgb(153, 210, 230);
567
+ }
568
+ .highlight .nc {
569
+ color: rgb(170, 181, 212);
570
+ }
571
+ .highlight .no {
572
+ color: rgb(153, 230, 230);
573
+ }
574
+ .highlight .nd {
575
+ color: rgb(177, 205, 205);
576
+ }
577
+ .highlight .ni {
578
+ color: rgb(230, 153, 230);
579
+ }
580
+ .highlight .ne {
581
+ color: rgb(230, 153, 153);
582
+ }
583
+ .highlight .nf {
584
+ color: rgb(230, 153, 153);
585
+ }
586
+ .highlight .nl {
587
+ color: rgb(230, 153, 153);
588
+ }
589
+ .highlight .nn {
590
+ color: rgb(191, 191, 191);
591
+ }
592
+ .highlight .nt {
593
+ color: rgb(153, 153, 230);
594
+ }
595
+ .highlight .vc {
596
+ color: rgb(153, 230, 230);
597
+ }
598
+ .highlight .vg {
599
+ color: rgb(153, 230, 230);
600
+ }
601
+ .highlight .vi {
602
+ color: rgb(153, 230, 230);
603
+ }
604
+ .highlight .nv {
605
+ color: rgb(153, 230, 230);
606
+ }
607
+ .highlight .ow {
608
+ color: rgb(191, 191, 191);
609
+ }
610
+ .highlight .o {
611
+ color: rgb(191, 191, 191);
612
+ }
613
+ .highlight .w {
614
+ color: rgb(191, 191, 191);
615
+ }
616
+ .highlight {
617
+ background-color: rgb(33, 33, 33);
618
+ }
619
+ }
620
+