You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
1.6 KiB

  1. .docs-nav {
  2. margin: 20px 0 0 0;
  3. padding: 0;
  4. list-style: none;
  5. }
  6. .docs-nav li {
  7. display: block;
  8. margin-bottom: 10px;
  9. }
  10. .docs-nav li.nav-header {
  11. color: #333;
  12. font-weight: bold;
  13. }
  14. li + li.nav-header {
  15. margin-top: 20px;
  16. }
  17. .docs-nav li.active > a {
  18. font-weight: bold;
  19. }
  20. .docs-nav ul {
  21. margin: 0 0 0 20px;
  22. padding: 0;
  23. list-style: none;
  24. }
  25. .curl-opts th {
  26. white-space: nowrap;
  27. font-family: monospace;
  28. }
  29. .docs-heading {
  30. margin-top: 40px;
  31. }
  32. h2.rule {
  33. border-top: 3px solid #eee;
  34. margin-top: 30px;
  35. padding-top: 30px;
  36. }
  37. h3.api-section {
  38. font-size: 14px;
  39. font-weight: bold;
  40. margin: 20px 0;
  41. }
  42. h3.docs-example {
  43. margin-top: 40px;
  44. }
  45. .api-path {
  46. font-family: monospace;
  47. font-weight: bold;
  48. margin-bottom: 1em;
  49. background: #f5f5f5;
  50. color: #333;
  51. display: inline-block;
  52. padding: 2px 4px;
  53. border-radius: 2px;
  54. }
  55. a.section {
  56. color: #000;
  57. text-decoration: none;
  58. }
  59. a.section:hover {
  60. text-decoration: none;
  61. }
  62. .page-docs code {
  63. padding: 2px 4px;
  64. font-size: 90%;
  65. color: #333;
  66. background-color: #f5f5f5;
  67. border-radius: 4px;
  68. }
  69. .docs-content, .docs-content .table td {
  70. line-height: 1.8;
  71. }
  72. .docs-content h1 {
  73. font-size: 24px;
  74. font-weight: bold;
  75. }
  76. .docs-content h2 {
  77. margin-top: 30px;
  78. font-weight: bold;
  79. }
  80. .docs-content ul {
  81. padding-left: 15px;
  82. }
  83. .docs-content li {
  84. margin-left: 0;
  85. }
  86. .docs-content img {
  87. max-width: 66%;
  88. border: 6px solid #DDD;
  89. }
  90. @media (max-width: 992px) {
  91. .docs-content img {
  92. max-width: 100%;
  93. }
  94. }