doccoli-jekyll 1.1.6 → 1.1.7

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,198 @@
1
+ /* Header */
2
+
3
+ .mast {
4
+ text-overflow: ellipsis;
5
+ width: 100%;
6
+ z-index: 19999;
7
+ }
8
+
9
+ .bar {
10
+ clear: both;
11
+ position: relative;
12
+ width: 100%;
13
+ height: 45px;
14
+ margin: 0 auto;
15
+ }
16
+
17
+ .sprite-up {
18
+ background-image: url(images/logo.svg);
19
+ background-position: 44px 44px;
20
+ }
21
+
22
+ .logo {
23
+ background-repeat: no-repeat;
24
+ height: 44px;
25
+ width: 65px;
26
+ background-position: center;
27
+ }
28
+
29
+
30
+ /* In-logo Ajax loader */
31
+
32
+ .loader {
33
+ animation: loading 1s linear infinite;
34
+ box-sizing: content-box;
35
+ width: 20px;
36
+ height: 20px;
37
+ border: 5px solid;
38
+ border-top-color: #f9ff00;
39
+ border-left-color: #ef730c;
40
+ border-bottom-color: #445aff;
41
+ border-right-color: #0da;
42
+ border-radius: 50%;
43
+ margin: 32px -44px;
44
+ }
45
+
46
+ @keyframes loading {
47
+ 0% {
48
+ transform: translate(-9px, -25px) rotate(0deg);
49
+ }
50
+ 100% {
51
+ transform: translate(-9px, -25px) rotate(360deg);
52
+ }
53
+ }
54
+
55
+ .offline {
56
+ -webkit-filter: grayscale(1);
57
+ filter: grayscale(1);
58
+ }
59
+
60
+ .offline.logo {
61
+ animation: loading 2s linear infinite;
62
+ box-sizing: content-box;
63
+ width: 20px;
64
+ height: 20px;
65
+ border: 5px solid;
66
+ border-left-color: transparent;
67
+ border-right-color: transparent;
68
+ border-radius: 50%;
69
+ margin: 32px 8px 0 24px;
70
+ }
71
+
72
+ .beta-label {
73
+ margin: 8px 0 0 -16px;
74
+ transform: rotate(90deg);
75
+ color: #777;
76
+ }
77
+
78
+ .page-label {
79
+ padding: 11px 15px;
80
+ width: 90px;
81
+ }
82
+
83
+ .navi-menu {
84
+ li {
85
+ a:hover,
86
+ &#active a:hover,
87
+ &.selected a:hover {
88
+ color: #1177ff;
89
+ }
90
+ }
91
+ >menu li a {
92
+ display: block;
93
+ }
94
+ white-space: nowrap;
95
+ menu {
96
+ white-space: nowrap;
97
+ height: 45px;
98
+ }
99
+ li {
100
+ &#active {
101
+ background-position: left center;
102
+ background-repeat: no-repeat;
103
+ }
104
+ a {
105
+ /* font-weight: 700; */
106
+ line-height: 44px;
107
+ padding: 13px 20px;
108
+ color: #555;
109
+ }
110
+ }
111
+ }
112
+
113
+ .bar-line {
114
+ border-bottom: 1px solid #eaeaea;
115
+ }
116
+
117
+ .element {
118
+ display: flex;
119
+ height: 44px;
120
+ padding: 0 10px;
121
+ align-items: center;
122
+ justify-content: center;
123
+ }
124
+
125
+ .divider {
126
+ border-left: 1px solid #eaeaea;
127
+ }
128
+
129
+ .transparent-white {
130
+ background-color: rgba(255, 255, 255, 0.85);
131
+ }
132
+
133
+ .super-small {
134
+ font-size: 70%;
135
+ }
136
+
137
+ .search {
138
+ width: 130px;
139
+ margin: 1px auto auto 9px;
140
+ padding: 0 0 0 26px;
141
+ height: 44px;
142
+ outline: 0 !important;
143
+ border: none;
144
+ display: block;
145
+ background: transparent none;
146
+ background-image: url(images/search.svg);
147
+ background-position-x: left;
148
+ background-position-y: center;
149
+ background-repeat: no-repeat;
150
+ background-size: 24px 24px;
151
+ }
152
+
153
+ ul#results-container {
154
+ position: absolute;
155
+ top: 45px;
156
+ left: 0;
157
+ background: aliceblue;
158
+ li {
159
+ width: inherit;
160
+ display: flex;
161
+ margin-bottom: 1px;
162
+ background: aliceblue;
163
+ a {
164
+ color: #444;
165
+ padding: 7px 10px;
166
+ width: inherit;
167
+ &:hover {
168
+ color: #1177FF;
169
+ border-color: #1177FF;
170
+ background-color: aliceblue;
171
+ }
172
+ }
173
+ }
174
+ }
175
+
176
+ @media (orientation: portrait) {
177
+ body {
178
+ ul#results-container {
179
+ margin: 0 5vw;
180
+ width: 90vw;
181
+ }
182
+ }
183
+ }
184
+
185
+ @media (orientation: landscape) {
186
+ body {
187
+ ul#results-container {
188
+ margin: 0 85px;
189
+ width: 500px;
190
+ }
191
+ }
192
+ }
193
+
194
+ a.gray {
195
+ color: #777 !important;
196
+ font-style: italic;
197
+ pointer-events: none;
198
+ }
@@ -0,0 +1,566 @@
1
+ article,
2
+ aside,
3
+ details,
4
+ footer,
5
+ header,
6
+ hgroup,
7
+ main,
8
+ nav,
9
+ section,
10
+ summary {
11
+ display: block;
12
+ }
13
+
14
+ html {
15
+ font-size: 100%;
16
+ -ms-text-size-adjust: 100%;
17
+ -webkit-text-size-adjust: 100%;
18
+ font-size: 1em;
19
+ line-height: 1.4;
20
+ text-rendering: optimizelegibility;
21
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
22
+ -webkit-backface-visibility: hidden;
23
+ }
24
+
25
+ body {
26
+ color: rgba(0, 0, 0, 0.85);
27
+ margin: 0;
28
+ font-family: 'EB Garamond', serif;
29
+ font-smooth: always;
30
+ -webkit-font-smoothing: subpixel-antialiased;
31
+ text-rendering: optimizelegibility;
32
+ font-display: swap;
33
+ font-display: optional;
34
+ -moz-osx-font-smoothing: grayscale;
35
+ -webkit-osx-font-smoothing: antialiased;
36
+ background: aliceblue;
37
+ }
38
+
39
+ /* Anchors */
40
+
41
+ a {
42
+ color: #1177FF;
43
+ text-decoration: none;
44
+ text-rendering: optimizelegibility;
45
+ outline: 0;
46
+ &:focus,
47
+ &:active,
48
+ &:hover {
49
+ outline: 0;
50
+ }
51
+ }
52
+
53
+
54
+ /* Typography */
55
+
56
+ h1,
57
+ h2,
58
+ h3,
59
+ h4,
60
+ h5,
61
+ h6 {
62
+ margin: 0;
63
+ font-family: monospace;
64
+ }
65
+
66
+ h1 {
67
+ font-size: 280%;
68
+ font-weight: normal;
69
+ }
70
+
71
+ h2 {
72
+ font-size: 200%;
73
+ font-weight: normal;
74
+ }
75
+
76
+ h3 {
77
+ font-size: 150%;
78
+ }
79
+
80
+ h4 {
81
+ font-size: 125%;
82
+ }
83
+
84
+ h5 {
85
+ font-size: 110%;
86
+ }
87
+
88
+ h6 {
89
+ font-size: 100%;
90
+ }
91
+
92
+ b,
93
+ strong {
94
+ font-weight: bold;
95
+ }
96
+
97
+ hr {
98
+ -moz-box-sizing: content-box;
99
+ box-sizing: content-box;
100
+ display: block;
101
+ height: 1px;
102
+ border: 0;
103
+ border-top: 2px solid #1177FF;
104
+ margin: 1em 0;
105
+ padding: 0;
106
+ }
107
+
108
+ p {
109
+ margin: .8em 0;
110
+ }
111
+
112
+ menu,
113
+ ul,
114
+ ol {
115
+ margin: 0;
116
+ padding: 0;
117
+ }
118
+
119
+ menu,
120
+ ul {
121
+ list-style-image: none;
122
+ list-style: none;
123
+ }
124
+
125
+ nav ul {
126
+ list-style: none;
127
+ list-style-image: none;
128
+ }
129
+
130
+ img {
131
+ border: 0;
132
+ -ms-interpolation-mode: bicubic;
133
+ }
134
+
135
+
136
+ /* Code formatting */
137
+
138
+ pre,
139
+ code {
140
+ border: 1px solid #e8e8e8;
141
+ border-radius: 3px;
142
+ background-color: #eff;
143
+ }
144
+
145
+ code {
146
+ padding: 1px 5px;
147
+ }
148
+
149
+ pre {
150
+ padding: 8px 12px;
151
+ overflow-x: auto;
152
+ >code {
153
+ border: 0;
154
+ padding-right: 0;
155
+ padding-left: 0;
156
+ }
157
+ }
158
+
159
+ blockquote {
160
+ color: #333;
161
+ border-left: 10px solid #1177FF;
162
+ letter-spacing: -1px;
163
+ padding: 0.8em;
164
+ margin: 2em auto;
165
+ font-style: italic;
166
+ background: #fffafa;
167
+ > :last-child {
168
+ margin-bottom: 0.8em;
169
+ }
170
+ }
171
+
172
+
173
+ /*-- Coloring pseudos text selection/inactive state. Sooth! :D --*/
174
+
175
+ * {
176
+ box-sizing: border-box;
177
+ &:after {
178
+ box-sizing: border-box;
179
+ }
180
+ &:before {
181
+ box-sizing: border-box;
182
+ }
183
+ }
184
+
185
+ ::-moz-selection {
186
+ background: #a7d7ff;
187
+ color: #000;
188
+ text-shadow: none;
189
+ }
190
+
191
+ ::selection {
192
+ background: #a7d7ff;
193
+ color: #000;
194
+ text-shadow: none;
195
+ &:window-inactive {
196
+ background: #eaeaea;
197
+ color: #000;
198
+ }
199
+ }
200
+
201
+ input:-webkit-autofill {
202
+ -webkit-box-shadow: 0 0 1000px #FBFBFB inset;
203
+ }
204
+
205
+ ::-webkit-input-placeholder {
206
+ color: #444 !important;
207
+ font-size: 11px;
208
+ }
209
+
210
+ :-moz-placeholder {
211
+ color: #444 !important;
212
+ font-size: 13px;
213
+ }
214
+
215
+ ::-moz-placeholder {
216
+ color: #444 !important;
217
+ font-size: 13px;
218
+ }
219
+
220
+ :-ms-input-placeholder {
221
+ color: #444 !important;
222
+ font-size: 13px;
223
+ }
224
+
225
+ table {
226
+ border-collapse: collapse;
227
+ border-spacing: 0;
228
+ }
229
+
230
+ td,
231
+ th {
232
+ padding: 1vw;
233
+ vertical-align: top;
234
+ }
235
+
236
+
237
+ /* Element Positioning */
238
+
239
+ .container {
240
+ margin: 46px 0 0 0;
241
+ background: white;
242
+ }
243
+
244
+ .wrapper {
245
+ margin: 0 auto;
246
+ text-align: justify;
247
+ }
248
+
249
+ .left {
250
+ float: left;
251
+ left: 0;
252
+ }
253
+
254
+ .right {
255
+ float: right;
256
+ right: 0;
257
+ }
258
+
259
+ .center {
260
+ text-align: center;
261
+ margin: 0 auto;
262
+ }
263
+
264
+ .centerize {
265
+ margin: 0 auto;
266
+ }
267
+
268
+ .fixed {
269
+ position: fixed;
270
+ will-change: transform;
271
+ transform: translateZ(0);
272
+ }
273
+
274
+ .top {
275
+ top: 0;
276
+ }
277
+
278
+ .bottom {
279
+ bottom: 0px;
280
+ }
281
+
282
+ .absolute-center {
283
+ margin: auto;
284
+ position: absolute;
285
+ top: 0;
286
+ left: 0;
287
+ bottom: 0;
288
+ right: 0;
289
+ }
290
+
291
+ .flex {
292
+ display: flex;
293
+ flex-wrap: wrap;
294
+ align-items: center;
295
+ justify-content: center;
296
+ }
297
+
298
+ .fold {
299
+ min-height: calc(90vh - 45px);
300
+ max-width: 100vw;
301
+ overflow-x: hidden;
302
+ -webkit-overflow-scrolling: touch;
303
+ }
304
+
305
+
306
+ /* -- Push aside, out & away ---*/
307
+
308
+ .side-gap {
309
+ margin-right: .5em;
310
+ margin-left: .5em;
311
+ }
312
+
313
+ .top-gap {
314
+ margin-top: .5em;
315
+ }
316
+
317
+ .double-top-gap {
318
+ margin-top: 1em;
319
+ }
320
+
321
+ .bottom-gap {
322
+ margin-bottom: 1em;
323
+ }
324
+
325
+ .double-bottom-gap {
326
+ margin-bottom: 2em;
327
+ }
328
+
329
+ .pad {
330
+ padding: 0.5em 1em;
331
+ }
332
+
333
+ .pad-vertically {
334
+ padding: 1em 0;
335
+ }
336
+
337
+ .pad-horizontally {
338
+ padding: 0 1em;
339
+ }
340
+
341
+
342
+ /* -- Text --*/
343
+
344
+ .justify {
345
+ text-align: justify;
346
+ }
347
+
348
+ .uppercase {
349
+ text-transform: uppercase;
350
+ }
351
+
352
+ .lowercase {
353
+ text-transform: lowercase;
354
+ }
355
+
356
+ .camelcase {
357
+ text-transform: capitalize;
358
+ }
359
+
360
+ .italics {
361
+ font-style: italic;
362
+ }
363
+
364
+ menu.horizontal-list li,
365
+ ul.horizontal-list li {
366
+ float: left;
367
+ }
368
+
369
+ .will-change {
370
+ will-change: transform;
371
+ transform: translate3d(0, 0, 0);
372
+ }
373
+
374
+ .unpointable {
375
+ pointer-events: none;
376
+ }
377
+
378
+ .pointable {
379
+ pointer-events: auto;
380
+ }
381
+
382
+ .ir {
383
+ background-color: transparent;
384
+ border: 0;
385
+ overflow: hidden;
386
+ *text-indent: -9999px;
387
+ &:before {
388
+ content: "";
389
+ display: block;
390
+ width: 0;
391
+ height: 150%;
392
+ }
393
+ }
394
+
395
+ .hidden {
396
+ display: none !important;
397
+ visibility: hidden;
398
+ }
399
+
400
+ .visuallyhidden {
401
+ border: 0;
402
+ clip: rect(0 0 0 0);
403
+ height: 1px;
404
+ margin: -1px;
405
+ overflow: hidden;
406
+ padding: 0;
407
+ position: absolute;
408
+ width: 1px;
409
+ &.focusable {
410
+ &:active,
411
+ &:focus {
412
+ clip: auto;
413
+ height: auto;
414
+ margin: 0;
415
+ overflow: visible;
416
+ position: static;
417
+ width: auto;
418
+ }
419
+ }
420
+ }
421
+
422
+ .invisible {
423
+ visibility: hidden;
424
+ }
425
+
426
+ .clearfix {
427
+ &:before {
428
+ content: " ";
429
+ display: table;
430
+ }
431
+ &:after {
432
+ content: " ";
433
+ display: table;
434
+ clear: both;
435
+ }
436
+ *zoom: 1;
437
+ }
438
+
439
+ @media (orientation: portrait) {
440
+ body {
441
+ .hide-on-mobiles {
442
+ display: none;
443
+ }
444
+ .display-on-mobiles {
445
+ display: inline-block;
446
+ }
447
+ .divide-in-half {
448
+ width: 90vw;
449
+ }
450
+ .one-half {
451
+ width: 100%;
452
+ }
453
+ .one-third {
454
+ width: 100%;
455
+ }
456
+ .two-third {
457
+ width: 100%;
458
+ }
459
+ .shrink {
460
+ width: 95%;
461
+ }
462
+ .align {
463
+ margin: 0 auto;
464
+ text-align: center;
465
+ }
466
+
467
+ }
468
+ }
469
+
470
+ @media (orientation: landscape) {
471
+ body {
472
+ .hide-on-mobiles {
473
+ display: marker;
474
+ }
475
+ .display-on-mobiles {
476
+ display: none;
477
+ }
478
+ .divide-in-half {
479
+ width: 50vw;
480
+ }
481
+ .one-half {
482
+ width: 50%;
483
+ }
484
+ .one-third {
485
+ width: 33.33333%;
486
+ }
487
+ .two-third {
488
+ width: 66.66666%;
489
+ }
490
+ .shrink {
491
+ width: 90%;
492
+ }
493
+ .align {
494
+ margin: 0 0;
495
+ }
496
+ .container {
497
+ width: calc(100vw - 208px);
498
+ margin-left: 208px;
499
+ }
500
+ }
501
+ }
502
+
503
+ @media print,
504
+ (-o-min-device-pixel-ratio: 5 / 4),
505
+ (-webkit-min-device-pixel-ratio: 1.25),
506
+ (min-resolution: 120dpi) {
507
+ /* Style adjustments for high resolution devices */
508
+ }
509
+
510
+ @media print {
511
+ * {
512
+ background: transparent !important;
513
+ color: #000 !important;
514
+ box-shadow: none !important;
515
+ text-shadow: none !important;
516
+ }
517
+ a {
518
+ text-decoration: underline;
519
+ &:visited {
520
+ text-decoration: underline;
521
+ }
522
+ &[href]:after {
523
+ content: " (" attr(href) ")";
524
+ }
525
+ }
526
+ abbr[title]:after {
527
+ content: " (" attr(title) ")";
528
+ }
529
+ .ir a:after {
530
+ content: "";
531
+ }
532
+ a {
533
+ &[href^="javascript:"]:after,
534
+ &[href^="#"]:after {
535
+ content: "";
536
+ }
537
+ }
538
+ pre,
539
+ blockquote {
540
+ border: 1px solid #999;
541
+ page-break-inside: avoid;
542
+ }
543
+ thead {
544
+ display: table-header-group;
545
+ }
546
+ tr {
547
+ page-break-inside: avoid;
548
+ }
549
+ img {
550
+ page-break-inside: avoid;
551
+ max-width: 100% !important;
552
+ }
553
+ @page {
554
+ margin: 0.5cm;
555
+ }
556
+ p,
557
+ h2,
558
+ h3 {
559
+ orphans: 3;
560
+ widows: 3;
561
+ }
562
+ h2,
563
+ h3 {
564
+ page-break-after: avoid;
565
+ }
566
+ }