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.

183 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. max-width:1000px;
  69. }
  70. pre.code {
  71. padding:2px 4px;
  72. font-size:90%;
  73. color:#c7254e;
  74. background-color:#f9f2f4;
  75. border-radius:4px;
  76. border:0px;
  77. }
  78. tr.hidden {
  79. max-height:0;
  80. /*max-height: 0;*/
  81. overflow: hidden;
  82. }
  83. tr.visible {
  84. /* Set our transitions up. */
  85. -webkit-animation:
  86. fadeIn 250ms ease-in;
  87. }
  88. @-webkit-keyframes fadeIn {
  89. 0% {
  90. opacity: 0;
  91. }
  92. 100% {
  93. opacity: 1;
  94. }
  95. }
  96. span.caret {
  97. opacity: 0.5;
  98. }
  99. span.right-caret {
  100. border-bottom: 4px solid transparent;
  101. border-top: 4px solid transparent;
  102. border-left: 4px solid #000000;
  103. display: inline-block;
  104. height: 0;
  105. opacity: 0.5;
  106. vertical-align: top;
  107. width: 0;
  108. margin-left:5px;
  109. margin-top:6px;
  110. }
  111. tr.toggle {
  112. -webkit-touch-callout: none;
  113. -webkit-user-select: none;
  114. -khtml-user-select: none;
  115. -moz-user-select: none;
  116. -ms-user-select: none;
  117. user-select: none;
  118. cursor:pointer;
  119. }
  120. tr.toggle.collapsible {
  121. background-color: #f7f7f7;
  122. border-left: 3px solid #89b3ff;
  123. }
  124. td.indent {
  125. padding-left:25px !important;
  126. }
  127. td.indent2 {
  128. padding-left:50px !important;
  129. }
  130. td.name {
  131. width:230px;
  132. }
  133. td.nameSmall {
  134. width:150px;
  135. }
  136. td.type {
  137. width: 110px;
  138. }
  139. td.default {
  140. width:60px;
  141. }
  142. td.eventProperties {
  143. width:350px;
  144. }
  145. td.methodName {
  146. width:250px;
  147. }