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.

196 lines
2.9 KiB

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