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.

191 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. */
  78. table.properties td:nth-child(2),
  79. table.properties td:nth-child(3),
  80. table.options td:nth-child(2),
  81. table.options td:nth-child(3),
  82. table.methods td:nth-child(2),
  83. table.methods td:nth-child(2),
  84. table.events td:nth-child(2) {
  85. background-color: #f5f5f5;
  86. font-style: italic;
  87. }
  88. pre {
  89. margin: 20px 0;
  90. }
  91. a code {
  92. text-decoration: underline;
  93. }
  94. /*pre.top {*/
  95. /*margin-left:20px;*/
  96. /*}*/
  97. tr.hidden {
  98. max-height:0;
  99. /*max-height: 0;*/
  100. overflow: hidden;
  101. }
  102. tr.visible {
  103. /* Set our transitions up. */
  104. -webkit-animation:
  105. fadeIn 250ms ease-in;
  106. }
  107. @-webkit-keyframes fadeIn {
  108. 0% {
  109. opacity: 0;
  110. }
  111. 100% {
  112. opacity: 1;
  113. }
  114. }
  115. span.caret {
  116. opacity: 0.5;
  117. }
  118. span.right-caret {
  119. border-bottom: 4px solid transparent;
  120. border-top: 4px solid transparent;
  121. border-left: 4px solid #000000;
  122. display: inline-block;
  123. height: 0;
  124. opacity: 0.5;
  125. vertical-align: top;
  126. width: 0;
  127. margin-left:5px;
  128. margin-top:6px;
  129. }
  130. tr.toggle {
  131. -webkit-touch-callout: none;
  132. -webkit-user-select: none;
  133. -khtml-user-select: none;
  134. -moz-user-select: none;
  135. -ms-user-select: none;
  136. user-select: none;
  137. cursor:pointer;
  138. }
  139. tr.toggle.collapsible {
  140. background-color: #f5f5f5;
  141. border-left: 3px solid #89b3ff;
  142. }
  143. td.indent {
  144. padding-left:25px !important;
  145. }
  146. td.indent2 {
  147. padding-left:50px !important;
  148. }
  149. pre.options {
  150. max-width:600px;
  151. }
  152. pre.hidden {
  153. display:none;
  154. }