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.

227 lines
3.3 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. 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.moduleTable {
  58. }
  59. table.moduleTable th,
  60. table.moduleTable td {
  61. padding: 5px 15px;
  62. border: 1px solid #dddddd;
  63. }
  64. table.moduleTable th {
  65. background-color: #f5f5f5;
  66. }
  67. table.moduleTable td {
  68. vertical-align: top;
  69. }
  70. /* TODO: cleanup */
  71. /*tr.header {*/
  72. /*color: #1f3350;*/
  73. /*background-color: #cccccc;*/
  74. /*border-bottom:1px solid #999999 !important;*/
  75. /*font-size:16px;*/
  76. /*font-style:italic;*/
  77. /*}*/
  78. td.mid {
  79. background-color: #f5f5f5;
  80. font-style:italic;
  81. }
  82. /*td.properties {*/
  83. /*width:150px;*/
  84. /*}*/
  85. /*p {*/
  86. /*max-width:1000px;*/
  87. /*}*/
  88. /*pre.code {*/
  89. /*padding:2px 4px;*/
  90. /*font-size:90%;*/
  91. /*color: #444444;*/
  92. /*background-color:#f9f2f4;*/
  93. /*border-radius:4px;*/
  94. /*border:0;*/
  95. /*}*/
  96. pre {
  97. margin: 20px 0;
  98. }
  99. /*pre.top {*/
  100. /*margin-left:20px;*/
  101. /*}*/
  102. tr.hidden {
  103. max-height:0;
  104. /*max-height: 0;*/
  105. overflow: hidden;
  106. }
  107. tr.visible {
  108. /* Set our transitions up. */
  109. -webkit-animation:
  110. fadeIn 250ms ease-in;
  111. }
  112. @-webkit-keyframes fadeIn {
  113. 0% {
  114. opacity: 0;
  115. }
  116. 100% {
  117. opacity: 1;
  118. }
  119. }
  120. span.caret {
  121. opacity: 0.5;
  122. }
  123. span.right-caret {
  124. border-bottom: 4px solid transparent;
  125. border-top: 4px solid transparent;
  126. border-left: 4px solid #000000;
  127. display: inline-block;
  128. height: 0;
  129. opacity: 0.5;
  130. vertical-align: top;
  131. width: 0;
  132. margin-left:5px;
  133. margin-top:6px;
  134. }
  135. tr.toggle {
  136. -webkit-touch-callout: none;
  137. -webkit-user-select: none;
  138. -khtml-user-select: none;
  139. -moz-user-select: none;
  140. -ms-user-select: none;
  141. user-select: none;
  142. cursor:pointer;
  143. }
  144. tr.toggle.collapsible {
  145. background-color: #f5f5f5;
  146. border-left: 3px solid #89b3ff;
  147. }
  148. td.indent {
  149. padding-left:25px !important;
  150. }
  151. td.indent2 {
  152. padding-left:50px !important;
  153. }
  154. /* TODO: cleanup */
  155. /*td.name {*/
  156. /*width:230px;*/
  157. /*}*/
  158. /*td.nameSmall {*/
  159. /*width:150px;*/
  160. /*}*/
  161. /*td.type {*/
  162. /*width: 110px;*/
  163. /*}*/
  164. /*td.default {*/
  165. /*width:60px;*/
  166. /*}*/
  167. /*td.eventProperties {*/
  168. /*width:150px;*/
  169. /*}*/
  170. /*td.methodName {*/
  171. /*width:250px;*/
  172. /*}*/
  173. pre.options {
  174. max-width:600px;
  175. }
  176. pre.hidden {
  177. display:none;
  178. }