hdoc-tools 0.15.0 → 0.15.1
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.
package/package.json
CHANGED
@@ -386,6 +386,69 @@ video {
|
|
386
386
|
background-color: #224187;
|
387
387
|
}
|
388
388
|
|
389
|
+
.badge.badge-http-delete:after {
|
390
|
+
content: "DELETE";
|
391
|
+
white-space: nowrap;
|
392
|
+
border: solid 1px #C7004F;
|
393
|
+
background-color: #C7004F;
|
394
|
+
}
|
395
|
+
|
396
|
+
.badge.badge-http-get:after {
|
397
|
+
content: "GET";
|
398
|
+
white-space: nowrap;
|
399
|
+
border: solid 1px rgb(12, 139, 63);
|
400
|
+
background-color: rgb(12, 139, 63);
|
401
|
+
}
|
402
|
+
|
403
|
+
.badge.badge-http-head:after {
|
404
|
+
content: "HEAD";
|
405
|
+
white-space: nowrap;
|
406
|
+
border: solid 1px #51C17D;
|
407
|
+
background-color: #51C17D;
|
408
|
+
}
|
409
|
+
|
410
|
+
.badge.badge-http-options:after {
|
411
|
+
content: "OPTIONS";
|
412
|
+
white-space: nowrap;
|
413
|
+
border: solid 1px rgb(158, 28, 167);
|
414
|
+
background-color: rgb(158, 28, 167);
|
415
|
+
}
|
416
|
+
|
417
|
+
.badge.badge-http-patch:after {
|
418
|
+
content: "PATCH";
|
419
|
+
white-space: nowrap;
|
420
|
+
border: solid 1px #58178c;
|
421
|
+
background-color: #58178c;
|
422
|
+
}
|
423
|
+
|
424
|
+
.badge.badge-http-post:after {
|
425
|
+
content: "POST";
|
426
|
+
white-space: nowrap;
|
427
|
+
border: solid 1px #F18229;
|
428
|
+
background-color: #F18229;
|
429
|
+
}
|
430
|
+
|
431
|
+
.badge.badge-http-put:after {
|
432
|
+
content: "PUT";
|
433
|
+
white-space: nowrap;
|
434
|
+
border: solid 1px #1194DE;
|
435
|
+
background-color: #1194DE;
|
436
|
+
}
|
437
|
+
|
438
|
+
.badge.badge-rest:after {
|
439
|
+
content: "REST";
|
440
|
+
white-space: nowrap;
|
441
|
+
border: solid 1px #00B0E9;
|
442
|
+
background-color: #00B0E9;
|
443
|
+
}
|
444
|
+
|
445
|
+
.badge.badge-rpc:after {
|
446
|
+
content: "RPC";
|
447
|
+
white-space: nowrap;
|
448
|
+
border: solid 1px #4A536B;
|
449
|
+
background-color: #4A536B;
|
450
|
+
}
|
451
|
+
|
389
452
|
code {
|
390
453
|
font-size: 0.9em;
|
391
454
|
}
|