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.

188 lines
2.8 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. height:100%;
  8. font-size:16px;
  9. background: url('../img/crosswordStrong.png') /* Background pattern from subtlepatterns.com */
  10. }
  11. img.icon {
  12. position:relative;
  13. top:-2px;
  14. }
  15. div.navbar-wrapper {
  16. background-color:#07508E;
  17. border-bottom: 3px solid #ffffff;
  18. font-size:16px;
  19. }
  20. div.blogHeader {
  21. margin-left:auto;
  22. margin-right:auto;
  23. text-align:center;
  24. width:910px;
  25. padding: 0px 30px 0px 30px;
  26. margin-top:-150px;
  27. color:#ffffff;
  28. text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
  29. margin-bottom:60px;
  30. }
  31. div.full {
  32. min-height:100%;
  33. box-shadow:0px 2px 10px rgba(0,0,0,0.4);
  34. padding-left:20px;
  35. padding-right:20px;
  36. background-color:#ffffff;
  37. }
  38. table.moduleTable {
  39. border:1px solid #eeeeee;
  40. font-size:14px;
  41. margin-left:20px;
  42. max-width: 900px;
  43. }
  44. table.moduleTable td{
  45. min-width: 80px;
  46. padding:2px 5px 2px 5px;
  47. height:35px;
  48. }
  49. table.moduleTable tr{
  50. border:1px solid #eeeeee;
  51. vertical-align: top;
  52. }
  53. tr.header {
  54. color: #1f3350;
  55. background-color: #cccccc;
  56. border-bottom:1px solid #999999 !important;
  57. font-size:16px;
  58. font-style:italic;
  59. }
  60. td.mid {
  61. background-color: #f7f7f7;
  62. font-style:italic;
  63. }
  64. td.properties {
  65. width:150px;
  66. }
  67. p {
  68. min-width:400px;
  69. max-width:1000px;
  70. }
  71. pre.code {
  72. padding:2px 4px;
  73. font-size:90%;
  74. color:#c7254e;
  75. background-color:#f9f2f4;
  76. border-radius:4px;
  77. border:0px;
  78. }
  79. tr.hidden {
  80. max-height:0;
  81. /*max-height: 0;*/
  82. overflow: hidden;
  83. }
  84. tr.visible {
  85. /* Set our transitions up. */
  86. -webkit-animation:
  87. fadeIn 250ms ease-in;
  88. }
  89. @-webkit-keyframes fadeIn {
  90. 0% {
  91. opacity: 0;
  92. }
  93. 100% {
  94. opacity: 1;
  95. }
  96. }
  97. span.caret {
  98. opacity: 0.5;
  99. }
  100. span.right-caret {
  101. border-bottom: 4px solid transparent;
  102. border-top: 4px solid transparent;
  103. border-left: 4px solid #000000;
  104. display: inline-block;
  105. height: 0;
  106. opacity: 0.5;
  107. vertical-align: top;
  108. width: 0;
  109. margin-left:5px;
  110. margin-top:6px;
  111. }
  112. tr.toggle {
  113. -webkit-touch-callout: none;
  114. -webkit-user-select: none;
  115. -khtml-user-select: none;
  116. -moz-user-select: none;
  117. -ms-user-select: none;
  118. user-select: none;
  119. cursor:pointer;
  120. }
  121. tr.toggle.collapsible {
  122. background-color: #f7f7f7;
  123. border-left: 3px solid #89b3ff;
  124. }
  125. td.indent {
  126. padding-left:25px !important;
  127. }
  128. td.indent2 {
  129. padding-left:50px !important;
  130. }
  131. td.name {
  132. width:230px;
  133. }
  134. td.nameSmall {
  135. width:150px;
  136. }
  137. td.type {
  138. width: 110px;
  139. }
  140. td.default {
  141. width:60px;
  142. }
  143. td.eventProperties {
  144. width:350px;
  145. }
  146. td.methodName {
  147. width:250px;
  148. }
  149. pre.options {
  150. max-width:500px;
  151. }