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. max-width: 900px;
  42. }
  43. table.moduleTable td{
  44. min-width: 80px;
  45. padding:2px 5px 2px 5px;
  46. height:35px;
  47. }
  48. table.moduleTable tr{
  49. border:1px solid #eeeeee;
  50. vertical-align: top;
  51. }
  52. tr.header {
  53. color: #1f3350;
  54. background-color: #cccccc;
  55. border-bottom:1px solid #999999 !important;
  56. font-size:16px;
  57. font-style:italic;
  58. }
  59. td.mid {
  60. background-color: rgba(0,0,0,0.035);
  61. font-style:italic;
  62. }
  63. td.properties {
  64. width:150px;
  65. }
  66. p {
  67. min-width:400px;
  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. pre.top {
  79. margin-left:20px;
  80. }
  81. tr.hidden {
  82. max-height:0;
  83. /*max-height: 0;*/
  84. overflow: hidden;
  85. }
  86. tr.visible {
  87. /* Set our transitions up. */
  88. -webkit-animation:
  89. fadeIn 250ms ease-in;
  90. }
  91. @-webkit-keyframes fadeIn {
  92. 0% {
  93. opacity: 0;
  94. }
  95. 100% {
  96. opacity: 1;
  97. }
  98. }
  99. span.caret {
  100. opacity: 0.5;
  101. }
  102. span.right-caret {
  103. border-bottom: 4px solid transparent;
  104. border-top: 4px solid transparent;
  105. border-left: 4px solid #000000;
  106. display: inline-block;
  107. height: 0;
  108. opacity: 0.5;
  109. vertical-align: top;
  110. width: 0;
  111. margin-left:5px;
  112. margin-top:6px;
  113. }
  114. tr.toggle {
  115. -webkit-touch-callout: none;
  116. -webkit-user-select: none;
  117. -khtml-user-select: none;
  118. -moz-user-select: none;
  119. -ms-user-select: none;
  120. user-select: none;
  121. cursor:pointer;
  122. }
  123. tr.toggle.collapsible {
  124. background-color: #f7f7f7;
  125. border-left: 3px solid #89b3ff;
  126. }
  127. td.indent {
  128. padding-left:25px !important;
  129. }
  130. td.indent2 {
  131. padding-left:50px !important;
  132. }
  133. td.name {
  134. width:230px;
  135. }
  136. td.nameSmall {
  137. width:150px;
  138. }
  139. td.type {
  140. width: 110px;
  141. }
  142. td.default {
  143. width:60px;
  144. }
  145. td.eventProperties {
  146. width:150px;
  147. }
  148. td.methodName {
  149. width:250px;
  150. }
  151. pre.options {
  152. max-width:600px;
  153. }
  154. pre.hidden {
  155. display:none;
  156. }