forked from you-dont-need/You-Dont-Need-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloader-9.html
815 lines (767 loc) · 19.7 KB
/
loader-9.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Loader No JS Demo</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
/* CSS styles */
/* Example by Viduthalai Mani at http://codepen.io/viduthalai1947/pen/JkhDK */
*{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.cf:before,
.cf:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.cf:after {
clear: both;
}
html{
color: #fff;
font-family: 'Source Sans Pro', sans-serif;
background-color: #59488b;
}
h1,h2{
color: rgba(255,255,255,0.5);
font-size: 40px;
font-weight: 200;
text-align: center;
margin: 40px 0 0 0;
}
h2{
font-size: 18px;
margin: 0;
padding: 0;
margin: 10px 0;
}
h1 span{
font-size: 30px;
}
a{
text-decoration: none;
}
a:hover{
transition: all linear 0.2s;
}
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
.wrapper{
width: 700px;
margin: 0 auto;
}
.row{
text-align: center;
padding: 50px 0;
}
.span, .span_large{
float: left;
width: 100px;
background-color: rgba(0,0,0, 0.02);
height: 100px;
vertical-align: middle;
border-radius: 1px;
margin-right: 100px;
}
.span:last-child{
margin-right: 0px;
}
/* Timer*/
.timer{
width: 24px;
height: 24px;
background-color: transparent;
box-shadow: inset 0px 0px 0px 2px #fff;
border-radius: 50%;
position: relative;
margin: 38px auto;/* Not necessary- its only for layouting*/
}
.timer:after, .timer:before{
position: absolute;
content:"";
background-color: #fff;
}
.timer:after{
width: 10px;
height: 2px;
top: 11px;
left: 11px;
-webkit-transform-origin: 1px 1px;
-moz-transform-origin: 1px 1px;
transform-origin: 1px 1px;
-webkit-animation: minhand 2s linear infinite;
-moz-animation: minhand 2s linear infinite;
animation: minhand 2s linear infinite;
}
.timer:before{
width: 8px;
height: 2px;
top: 11px;
left: 11px;
-webkit-transform-origin: 1px 1px;
-moz-transform-origin: 1px 1px;
transform-origin: 1px 1px;
-webkit-animation: hrhand 8s linear infinite;
-moz-animation: hrhand 8s linear infinite;
animation: hrhand 8s linear infinite;
}
@-webkit-keyframes minhand{
0%{-webkit-transform:rotate(0deg)}
100%{-webkit-transform:rotate(360deg)}
}
@-moz-keyframes minhand{
0%{-moz-transform:rotate(0deg)}
100%{-moz-transform:rotate(360deg)}
}
@keyframes minhand{
0%{transform:rotate(0deg)}
100%{transform:rotate(360deg)}
}
@-webkit-keyframes hrhand{
0%{-webkit-transform:rotate(0deg)}
100%{-webkit-transform:rotate(360deg)}
}
@-moz-keyframes hrhand{
0%{-moz-transform:rotate(0deg)}
100%{-moz-transform:rotate(360deg)}
}
@keyframes hrhand{
0%{transform:rotate(0deg)}
100%{transform:rotate(360deg)}
}
/*Typing Loader*/
.typing_loader{
width: 6px;
height: 6px;
border-radius: 50%;
-webkit-animation: typing 1s linear infinite alternate;
-moz-animation: Typing 1s linear infinite alternate;
animation: typing 1s linear infinite alternate;
margin: 46px auto; /* Not necessary- its only for layouting*/
position: relative;
left: -12px;
}
@-webkit-keyframes typing{
0%{
background-color: rgba(255,255,255, 1);
box-shadow: 12px 0px 0px 0px rgba(255,255,255,0.2),
24px 0px 0px 0px rgba(255,255,255,0.2);
}
25%{
background-color: rgba(255,255,255, 0.4);
box-shadow: 12px 0px 0px 0px rgba(255,255,255,2),
24px 0px 0px 0px rgba(255,255,255,0.2);
}
75%{ background-color: rgba(255,255,255, 0.4);
box-shadow: 12px 0px 0px 0px rgba(255,255,255,0.2),
24px 0px 0px 0px rgba(255,255,255,1);
}
}
@-moz-keyframes typing{
0%{
background-color: rgba(255,255,255, 1);
box-shadow: 12px 0px 0px 0px rgba(255,255,255,0.2),
24px 0px 0px 0px rgba(255,255,255,0.2);
}
25%{
background-color: rgba(255,255,255, 0.4);
box-shadow: 12px 0px 0px 0px rgba(255,255,255,2),
24px 0px 0px 0px rgba(255,255,255,0.2);
}
75%{ background-color: rgba(255,255,255, 0.4);
box-shadow: 12px 0px 0px 0px rgba(255,255,255,0.2),
24px 0px 0px 0px rgba(255,255,255,1);
}
}
@keyframes typing{
0%{
background-color: rgba(255,255,255, 1);
box-shadow: 12px 0px 0px 0px rgba(255,255,255,0.2),
24px 0px 0px 0px rgba(255,255,255,0.2);
}
25%{
background-color: rgba(255,255,255, 0.4);
box-shadow: 12px 0px 0px 0px rgba(255,255,255,2),
24px 0px 0px 0px rgba(255,255,255,0.2);
}
75%{ background-color: rgba(255,255,255, 0.4);
box-shadow: 12px 0px 0px 0px rgba(255,255,255,0.2),
24px 0px 0px 0px rgba(255,255,255,1);
}
}
/*Location indicator */
.location_indicator{
margin: 30px auto;
position: relative;
left: -9px;
}
.location_indicator:before, .location_indicator:after{
position: absolute;
content: "";
}
.location_indicator:before{
width: 20px;
height: 20px;
border-radius: 100% 100% 100% 0;
box-shadow: 0px 0px 0px 2px rgba(255,255,255,1);
-webkit-animation: mapping 1s linear infinite;
-moz-animation: mapping 1s linear infinite;
animation: mapping 1s linear infinite;
-webkit-transform: rotate(-46deg);
-moz-transform: rotate(-46deg);
transform: rotate(-46deg);
}
.location_indicator:after{
width: 30px;
height: 10px;
border-radius: 100%;
left: 44px;
background-color: rgba(255, 255, 255, 0.2);
top: 24px;
z-index: -1;
}
@-webkit-keyframes mapping{
0% {top: 0;}
50%{top: -5px;}
100% {top:0; }
}
@-moz-keyframes mapping{
0% {top: 0;}
50%{top: -5px;}
100% {top:0; }
}
@-keyframes mapping{
0% {top: 0;}
50%{top: -5px;}
100% {top:0; }
}
/* go in*/
.dashboard{
width: 32px;
height: 32px;
margin: 30px auto;
border: 2px rgba(255,255,255,1) solid;
border-radius: 100%;
position: relative;
overflow: hidden;
z-index: 1;
}
.dashboard:after, .dashboard:before{
position: absolute;
content: "";
}
.dashboard:after{
width:14px;
height: 2px;
top: 20px;
-webkit-transform-origin: 1px 1px;
-moz-transform-origin: 1px 1px;
transform-origin: 1px 1px;
background-color: rgba(255,255,255,1);
-webkit-animation: dashboard_hand 2s linear infinite alternate;
-moz-animation: dashboard_hand 2s linear infinite alternate;
animation: dashboard_hand 2s linear infinite alternate;
}
.dashboard:before{
width: 32px;
height: 10px;
background-color: rgba(255,255,255,1);
top:20px;
left: -2px;
}
@-webkit-keyframes dashboard_hand{
0%{ -webkit-transform: rotate(-160deg);}
100%{ -webkit-transform: rotate(-20deg);}
}
@-moz-keyframes dashboard_hand{
0%{ -moz-transform: rotate(-160deg);}
100%{ -moz-transform: rotate(-20deg);}
}
@keyframes dashboard_hand{
0%{ transform: rotate(-160deg);}
100%{ transform: rotate(-20deg);}
}
/*Battery*/
.battery{
width: 28px;
height: 14px;
border: 1px #fff solid;
border-radius: 2px;
position: relative;
-webkit-animation: charge 5s linear infinite;
-moz-animation: charge 5s linear infinite;
animation: charge 5s linear infinite;
top: 40px;
margin: 0 auto;
}
.battery:after{
width: 2px;
height: 7px;
background-color: #fff;
border-radius: 0px 1px 1px 0px;
position: absolute;
content: "";
top: 2px;
right: -4px;
}
@-webkit-keyframes charge{
0%{box-shadow: inset 0px 0px 0px #fff;}
100%{box-shadow: inset 30px 0px 0px #fff;}
}
@-moz-keyframes charge{
0%{box-shadow: inset 0px 0px 0px #fff;}
100%{box-shadow: inset 30px 0px 0px #fff;}
}
@keyframes charge{
0%{box-shadow: inset 0px 0px 0px #fff;}
100%{box-shadow: inset 30px 0px 0px #fff;}
}
.magnifier{
width: 20px;
height: 20px;
box-shadow: 0px 0px 0px 1px #fff;
border-radius: 50%;
position: relative;
margin: 34px auto;
-webkit-animation: magnify 1s linear infinite alternate;
-moz-animation: magnify 1s linear infinite alternate;
animation: magnify 1s linear infinite alternate;
}
.magnifier:after, .magnifier:before{
position: absolute;
content: "";
}
.magnifier:before{
content: "me";
font-size: 12px;
left: 2px;
text-align: center;
top: 2px;
}
.magnifier:after{
width: 2px;
height: 8px;
background-color: #fff;
bottom: -6px;
left: 20px;
border-radius: 2px;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
transform: rotate(-45deg);
}
@-webkit-keyframes magnify{
0%{-webkit-transform: scale(1); }
100%{-webkit-transform: scale(1.5);}
}
@-moz-keyframes magnify{
0%{-moz-transform: scale(1); }
100%{-moz-transform: scale(1.5);}
}
@keyframes magnify{
0%{transform: scale(1); }
100%{transform: scale(1.5);}
}
/*help*/
.help{
width: 30px;
height: 30px;
border: 1px #fff solid;
border-radius: 50%;
-webkit-animation: rotation 1s ease-in-out infinite;
-moz-animation: rotation 1s ease-in-out infinite;
animation: rotation 1s ease-in-out infinite;
margin: 30px auto;
}
.help:after{
width: 5px;
height: 5px;
background-color: rgba(255,255,255,1);
border-radius: 100%;
position: absolute;
content: "";
}
@-webkit-keyframes rotation{
0%{-webkit-transform: rotate(0deg);}
100%{-webkit-transform: rotate(360deg);}
}
@-moz-keyframes rotation{
0%{-moz-transform: rotate(0deg);}
100%{-moz-transform: rotate(360deg);}
}
@keyframes rotation{
0%{transform: rotate(0deg);}
100%{transform: rotate(360deg);}
}
/*eye ball*/
.eye{
width: 20px;
height: 20px;
background-color: rgba(255,255,255,0.8);
border-radius: 50%;
box-shadow: 30px 0px 0px 0px rgba(255,255,255,0.8);
position: relative;
margin: 36px 26px;
}
.eye:after{
background-color: #59488b;
width: 10px;
height: 10px;
box-shadow: 30px 0px 0px 0px #59488b;
border-radius: 50%;
left: 9px;
top: 8px;
position: absolute;
content: "";
-webkit-animation: eyeball 2s linear infinite alternate;
-moz-animation: eyeball 2s linear infinite alternate;
animation: eyeball 2s linear infinite alternate;
}
@-webkit-keyframes eyeball{
0%{left: 9px;}
100%{left: 1px;}
}
@-moz-keyframes eyeball{
0%{left: 9px;}
100%{left: 1px;}
}
@keyframes eyeball{
0%{left: 9px;}
100%{left: 1px;}
}
/*coffee cup*/
.coffee_cup{
width: 20px;
height: 24px;
border: 1px rgba(255,255,255,1) solid;
border-radius: 0px 0px 5px 5px;
position: relative;
margin: 36px auto;
}
.coffee_cup:after, .coffee_cup:before{
position: absolute;
content: "";
}
.coffee_cup:after{
width: 5px;
height: 12px;
border: 1px #fff solid;
border-left: none;
border-radius: 0px 20px 20px 0px;
left: 20px;
}
.coffee_cup:before{
width: 1px;
height: 6px;
background-color: rgba(255,255,255,1);
top: -10px;
left: 4px;
box-shadow: 5px 0px 0px 0px rgba(255,255,255,1),
5px -5px 0px 0px rgba(255,255,255,1),
10px 0px 0px 0px rgba(255,255,255,1);
-webkit-animation: steam 1s linear infinite alternate;
-moz-animation: steam 1s linear infinite alternate;
animation: steam 1s linear infinite alternate;
}
@-webkit-keyframes steam{
0%{height: 0px;}
100%{height: 6px;}
}
@-moz-keyframes steam{
0%{height: 0px}
100%{height: 6px;}
}
@keyframes steam{
0%{height: 0px}
100%{height: 6px;}
}
/*square*/
.square{
width: 20px;
height: 20px;
border:1px rgba(255,255,255,1) solid;
margin: 36px auto;
position: relative;
-webkit-animation: fill_color 5s linear infinite;
-moz-animation: fill_color 5s linear infinite;
animation: fill_color 5s linear infinite;
}
.square:after{
width: 4px;
height: 4px;
position: absolute;
content: "";
background-color: rgba(255,255,255,1);
top: -8px;
left: 0px;
-webkit-animation: square_check 1s ease-in-out infinite;
-moz-animation: square_check 1s ease-in-out infinite;
animation: square_check 1s ease-in-out infinite;
}
@-webkit-keyframes square_check{
25%{ left: 22px; top: -8px;}
50%{ left: 22px; top: 22px;}
75%{ left: -9px; top: 22px;}
100%{ left: -9px; top: -7px;}
}
@-moz-keyframes square_check{
25%{ left: 22px; top: -8px;}
50%{ left: 22px; top: 22px;}
75%{ left: -9px; top: 22px;}
100%{ left: -9px; top: -7px;}
}
@keyframes square_check{
25%{ left: 22px; top: -8px;}
50%{ left: 22px; top: 22px;}
75%{ left: -9px; top: 22px;}
100%{ left: -9px; top: -7px;}
}
@-webkit-keyframes fill_color{
0%{ box-shadow: inset 0px 0px 0px 0px rgba(255,255,255,0.1);}
100%{ box-shadow: inset 0px -20px 0px 0px rgba(255,255,255,1);}
}
@-moz-keyframes fill_color{
0%{ box-shadow: inset 0px 0px 0px 0px rgba(255,255,255,0.1);}
100%{ box-shadow: inset 0px -20px 0px 0px rgba(255,255,255,1);}
}
@keyframes fill_color{
0%{ box-shadow: inset 0px 0px 0px 0px rgba(255,255,255,0.1);}
100%{ box-shadow: inset 0px -20px 0px 0px rgba(255,255,255,1);}
}
/*circle classick*/
.circle{
margin: 40px auto;
position: relative;
width: 8px;
height: 8px;
background-color: rgba(255,255,255,.5);;
box-shadow: -14px 0px 0px rgba(255,255,255,1);
border-radius: 50%;
-webkit-animation: circle_classic 1s ease-in-out infinite alternate;
-moz-animation: circle_classic 1s ease-in-out infinite alternate;
animation: circle_classic 1s ease-in-out infinite alternate;
}
@-webkit-keyframes circle_classic{
0%{ opacity: 0.1; -webkit-transform: rotate(0deg) scale(0.5);}
100%{opacity: 1; -webkit-transform: rotate(360deg) scale(1.2);}
}
@-moz-keyframes circle_classic{
0%{ opacity: 0.1; -moz-transform: rotate(0deg) scale(0.5);}
100%{opacity: 1; -moz-transform: rotate(360deg) scale(1.2);}
}
@keyframes circle_classic{
0%{ opacity: 0.1; transform: rotate(0deg) scale(0.5);}
100%{opacity: 1; transform: rotate(360deg) scale(1.2);}
}
/*cloud*/
.cloud{
margin: 42px 30px;
width: 4px;
height: 10px;
opacity: 0.5;
position: relative;
box-shadow: 6px 0px 0px 0px rgba(255,255,255,1),
12px 0px 0px 0px rgba(255,255,255,1),
18px 0px 0px 0px rgba(255,255,255,1),
24px 0px 0px 0px rgba(255,255,255,1),
30px 0px 0px 0px rgba(255,255,255,1),
36px 0px 0px 0px rgba(255,255,255,1);
-webkit-animation: rain 1s linear infinite alternate;
-moz-animation: rain 1s linear infinite alternate;
animation: rain 1s linear infinite alternate;
}
.cloud:after{
width: 40px;
height: 10px;
position: absolute;
content: "";
background-color: rgba(255,255,255,1);
top: 0px;
opacity: 1;
-webkit-animation: line_flow 2s linear infinite reverse;
-moz-animation: line_flow 2s linear infinite reverse;
animation: line_flow 2s linear infinite reverse;
}
@-webkit-keyframes rain{
0%{
box-shadow: 6px 0px 0px 0px rgba(255,255,255,1),
12px 0px 0px 0px rgba(255,255,255,0.9),
18px 0px 0px 0px rgba(255,255,255,0.7),
24px 0px 0px 0px rgba(255,255,255,0.6),
30px 0px 0px 0px rgba(255,255,255,0.3),
36px 0px 0px 0px rgba(255,255,255,0.2);
}
100%{
box-shadow: 6px 0px 0px 0px rgba(255,255,255,0.2),
12px 0px 0px 0px rgba(255,255,255,0.3),
18px 0px 0px 0px rgba(255,255,255,0.6),
24px 0px 0px 0px rgba(255,255,255,0.7),
30px 0px 0px 0px rgba(255,255,255,0.9),
36px 0px 0px 0px rgba(255,255,255,1);
opacity: 1;
}
}
@-moz-keyframes rain{
0%{
box-shadow: 6px 0px 0px 0px rgba(255,255,255,1),
12px 0px 0px 0px rgba(255,255,255,0.9),
18px 0px 0px 0px rgba(255,255,255,0.7),
24px 0px 0px 0px rgba(255,255,255,0.6),
30px 0px 0px 0px rgba(255,255,255,0.3),
36px 0px 0px 0px rgba(255,255,255,0.2);
}
100%{
box-shadow: 6px 0px 0px 0px rgba(255,255,255,0.2),
12px 0px 0px 0px rgba(255,255,255,0.3),
18px 0px 0px 0px rgba(255,255,255,0.6),
24px 0px 0px 0px rgba(255,255,255,0.7),
30px 0px 0px 0px rgba(255,255,255,0.9),
36px 0px 0px 0px rgba(255,255,255,1);
opacity: 1;
}
}
@keyframes rain{
0%{
box-shadow: 6px 0px 0px 0px rgba(255,255,255,1),
12px 0px 0px 0px rgba(255,255,255,0.9),
18px 0px 0px 0px rgba(255,255,255,0.7),
24px 0px 0px 0px rgba(255,255,255,0.6),
30px 0px 0px 0px rgba(255,255,255,0.3),
36px 0px 0px 0px rgba(255,255,255,0.2);
}
100%{
box-shadow: 6px 0px 0px 0px rgba(255,255,255,0.2),
12px 0px 0px 0px rgba(255,255,255,0.3),
18px 0px 0px 0px rgba(255,255,255,0.6),
24px 0px 0px 0px rgba(255,255,255,0.7),
30px 0px 0px 0px rgba(255,255,255,0.9),
36px 0px 0px 0px rgba(255,255,255,1);
opacity: 1;
}
}
@-webkit-keyframes line_flow{
0%{ width: 0px;}
100%{width: 40px;}
}
@-moz-keyframes line_flow{
0%{ width: 0px;}
100%{width: 40px;}
}
@keyframes line_flow{
0%{ width: 0px;}
100%{width: 40px;}
}
/* Me */
.aboutme{
width: 700px;
padding: 50px 0;
border-top: 2px rgba(255,255,255,0.03) solid;
}
.viduthalai{
background: url(../img/viduthalai.png) no-repeat;
width: 100px;
height: 100px;
border-radius: 0 2px 2px 0;
float: left;
opacity: 0.5;
}
.viduthalai:hover{
opacity: 1;
}
.intro{
float: left;
width: 400px;
padding-left: 20px;
color: rgba(255,255,255,0.5);
}
.intro a{
color: rgba(255,255,255,0.5);
}
.intro a:hover{
color: rgba(255,255,255,1);
}
.intro span, p{
font-size: 15px;
font-weight: 200;
}
.intro h3{
font-size: 20px;
font-weight: 200;
margin: 0px;
}
.git{
color: rgba(255,255,255,0.5);
float: right;
text-align: right;
padding: 10px 20px;
border-radius: 2px;
background-color: rgba(0,0,0,0.3);
font-weight: 200;
}
.git:hover{
background-color: rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="wrapper">
<h1>Loaders Kit</h1>
<h2 class="cf">Single Element pure CSS Spinners & Loaders</h2>
<div class="row cf">
<div class="span">
<div class="timer"></div>
</div>
<div class="span">
<div class="typing_loader"></div>
</div>
<div class="span">
<div class="location_indicator"></div>
</div>
<div class="span">
<div class="dashboard"></div>
</div>
</div>
<div class="row cf">
<div class="span">
<div class="battery"></div>
</div>
<div class="span">
<div class="magnifier"></div>
</div>
<div class="span">
<div class="help"></div>
</div>
<div class="span">
<div class="cloud"></div>
</div>
</div>
<div class="row cf">
<div class="span">
<div class="eye"></div>
</div>
<div class="span">
<div class="coffee_cup"></div>
</div>
<div class="span">
<div class="square"></div>
</div>
<div class="span">
<div class="circle"></div>
</div>
</div>
</div>
</body>
</html>