202202}
203203.lpt-scrollable-y ::-webkit-scrollbar {
204204 display : none;
205+ }
206+
207+ /* progress bar */
208+ .lpt-spinner {
209+ margin : 100px auto;
210+ width : 100px ;
211+ height : 60px ;
212+ text-align : center;
213+ font-size : 10px ;
214+ }
215+
216+ .lpt-spinner > div {
217+ background-color : # 555 ;
218+ height : 100% ;
219+ width : 9px ;
220+ margin : 0 3px 0 0 ;
221+ display : inline-block;
222+
223+ -webkit-animation : lpt-stretch 0.8s infinite ease-in;
224+ -moz-animation : lpt-stretch 0.8s infinite ease-in;
225+ -o-animation : lpt-stretch 0.8s infinite ease-in;
226+ animation : lpt-stretch 0.8s infinite ease-in;
227+ }
228+
229+ .lpt-spinner > div : nth-child (2 ) {
230+ -webkit-animation-delay : -0.7s ;
231+ -moz-animation-delay : -0.7s ;
232+ -o-animation-delay : -0.7s ;
233+ animation-delay : -0.7s ;
234+ }
235+
236+ .lpt-spinner > div : nth-child (3 ) {
237+ -webkit-animation-delay : -0.6s ;
238+ -moz-animation-delay : -0.6s ;
239+ -o-animation-delay : -0.6s ;
240+ animation-delay : -0.6s ;
241+ }
242+
243+ .lpt-spinner > div : nth-child (4 ) {
244+ -webkit-animation-delay : -0.5s ;
245+ -moz-animation-delay : -0.5s ;
246+ -o-animation-delay : -0.5s ;
247+ animation-delay : -0.5s ;
248+ }
249+
250+ .lpt-spinner > div : nth-child (5 ) {
251+ -webkit-animation-delay : -0.4s ;
252+ -moz-animation-delay : -0.4s ;
253+ -o-animation-delay : -0.4s ;
254+ animation-delay : -0.4s ;
255+ }
256+
257+ @-webkit-keyframes lpt-stretch {
258+ 0% , 40% , 100% {
259+ -webkit-transform : scaleY (0.4 );
260+ -moz-transform : scaleY (0.4 );
261+ -o-transform : scaleY (0.4 );
262+ transform : scaleY (0.4 );
263+ }
264+ 20% {
265+ -webkit-transform : scaleY (1.0 );
266+ -moz-transform : scaleY (1.0 );
267+ -o-transform : scaleY (1.0 );
268+ transform : scaleY (1.0 );
269+ }
270+ }
271+
272+ @-moz-keyframes lpt-stretch {
273+ 0% , 40% , 100% {
274+ -webkit-transform : scaleY (0.4 );
275+ -moz-transform : scaleY (0.4 );
276+ -o-transform : scaleY (0.4 );
277+ transform : scaleY (0.4 );
278+ }
279+ 20% {
280+ -webkit-transform : scaleY (1.0 );
281+ -moz-transform : scaleY (1.0 );
282+ -o-transform : scaleY (1.0 );
283+ transform : scaleY (1.0 );
284+ }
285+ }
286+
287+ @-o-keyframes lpt-stretch {
288+ 0% , 40% , 100% {
289+ -webkit-transform : scaleY (0.4 );
290+ -moz-transform : scaleY (0.4 );
291+ -o-transform : scaleY (0.4 );
292+ transform : scaleY (0.4 );
293+ }
294+ 20% {
295+ -webkit-transform : scaleY (1.0 );
296+ -moz-transform : scaleY (1.0 );
297+ -o-transform : scaleY (1.0 );
298+ transform : scaleY (1.0 );
299+ }
300+ }
301+
302+ @keyframes lpt-stretch {
303+ 0% , 40% , 100% {
304+ -webkit-transform : scaleY (0.4 );
305+ -moz-transform : scaleY (0.4 );
306+ -o-transform : scaleY (0.4 );
307+ transform : scaleY (0.4 );
308+ }
309+ 20% {
310+ -webkit-transform : scaleY (1.0 );
311+ -moz-transform : scaleY (1.0 );
312+ -o-transform : scaleY (1.0 );
313+ transform : scaleY (1.0 );
314+ }
205315}
0 commit comments