UNPKG

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