docula 0.5.5 → 0.6.0

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,446 @@
1
+ * {
2
+ margin: 0;
3
+ box-sizing: border-box;
4
+ }
5
+
6
+ .hidden {
7
+ display: none;
8
+ }
9
+
10
+ .fixed {
11
+ position: fixed;
12
+ top: 0;
13
+ width: 100%;
14
+ }
15
+
16
+ body {
17
+ position: relative;
18
+ font-family: var(--font-family);
19
+ color: var(--color-text);
20
+ font-size: 1rem;
21
+ background-color: var(--background);
22
+ min-height: 100vh;
23
+ }
24
+
25
+ a {
26
+ text-decoration: none;
27
+ color: inherit;
28
+ }
29
+
30
+ button {
31
+ font-family: var(--font-family);
32
+ font-size: 0.875rem;
33
+ }
34
+
35
+ .bottom {
36
+ z-index: -12;
37
+ }
38
+
39
+ hr {
40
+ border-top: 0;
41
+ border-bottom: 1px solid var(--border);
42
+ margin: 0.75rem 0;
43
+ }
44
+
45
+
46
+ /* Home */
47
+ .home-hero {
48
+ background-color: var(--home-background);
49
+ text-align: center;
50
+ }
51
+
52
+ .home-hero img {
53
+ width: 100%;
54
+ max-width: 12.5rem;
55
+ }
56
+
57
+ .home-container {
58
+ max-width: 90%;
59
+ margin: 0 auto;
60
+ color: var(--color-text);
61
+ }
62
+
63
+ .home-title {
64
+ text-align: center;
65
+ margin-bottom: 2rem;
66
+ font-size: 1.875rem;
67
+ background: linear-gradient(30deg, var(--color-primary) 40%, var(--color-secondary-dark) 70%);
68
+ background-clip: text;
69
+ -webkit-background-clip: text;
70
+ color: transparent;
71
+ }
72
+
73
+ .content-container {
74
+ margin: 6rem 0;
75
+ }
76
+
77
+ .facepile-container {
78
+ display: flex;
79
+ flex-wrap: wrap;
80
+ justify-content: center;
81
+ }
82
+
83
+ .facepile {
84
+ line-height: 2;
85
+ padding: 0 0 0 1.5rem;
86
+ }
87
+
88
+ .facepile > a {
89
+ display: inline-block;
90
+ margin-left: -1.5rem;
91
+ transition: opacity .3s;
92
+ opacity: .9;
93
+ color: var(--background);
94
+ }
95
+
96
+ .facepile img {
97
+ border-radius: 50%;
98
+ width: calc(1.875rem + 5vw);
99
+ height: calc(1.875rem + 5vw);
100
+ max-width: 3.75rem;
101
+ max-height: 3.75rem;
102
+ margin-bottom: 6px;
103
+ background-color: #ffffff;
104
+ border: 2px solid;
105
+ transition: border .3s;
106
+ object-fit: cover;
107
+ vertical-align: middle;
108
+ display: inline-block;
109
+ }
110
+
111
+ .facepile > a:hover {
112
+ opacity: 1;
113
+ position: relative;
114
+ z-index: 1;
115
+ }
116
+
117
+ .release {
118
+ overflow: hidden;
119
+ width: 100%;
120
+ line-break: anywhere;
121
+ margin-top: 2rem;
122
+ color: var(--color-text);
123
+ }
124
+
125
+ .release-header {
126
+ margin-bottom: 1rem;
127
+ }
128
+
129
+ .release-title {
130
+ font-size: 1.375rem;
131
+ color: var(--color-primary);
132
+ font-weight: 700;
133
+ transition: color .3s;
134
+ display: block;
135
+ }
136
+
137
+ .release-title:hover {
138
+ color: var(--color-secondary-dark);
139
+ }
140
+
141
+ .release-date {
142
+ font-size: 0.75rem;
143
+ }
144
+
145
+ .release-btn {
146
+ padding: 0.75rem;
147
+ border-radius: 0.5rem;
148
+ border: 2px solid var(--color-secondary);
149
+ color: var(--color-secondary);
150
+ width: fit-content;
151
+ margin-top: 2rem;
152
+ display: block;
153
+ }
154
+
155
+ .release-btn span {
156
+ margin-left: 0.5rem;
157
+ font-size: 0.75rem;
158
+ transition: margin-left .3s;
159
+ }
160
+
161
+ .release-btn:hover span {
162
+ margin-left: 1rem;
163
+ }
164
+
165
+ .release-body p {
166
+ margin: 0.5rem 0;
167
+ }
168
+
169
+ .release-body pre {
170
+ margin-bottom: 2rem;
171
+ }
172
+
173
+ .release-body h1 {
174
+ font-size: 1.375rem;
175
+ margin-bottom: 1rem;
176
+ }
177
+
178
+ .release-body h2 {
179
+ font-size: 1.125rem;
180
+ margin-top: 1.75rem;
181
+ margin-bottom: 1rem;
182
+ }
183
+
184
+ .release-body ul {
185
+ padding-left: 1rem;
186
+ }
187
+
188
+ .release-body ul > li {
189
+ margin-bottom: 0.75rem;
190
+ }
191
+
192
+ .release-body ul > li a {
193
+ text-decoration: underline;
194
+ }
195
+
196
+ .github-fork-ribbon {
197
+ position: fixed !important;
198
+ }
199
+
200
+ .github-fork-ribbon:before {
201
+ background-color: var(--color-primary) !important;
202
+ }
203
+
204
+ footer {
205
+ height: 4rem;
206
+ display: flex;
207
+ justify-content: center;
208
+ align-items: center;
209
+ border-top: 1px solid var(--border);
210
+ width: 100%;
211
+ }
212
+
213
+ footer img {
214
+ margin-left: 0.5rem;
215
+ margin-top: 0.25rem;
216
+ }
217
+
218
+ .items-start {
219
+ display: flex;
220
+ justify-content: space-between;
221
+ align-items: flex-start;
222
+ margin-bottom: 0.25rem;
223
+ }
224
+
225
+ .content {
226
+ width: 100%;
227
+ }
228
+
229
+ .content h1 {
230
+ letter-spacing: -.5px;
231
+ font-weight: 700;
232
+ font-size: 1.5rem;
233
+ line-height: 3rem;
234
+ }
235
+
236
+ .content h2 {
237
+ font-size: 1.25rem;
238
+ line-height: 2rem;
239
+ padding-top: 4.25rem;
240
+ margin-bottom: 0;
241
+ font-weight: 600;
242
+ }
243
+
244
+ .content h3 {
245
+ font-size: 1.125rem;
246
+ line-height: 1.5rem;
247
+ padding-top: 3rem;
248
+ margin-bottom: 0;
249
+ font-weight: 600;
250
+ }
251
+
252
+ .content h4, .content h5, .content h6 {
253
+ padding-top: 1.875rem;
254
+ }
255
+
256
+ .content h4, .content h5, .content h6 {
257
+ font-weight: 600;
258
+ }
259
+
260
+ .content p {
261
+ margin-top: 1rem;
262
+ line-height: 1.5rem;
263
+ }
264
+
265
+
266
+ .content > ul, .content > ol {
267
+ margin-top: 0.75rem;
268
+ padding-left: 1rem;
269
+ }
270
+
271
+ .content > ul {
272
+ list-style: none;
273
+ }
274
+
275
+ .content > ul li, .content > ol li {
276
+ margin: 0.5rem 0;
277
+ }
278
+
279
+ .content > ul li::before {
280
+ content: "\2022";
281
+ text-indent: -1rem;
282
+ display: inline-block;
283
+ color: var(--color-secondary);
284
+ float: left;
285
+ }
286
+
287
+ .content li {
288
+ line-height: 1.5;
289
+ }
290
+
291
+ .content pre {
292
+ margin-top: 1.375rem;
293
+ margin-bottom: 2rem;
294
+ }
295
+
296
+ .content a > code , code {
297
+ padding: 0.25rem 0.5rem;
298
+ border-radius: 2px;
299
+ background-color: var(--code);
300
+ }
301
+
302
+ .content table {
303
+ margin: 1rem 0;
304
+ display: block;
305
+ overflow-x: auto;
306
+ white-space: nowrap;
307
+ }
308
+
309
+ .content table thead {
310
+ color: var(--color-primary);
311
+ }
312
+
313
+ .content table, tr, td {
314
+ border: none;
315
+ }
316
+
317
+ .content table td {
318
+ max-width: 12.5rem;
319
+ min-width: 7.5rem;
320
+ white-space: initial;
321
+ overflow-wrap: break-word;
322
+ word-wrap: break-word;
323
+ word-break: break-word;
324
+ }
325
+
326
+ .content tr {
327
+ border-bottom: 1px;
328
+ border-color: rgba(90,94,154,.1);
329
+ border-style: solid;
330
+ }
331
+
332
+ .content tr td, .content tr th {
333
+ vertical-align: middle;
334
+ text-align: left;
335
+ }
336
+
337
+ .content tr th, .content tr td{
338
+ padding: 1rem;
339
+ }
340
+
341
+ .content tr th:first-child, .content tr td:first-child {
342
+ padding-left: 0;
343
+ }
344
+
345
+ .content table tbody tr td:first-child {
346
+ width: 6.125rem;
347
+ }
348
+
349
+ @media screen and (min-width: 576px) {
350
+ .content h2 {
351
+ font-size: 1.5rem;
352
+ }
353
+ }
354
+
355
+ @media screen and (min-width: 640px) {
356
+ .home-container {
357
+ max-width: 82%;
358
+ }
359
+ }
360
+
361
+ @media screen and (min-width: 768px) {
362
+ .home-hero img {
363
+ max-width: 21.25rem;
364
+ }
365
+ .release {
366
+ margin-bottom: 4rem;
367
+ }
368
+ .versions-container {
369
+ margin: 4.5rem 0;
370
+ }
371
+ .content-container {
372
+ margin: 6rem 0;
373
+ }
374
+ .content h1 {
375
+ font-size: 1.875rem;
376
+ }
377
+ }
378
+
379
+ @media screen and (min-width: 992px) {
380
+ .hide-d {
381
+ display: none;
382
+ }
383
+ .home-hero img {
384
+ max-width: 37.5rem;
385
+ }
386
+ .home-container {
387
+ max-width: 70%;
388
+ }
389
+ .home-title {
390
+ margin-bottom: 4rem;
391
+ font-size: 3rem;
392
+ }
393
+ .content-container {
394
+ margin: 7.5rem 0;
395
+ }
396
+ .content h1 {
397
+ font-size: 1.9rem;
398
+ }
399
+ .content > ul, .content > ol {
400
+ padding-left: 2rem;
401
+ }
402
+ .content table td {
403
+ max-width: 23.75rem;
404
+ }
405
+ .release-btn {
406
+ margin-top: 0;
407
+ }
408
+ footer {
409
+ height: 4.75rem;
410
+ }
411
+ footer img {
412
+ height: 1.75rem;
413
+ width: auto;
414
+ }
415
+ }
416
+
417
+ @media screen and (min-width: 1200px) {
418
+ .home-container {
419
+ max-width: 59.25rem;
420
+ }
421
+ .content-container {
422
+ margin: 10rem 0;
423
+ }
424
+ .facepile > a {
425
+ margin-left: -1.9rem;
426
+ }
427
+ .facepile img {
428
+ max-width: 4.4rem;
429
+ max-height: 4.4rem;
430
+ }
431
+ .versions-container {
432
+ margin: 7.5rem 0;
433
+ }
434
+ }
435
+
436
+ @media screen and (min-width: 1458px) {
437
+ .content {
438
+ max-width: 46.75rem;
439
+ }
440
+ }
441
+
442
+ @media screen and (min-width: 2400px) {
443
+ .content {
444
+ max-width: 55rem;
445
+ }
446
+ }