vis.js is a dynamic, browser-based visualization library
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.

192 lines
3.3 KiB

  1. html {
  2. height:100%;
  3. }
  4. body {
  5. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  6. /*font-family: Lustria, Georgia, Times, "Times New Roman", serif !important;*/
  7. font-size:16px;
  8. line-height: 1.5em;
  9. background: url('../img/crosswordStrong.png') /* Background pattern from subtlepatterns.com */
  10. }
  11. h1, h2, h3, h4, h5, h6 {
  12. margin: 40px 0 20px 0;
  13. }
  14. ul {
  15. margin-top: 0.7em;
  16. margin-bottom: 0.7em;
  17. }
  18. p {
  19. margin: 20px 0;
  20. }
  21. img.icon {
  22. position:relative;
  23. top:-2px;
  24. }
  25. div.navbar-wrapper {
  26. background-color:#07508E;
  27. border-bottom: 3px solid #ffffff;
  28. font-size:16px;
  29. }
  30. div.blogHeader {
  31. margin-left:auto;
  32. margin-right:auto;
  33. text-align:center;
  34. width:910px;
  35. padding: 0px 30px 0px 30px;
  36. margin-top:-150px;
  37. color:#ffffff;
  38. text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
  39. margin-bottom:60px;
  40. }
  41. div.full {
  42. min-height:100%;
  43. box-shadow:0 2px 10px rgba(0,0,0,0.4);
  44. padding: 20px 10px 40px 10px;
  45. background-color:#ffffff;
  46. }
  47. @media (min-width: 768px) {
  48. div.full {
  49. padding: 40px 40px 80px 40px;
  50. }
  51. }
  52. @media (min-width: 992px) {
  53. div.full {
  54. padding: 80px 80px 160px 80px;
  55. }
  56. }
  57. table {
  58. }
  59. table th,
  60. table td {
  61. padding: 5px 15px;
  62. border: 1px solid #dddddd;
  63. }
  64. table th {
  65. background-color: #f5f5f5;
  66. }
  67. table td {
  68. vertical-align: top;
  69. }
  70. /*
  71. The following tables are used:
  72. - A table 'properties' with data properties. Columns: Name, Type, Required, Description
  73. - A table 'options' with configuration options. Columns: Name, Type, Default, Description
  74. - A table 'methods' with methods. Columns: Method, Return Type, Description
  75. - A table 'events' with events. Columns: Name, Properties, Description
  76. - A table 'styles' with styles. Columns: Description, Values
  77. - A table 'datatypes' with data types. Columns: Name, Description, Examples
  78. */
  79. table.properties td:nth-child(2),
  80. table.properties td:nth-child(3),
  81. table.options td:nth-child(2),
  82. table.options td:nth-child(3),
  83. table.methods td:nth-child(2),
  84. table.methods td:nth-child(2),
  85. table.events td:nth-child(2) {
  86. background-color: #f5f5f5;
  87. font-style: italic;
  88. }
  89. pre {
  90. margin: 20px 0;
  91. }
  92. a code {
  93. text-decoration: underline;
  94. }
  95. /*pre.top {*/
  96. /*margin-left:20px;*/
  97. /*}*/
  98. tr.hidden {
  99. max-height:0;
  100. /*max-height: 0;*/
  101. overflow: hidden;
  102. }
  103. tr.visible {
  104. /* Set our transitions up. */
  105. -webkit-animation:
  106. fadeIn 250ms ease-in;
  107. }
  108. @-webkit-keyframes fadeIn {
  109. 0% {
  110. opacity: 0;
  111. }
  112. 100% {
  113. opacity: 1;
  114. }
  115. }
  116. span.caret {
  117. opacity: 0.5;
  118. }
  119. span.right-caret {
  120. border-bottom: 4px solid transparent;
  121. border-top: 4px solid transparent;
  122. border-left: 4px solid #000000;
  123. display: inline-block;
  124. height: 0;
  125. opacity: 0.5;
  126. vertical-align: top;
  127. width: 0;
  128. margin-left:5px;
  129. margin-top:6px;
  130. }
  131. tr.toggle {
  132. -webkit-touch-callout: none;
  133. -webkit-user-select: none;
  134. -khtml-user-select: none;
  135. -moz-user-select: none;
  136. -ms-user-select: none;
  137. user-select: none;
  138. cursor:pointer;
  139. }
  140. tr.toggle.collapsible {
  141. background-color: #f5f5f5;
  142. border-left: 3px solid #89b3ff;
  143. }
  144. td.indent {
  145. padding-left:25px !important;
  146. }
  147. td.indent2 {
  148. padding-left:50px !important;
  149. }
  150. pre.options {
  151. max-width:600px;
  152. }
  153. pre.hidden {
  154. display:none;
  155. }