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.

205 lines
3.7 KiB

  1. /*
  2. Tipue Search 5.0
  3. Copyright (c) 2015 Tipue
  4. Tipue Search is released under the MIT License
  5. http://www.tipue.com/search
  6. */
  7. /* Disabled by @felixhayashi to force bootstrap styles.
  8. #tipue_search_input
  9. {
  10. font: 13px/1.6 'open sans', sans-serif;
  11. color: #333;
  12. padding: 12px 12px 12px 40px;
  13. width: 170px;
  14. border: 1px solid #e2e2e2;
  15. border-radius: 0;
  16. -moz-appearance: none;
  17. -webkit-appearance: none;
  18. box-shadow: none;
  19. outline: 0;
  20. margin: 0;
  21. background: #fff url('img/search.png') no-repeat 15px 15px;
  22. }
  23. #tipue_search_content
  24. {
  25. max-width: 650px;
  26. padding-top: 15px;
  27. margin: 0;
  28. }
  29. */
  30. #tipue_search_warning
  31. {
  32. font: 300 15px/1.6 'Open Sans', sans-serif;
  33. color: #555;
  34. margin: 7px 0;
  35. }
  36. #tipue_search_warning a
  37. {
  38. color: #396;
  39. text-decoration: none;
  40. }
  41. #tipue_search_warning a:hover
  42. {
  43. color: #555;
  44. }
  45. #tipue_search_results_count
  46. {
  47. font: 300 15px/1.7 'Open Sans', sans-serif;
  48. color: #555;
  49. }
  50. .tipue_search_content_title
  51. {
  52. font: 300 21px/1.7 'Open Sans', sans-serif;
  53. margin-top: 23px;
  54. }
  55. .tipue_search_content_title a
  56. {
  57. color: #333;
  58. text-decoration: none;
  59. }
  60. .tipue_search_content_title a:hover
  61. {
  62. color: #555;
  63. }
  64. .tipue_search_content_url
  65. {
  66. font: 300 14px/1.9 'Open Sans', sans-serif;
  67. word-wrap: break-word;
  68. hyphens: auto;
  69. }
  70. .tipue_search_content_url a
  71. {
  72. color: #396;
  73. text-decoration: none;
  74. }
  75. .tipue_search_content_url a:hover
  76. {
  77. color: #555;
  78. }
  79. .tipue_search_content_text
  80. {
  81. font: 300 15px/1.6 'Open Sans', sans-serif;
  82. color: #555;
  83. word-wrap: break-word;
  84. hyphens: auto;
  85. margin-top: 3px;
  86. }
  87. .tipue_search_content_debug
  88. {
  89. font: 300 13px/1.6 'Open Sans', sans-serif;
  90. color: #555;
  91. margin: 5px 0;
  92. }
  93. .h01
  94. {
  95. color: #333;
  96. font-weight: 400;
  97. }
  98. #tipue_search_foot
  99. {
  100. margin: 51px 0 21px 0;
  101. }
  102. #tipue_search_foot_boxes
  103. {
  104. padding: 0;
  105. margin: 0;
  106. font: 12px 'Open Sans', sans-serif;
  107. }
  108. #tipue_search_foot_boxes li
  109. {
  110. list-style: none;
  111. margin: 0;
  112. padding: 0;
  113. display: inline;
  114. }
  115. #tipue_search_foot_boxes li a
  116. {
  117. padding: 10px 17px 11px 17px;
  118. background-color: #fff;
  119. border: 1px solid #e2e2e2;
  120. border-radius: 1px;
  121. color: #333;
  122. margin-right: 7px;
  123. text-decoration: none;
  124. text-align: center;
  125. }
  126. #tipue_search_foot_boxes li.current
  127. {
  128. padding: 10px 17px 11px 17px;
  129. background: #f6f6f6;
  130. border: 1px solid #e2e2e2;
  131. border-radius: 1px;
  132. color: #333;
  133. margin-right: 7px;
  134. text-align: center;
  135. }
  136. #tipue_search_foot_boxes li a:hover
  137. {
  138. background: #f6f6f6;
  139. }
  140. /* spinner */
  141. .tipue_search_spinner
  142. {
  143. padding: 31px 0;
  144. width: 50px;
  145. height: 28px;
  146. }
  147. .tipue_search_spinner > div
  148. {
  149. background-color: #777;
  150. height: 100%;
  151. width: 3px;
  152. display: inline-block;
  153. margin-right: 2px;
  154. -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  155. animation: stretchdelay 1.2s infinite ease-in-out;
  156. }
  157. .tipue_search_spinner .tipue_search_rect2
  158. {
  159. -webkit-animation-delay: -1.1s;
  160. animation-delay: -1.1s;
  161. }
  162. .tipue_search_spinner .tipue_search_rect3
  163. {
  164. -webkit-animation-delay: -1.0s;
  165. animation-delay: -1.0s;
  166. }
  167. @-webkit-keyframes stretchdelay
  168. {
  169. 0%, 40%, 100%
  170. {
  171. -webkit-transform: scaleY(0.4)
  172. }
  173. 20%
  174. {
  175. -webkit-transform: scaleY(1.0)
  176. }
  177. }
  178. @keyframes stretchdelay
  179. {
  180. 0%, 40%, 100%
  181. {
  182. transform: scaleY(0.4);
  183. -webkit-transform: scaleY(0.4);
  184. }
  185. 20%
  186. {
  187. transform: scaleY(1.0);
  188. -webkit-transform: scaleY(1.0);
  189. }
  190. }