tipuesearch.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. /*
  2. Tipue Search 2.1
  3. Copyright (c) 2013 Tipue
  4. Tipue Search is released under the MIT License
  5. http://www.tipue.com/search
  6. */
  7. em
  8. {
  9. font: inherit;
  10. font-weight: 400;
  11. }
  12. #tipue_search_input
  13. {
  14. font: 13px/1.5 'open sans', sans-serif;
  15. color: #333;
  16. padding: 7px;
  17. margin: 0;
  18. width: 160px;
  19. border: 1px solid #d3d3d3;
  20. border-radius: 2px;
  21. -moz-appearance: none;
  22. -webkit-appearance: none;
  23. outline: none;
  24. }
  25. #tipue_search_input:focus
  26. {
  27. border-color: #c3c3c3;
  28. box-shadow: 0 0 3px rgba(0,0,0,.2);
  29. }
  30. #tipue_search_button
  31. {
  32. width: 60px;
  33. height: 33px;
  34. margin-top: 1px;
  35. border: 1px solid #dcdcdc;
  36. border-radius: 2px;
  37. background: #f1f1f1 url('img/search.gif') no-repeat center;
  38. outline: none;
  39. }
  40. #tipue_search_button:hover
  41. {
  42. border: 1px solid #c3c3c3;
  43. -moz-box-shadow: 1px 1px 2px #e3e3e3;
  44. -webkit-box-shadow: 1px 1px 2px #e3e3e3;
  45. box-shadow: 1px 1px 2px #e3e3e3;
  46. }
  47. #tipue_search_content
  48. {
  49. clear: left;
  50. max-width: 650px;
  51. padding: 25px 0 13px 0;
  52. margin: 0;
  53. }
  54. #tipue_search_loading
  55. {
  56. padding-top: 60px;
  57. background: #fff url('img/loader.gif') no-repeat left;
  58. }
  59. #tipue_search_warning_head
  60. {
  61. font: 14px/1.5 'open sans', sans-serif;
  62. color: #333;
  63. }
  64. #tipue_search_warning
  65. {
  66. font: 300 14px/1.5 lato, sans-serif;
  67. color: #111;
  68. margin: 13px 0;
  69. }
  70. #tipue_search_warning a
  71. {
  72. color: #36c;
  73. text-decoration: none;
  74. }
  75. #tipue_search_warning a:hover
  76. {
  77. color: #111;
  78. }
  79. #tipue_search_results_count
  80. {
  81. font: 300 14px/1.5 lato, sans-serif;
  82. color: #111;
  83. }
  84. .tipue_search_content_title
  85. {
  86. font: 300 19px/1.5 'open sans', sans-serif;
  87. margin-top: 31px;
  88. }
  89. .tipue_search_content_title a
  90. {
  91. color: #36c;
  92. text-decoration: none;
  93. }
  94. .tipue_search_content_title a:hover
  95. {
  96. color: #333;
  97. }
  98. .tipue_search_content_image_box
  99. {
  100. float: left;
  101. border: 1px solid #f3f3f3;
  102. padding: 13px;
  103. margin: 21px 0 7px 0;
  104. }
  105. .tipue_search_content_image
  106. {
  107. max-width: 110px;
  108. height: auto;
  109. outline: none;
  110. cursor: pointer;
  111. }
  112. #tipue_lightbox
  113. {
  114. display: none;
  115. position: fixed;
  116. top: 0;
  117. left: 0;
  118. width: 100%;
  119. height: 100%;
  120. background: rgba(255, 255, 255, .9);
  121. }
  122. #tipue_lightbox_content
  123. {
  124. margin: 37px auto;
  125. background-color: #fff;
  126. padding: 30px;
  127. border: 1px solid #ccc;
  128. width: 250px;
  129. text-align: center;
  130. box-shadow: 0 1px 2px #eee;
  131. }
  132. #tipue_lightbox img
  133. {
  134. max-width: 200px;
  135. height: auto;
  136. }
  137. #tipue_lightbox_content_title
  138. {
  139. font: 300 14px/1.7 lato, sans-serif;
  140. color: #111;
  141. padding: 17px 25px 0 25px;
  142. width: 200px;
  143. }
  144. #tipue_lightbox_content_link
  145. {
  146. float: left;
  147. width: 30px;
  148. height: 30px;
  149. margin-top: 17px;
  150. background: #fff url('img/link.png') no-repeat center;
  151. }
  152. #tipue_lightbox_content_expand
  153. {
  154. float: left;
  155. width: 30px;
  156. height: 30px;
  157. margin: 17px 0 0 3px;
  158. background: #fff url('img/expand.png') no-repeat center;
  159. }
  160. #tipue_lightbox_content_link:hover, #tipue_lightbox_content_expand:hover
  161. {
  162. background-color: #f3f3f3;
  163. }
  164. .tipue_search_content_text
  165. {
  166. font: 300 14px/1.7 lato, sans-serif;
  167. color: #111;
  168. padding: 13px 0;
  169. }
  170. .tipue_search_content_loc
  171. {
  172. font: 300 14px/1.5 lato, sans-serif;
  173. color: #111;
  174. }
  175. .tipue_search_content_loc a
  176. {
  177. color: #555;
  178. text-decoration: none;
  179. }
  180. .tipue_search_content_loc a:hover
  181. {
  182. padding-bottom: 1px;
  183. border-bottom: 1px solid #ccc;
  184. }
  185. #tipue_search_foot
  186. {
  187. margin: 47px 0 31px 0;
  188. }
  189. #tipue_search_foot_boxes
  190. {
  191. padding: 0;
  192. margin: 0;
  193. font: 12px/1 'open sans', sans-serif;
  194. }
  195. #tipue_search_foot_boxes li
  196. {
  197. list-style: none;
  198. margin: 0;
  199. padding: 0;
  200. display: inline;
  201. }
  202. #tipue_search_foot_boxes li a
  203. {
  204. padding: 7px 10px 8px 10px;
  205. background-color: #f5f5f5;
  206. background: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1);
  207. background: -moz-linear-gradient(top, #f7f7f7, #f1f1f1);
  208. background: -ms-linear-gradient(top, #f7f7f7, #f1f1f1);
  209. background: -o-linear-gradient(top, #f7f7f7, #f1f1f1);
  210. background: linear-gradient(top, #f7f7f7, #f1f1f1);
  211. border: 1px solid #dcdcdc;
  212. border-radius: 2px;
  213. color: #333;
  214. margin-right: 7px;
  215. text-decoration: none;
  216. text-align: center;
  217. }
  218. #tipue_search_foot_boxes li.current
  219. {
  220. padding: 7px 10px 8px 10px;
  221. background: #fff;
  222. border: 1px solid #dcdcdc;
  223. border-radius: 2px;
  224. color: #333;
  225. margin-right: 7px;
  226. text-align: center;
  227. }
  228. #tipue_search_foot_boxes li a:hover
  229. {
  230. border: 1px solid #c3c3c3;
  231. box-shadow: 1px 1px 2px #e3e3e3;
  232. }