cupboard 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/app/assets/images/icook-logo-footer.svg +1 -0
- data/app/assets/images/vip_modal.svg +1 -0
- data/app/assets/stylesheets/_base.scss +3 -1
- data/app/assets/stylesheets/_components.scss +31 -29
- data/app/assets/stylesheets/_helpers.scss +4 -3
- data/app/assets/stylesheets/_layouts.scss +1 -2
- data/app/assets/stylesheets/_vendors.scss +7 -0
- data/app/assets/stylesheets/base/_basic.scss +35 -0
- data/app/assets/stylesheets/base/_forms.scss +96 -50
- data/app/assets/stylesheets/base/_inputs.scss +85 -0
- data/app/assets/stylesheets/base/_lists.scss +1 -1
- data/app/assets/stylesheets/base/{_table.scss → _tables.scss} +12 -12
- data/app/assets/stylesheets/base/_typography.scss +34 -210
- data/app/assets/stylesheets/components/_badges.scss +47 -10
- data/app/assets/stylesheets/components/_breadcrumbs.scss +25 -9
- data/app/assets/stylesheets/components/_buttons.scss +3 -207
- data/app/assets/stylesheets/components/_pagination.scss +26 -16
- data/app/assets/stylesheets/components/_search-form.scss +89 -28
- data/app/assets/stylesheets/components/_sorting-cards.scss +1 -1
- data/app/assets/stylesheets/components/alerts/_alert-global.scss +45 -23
- data/app/assets/stylesheets/components/alerts/_alert-market.scss +6 -6
- data/app/assets/stylesheets/components/alerts/_alert-no-result.scss +1 -0
- data/app/assets/stylesheets/components/alerts/_report-msg.scss +51 -0
- data/app/assets/stylesheets/components/buttons/_card-buttons.scss +88 -0
- data/app/assets/stylesheets/components/buttons/_default-buttons.scss +98 -0
- data/app/assets/stylesheets/components/buttons/_round-buttons.scss +125 -0
- data/app/assets/stylesheets/components/cards/_brand-product-card.scss +65 -36
- data/app/assets/stylesheets/components/cards/_dish-card.scss +8 -12
- data/app/assets/stylesheets/components/cards/_featured-card.scss +69 -0
- data/app/assets/stylesheets/components/cards/_feeds-card.scss +9 -12
- data/app/assets/stylesheets/components/cards/_list-card.scss +88 -96
- data/app/assets/stylesheets/components/cards/_photo-card.scss +57 -101
- data/app/assets/stylesheets/components/cards/_product-card.scss +8 -8
- data/app/assets/stylesheets/components/cards/_recipe-card.scss +86 -67
- data/app/assets/stylesheets/components/cards/_video-card.scss +28 -29
- data/app/assets/stylesheets/components/comments/_comment-form.scss +5 -13
- data/app/assets/stylesheets/components/comments/_single-comment.scss +21 -14
- data/app/assets/stylesheets/components/covers/_brand-cover.scss +1 -1
- data/app/assets/stylesheets/components/covers/_categories-cover.scss +65 -45
- data/app/assets/stylesheets/components/covers/_users-cover.scss +75 -0
- data/app/assets/stylesheets/components/features/_feature-events.scss +2 -5
- data/app/assets/stylesheets/components/features/_feature-slides.scss +5 -6
- data/app/assets/stylesheets/components/icons/_footer-social-icons.scss +11 -34
- data/app/assets/stylesheets/components/icons/_icon-status.scss +12 -16
- data/app/assets/stylesheets/components/icons/_icookfont.scss +5 -0
- data/app/assets/stylesheets/components/modals/_modal-reset.scss +1 -1
- data/app/assets/stylesheets/components/modals/_recipe-list-modal.scss +8 -5
- data/app/assets/stylesheets/components/modals/_vip-modal.scss +114 -0
- data/app/assets/stylesheets/components/navigations/_blog-navi.scss +15 -19
- data/app/assets/stylesheets/components/navigations/_brand-tabs-navi.scss +4 -4
- data/app/assets/stylesheets/components/navigations/_categories-navi.scss +54 -137
- data/app/assets/stylesheets/components/recipes/_ingredients.scss +17 -22
- data/app/assets/stylesheets/components/recipes/_notes.scss +2 -2
- data/app/assets/stylesheets/components/recipes/_recipe-details.scss +5 -3
- data/app/assets/stylesheets/components/recipes/_recipe-navi.scss +29 -32
- data/app/assets/stylesheets/components/recipes/_steps.scss +2 -9
- data/app/assets/stylesheets/components/sidebars/_brand-ingredients.scss +3 -8
- data/app/assets/stylesheets/components/sidebars/_brand-popular-lists.scss +10 -13
- data/app/assets/stylesheets/components/sidebars/_brand-recent-events.scss +1 -2
- data/app/assets/stylesheets/components/sidebars/_business-kitchen.scss +11 -10
- data/app/assets/stylesheets/components/sidebars/_business-sponsors.scss +65 -0
- data/app/assets/stylesheets/components/sidebars/_hot-categories.scss +20 -39
- data/app/assets/stylesheets/components/sidebars/_icook-video.scss +4 -8
- data/app/assets/stylesheets/components/sidebars/_popular-recipes.scss +88 -33
- data/app/assets/stylesheets/components/sidebars/_popular-search.scss +17 -25
- data/app/assets/stylesheets/components/sidebars/_recipes-collect.scss +5 -2
- data/app/assets/stylesheets/components/sidebars/_sidebar-basic.scss +5 -14
- data/app/assets/stylesheets/components/sidebars/_tv-more-recipes.scss +3 -4
- data/app/assets/stylesheets/components/sidebars/_tv-popular-tags.scss +4 -5
- data/app/assets/stylesheets/components/users/_fav-list.scss +6 -8
- data/app/assets/stylesheets/components/users/_user-stats.scss +29 -25
- data/app/assets/stylesheets/helpers/_mixin-badge.scss +4 -3
- data/app/assets/stylesheets/helpers/_mixin-ellipsis.scss +39 -0
- data/app/assets/stylesheets/helpers/_mixin-flex.scss +247 -0
- data/app/assets/stylesheets/helpers/_mixin-icons.scss +6 -18
- data/app/assets/stylesheets/helpers/_variables-color.scss +47 -83
- data/app/assets/stylesheets/layouts/_base-footer.scss +15 -18
- data/app/assets/stylesheets/layouts/_global-navbar.scss +12 -15
- data/app/assets/stylesheets/layouts/_mega-footer.scss +298 -0
- data/app/assets/stylesheets/vendors/SpinKit/.bower.json +30 -0
- data/app/assets/stylesheets/vendors/SpinKit/CHANGELOG.md +40 -0
- data/app/assets/stylesheets/vendors/SpinKit/CONTRIBUTING.md +22 -0
- data/app/assets/stylesheets/vendors/SpinKit/LICENSE +20 -0
- data/app/assets/stylesheets/vendors/SpinKit/README.md +72 -0
- data/app/assets/stylesheets/vendors/SpinKit/bower.json +19 -0
- data/app/assets/stylesheets/vendors/SpinKit/css/spinkit.css +770 -0
- data/app/assets/stylesheets/vendors/SpinKit/css/spinners/1-rotating-plane.css +35 -0
- data/app/assets/stylesheets/vendors/SpinKit/css/spinners/10-fading-circle.css +129 -0
- data/app/assets/stylesheets/vendors/SpinKit/css/spinners/11-folding-cube.css +85 -0
- data/app/assets/stylesheets/vendors/SpinKit/css/spinners/2-double-bounce.css +44 -0
- data/app/assets/stylesheets/vendors/SpinKit/css/spinners/3-wave.css +56 -0
- data/app/assets/stylesheets/vendors/SpinKit/css/spinners/4-wandering-cubes.css +68 -0
- data/app/assets/stylesheets/vendors/SpinKit/css/spinners/5-pulse.css +32 -0
- data/app/assets/stylesheets/vendors/SpinKit/css/spinners/6-chasing-dots.css +58 -0
- data/app/assets/stylesheets/vendors/SpinKit/css/spinners/7-three-bounce.css +44 -0
- data/app/assets/stylesheets/vendors/SpinKit/css/spinners/8-circle.css +133 -0
- data/app/assets/stylesheets/vendors/SpinKit/css/spinners/9-cube-grid.css +76 -0
- data/app/assets/stylesheets/vendors/SpinKit/examples/1-rotating-plane.html +49 -0
- data/app/assets/stylesheets/vendors/SpinKit/examples/10-fading-circle.html +156 -0
- data/app/assets/stylesheets/vendors/SpinKit/examples/11-folding-cube.html +104 -0
- data/app/assets/stylesheets/vendors/SpinKit/examples/2-double-bounce.html +61 -0
- data/app/assets/stylesheets/vendors/SpinKit/examples/3-wave.html +76 -0
- data/app/assets/stylesheets/vendors/SpinKit/examples/4-wandering-cubes.html +85 -0
- data/app/assets/stylesheets/vendors/SpinKit/examples/5-pulse.html +46 -0
- data/app/assets/stylesheets/vendors/SpinKit/examples/6-chasing-dots.html +75 -0
- data/app/assets/stylesheets/vendors/SpinKit/examples/7-three-bounce.html +62 -0
- data/app/assets/stylesheets/vendors/SpinKit/examples/8-circle.html +160 -0
- data/app/assets/stylesheets/vendors/SpinKit/examples/9-cube-grid.html +100 -0
- data/app/assets/stylesheets/vendors/SpinKit/gulpfile.js +97 -0
- data/app/assets/stylesheets/vendors/SpinKit/package.json +34 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/_variables.scss +3 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/spinkit.scss +12 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/spinners/1-rotating-plane.scss +25 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/spinners/10-fading-circle.scss +63 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/spinners/11-folding-cube.scss +70 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/spinners/2-double-bounce.scss +38 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/spinners/3-wave.scss +42 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/spinners/4-wandering-cubes.scss +51 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/spinners/5-pulse.scss +25 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/spinners/6-chasing-dots.scss +52 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/spinners/7-three-bounce.scss +40 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/spinners/8-circle.scss +62 -0
- data/app/assets/stylesheets/vendors/SpinKit/scss/spinners/9-cube-grid.scss +55 -0
- data/lib/cupboard/version.rb +1 -1
- metadata +62 -8
- data/app/assets/stylesheets/components/navigations/_categories-navi-responsive.scss +0 -129
- data/app/assets/stylesheets/components/navigations/_tv-navi.scss +0 -252
- data/app/assets/stylesheets/helpers/_mixin-buttons.scss +0 -17
- data/app/assets/stylesheets/layouts/_footer-nav.scss +0 -151
- data/app/assets/stylesheets/layouts/_sub-header-market.scss +0 -138
@@ -0,0 +1,76 @@
|
|
1
|
+
/*
|
2
|
+
* Usage:
|
3
|
+
*
|
4
|
+
<div class="sk-cube-grid">
|
5
|
+
<div class="sk-cube sk-cube1"></div>
|
6
|
+
<div class="sk-cube sk-cube2"></div>
|
7
|
+
<div class="sk-cube sk-cube3"></div>
|
8
|
+
<div class="sk-cube sk-cube4"></div>
|
9
|
+
<div class="sk-cube sk-cube5"></div>
|
10
|
+
<div class="sk-cube sk-cube6"></div>
|
11
|
+
<div class="sk-cube sk-cube7"></div>
|
12
|
+
<div class="sk-cube sk-cube8"></div>
|
13
|
+
<div class="sk-cube sk-cube9"></div>
|
14
|
+
</div>
|
15
|
+
*
|
16
|
+
*/
|
17
|
+
.sk-cube-grid {
|
18
|
+
width: 40px;
|
19
|
+
height: 40px;
|
20
|
+
margin: 40px auto;
|
21
|
+
/*
|
22
|
+
* Spinner positions
|
23
|
+
* 1 2 3
|
24
|
+
* 4 5 6
|
25
|
+
* 7 8 9
|
26
|
+
*/ }
|
27
|
+
.sk-cube-grid .sk-cube {
|
28
|
+
width: 33.33%;
|
29
|
+
height: 33.33%;
|
30
|
+
background-color: #333;
|
31
|
+
float: left;
|
32
|
+
-webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
|
33
|
+
animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; }
|
34
|
+
.sk-cube-grid .sk-cube1 {
|
35
|
+
-webkit-animation-delay: 0.2s;
|
36
|
+
animation-delay: 0.2s; }
|
37
|
+
.sk-cube-grid .sk-cube2 {
|
38
|
+
-webkit-animation-delay: 0.3s;
|
39
|
+
animation-delay: 0.3s; }
|
40
|
+
.sk-cube-grid .sk-cube3 {
|
41
|
+
-webkit-animation-delay: 0.4s;
|
42
|
+
animation-delay: 0.4s; }
|
43
|
+
.sk-cube-grid .sk-cube4 {
|
44
|
+
-webkit-animation-delay: 0.1s;
|
45
|
+
animation-delay: 0.1s; }
|
46
|
+
.sk-cube-grid .sk-cube5 {
|
47
|
+
-webkit-animation-delay: 0.2s;
|
48
|
+
animation-delay: 0.2s; }
|
49
|
+
.sk-cube-grid .sk-cube6 {
|
50
|
+
-webkit-animation-delay: 0.3s;
|
51
|
+
animation-delay: 0.3s; }
|
52
|
+
.sk-cube-grid .sk-cube7 {
|
53
|
+
-webkit-animation-delay: 0.0s;
|
54
|
+
animation-delay: 0.0s; }
|
55
|
+
.sk-cube-grid .sk-cube8 {
|
56
|
+
-webkit-animation-delay: 0.1s;
|
57
|
+
animation-delay: 0.1s; }
|
58
|
+
.sk-cube-grid .sk-cube9 {
|
59
|
+
-webkit-animation-delay: 0.2s;
|
60
|
+
animation-delay: 0.2s; }
|
61
|
+
|
62
|
+
@-webkit-keyframes sk-cubeGridScaleDelay {
|
63
|
+
0%, 70%, 100% {
|
64
|
+
-webkit-transform: scale3D(1, 1, 1);
|
65
|
+
transform: scale3D(1, 1, 1); }
|
66
|
+
35% {
|
67
|
+
-webkit-transform: scale3D(0, 0, 1);
|
68
|
+
transform: scale3D(0, 0, 1); } }
|
69
|
+
|
70
|
+
@keyframes sk-cubeGridScaleDelay {
|
71
|
+
0%, 70%, 100% {
|
72
|
+
-webkit-transform: scale3D(1, 1, 1);
|
73
|
+
transform: scale3D(1, 1, 1); }
|
74
|
+
35% {
|
75
|
+
-webkit-transform: scale3D(0, 0, 1);
|
76
|
+
transform: scale3D(0, 0, 1); } }
|
@@ -0,0 +1,49 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>1 rotating plane</title>
|
5
|
+
<style type="text/css">
|
6
|
+
/*
|
7
|
+
* Usage:
|
8
|
+
*
|
9
|
+
<div class="sk-rotating-plane"></div>
|
10
|
+
*
|
11
|
+
*/
|
12
|
+
.sk-rotating-plane {
|
13
|
+
width: 40px;
|
14
|
+
height: 40px;
|
15
|
+
background-color: #333;
|
16
|
+
margin: 40px auto;
|
17
|
+
-webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
|
18
|
+
animation: sk-rotatePlane 1.2s infinite ease-in-out; }
|
19
|
+
|
20
|
+
@-webkit-keyframes sk-rotatePlane {
|
21
|
+
0% {
|
22
|
+
-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
|
23
|
+
transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
|
24
|
+
50% {
|
25
|
+
-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
|
26
|
+
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
|
27
|
+
100% {
|
28
|
+
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
|
29
|
+
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }
|
30
|
+
|
31
|
+
@keyframes sk-rotatePlane {
|
32
|
+
0% {
|
33
|
+
-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
|
34
|
+
transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
|
35
|
+
50% {
|
36
|
+
-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
|
37
|
+
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
|
38
|
+
100% {
|
39
|
+
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
|
40
|
+
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }
|
41
|
+
|
42
|
+
</style>
|
43
|
+
</head>
|
44
|
+
<body>
|
45
|
+
|
46
|
+
|
47
|
+
<div class="sk-rotating-plane"></div>
|
48
|
+
</body>
|
49
|
+
</html>
|
@@ -0,0 +1,156 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>10 fading circle</title>
|
5
|
+
<style type="text/css">
|
6
|
+
/*
|
7
|
+
* Usage:
|
8
|
+
*
|
9
|
+
<div class="sk-fading-circle">
|
10
|
+
<div class="sk-circle1 sk-circle"></div>
|
11
|
+
<div class="sk-circle2 sk-circle"></div>
|
12
|
+
<div class="sk-circle3 sk-circle"></div>
|
13
|
+
<div class="sk-circle4 sk-circle"></div>
|
14
|
+
<div class="sk-circle5 sk-circle"></div>
|
15
|
+
<div class="sk-circle6 sk-circle"></div>
|
16
|
+
<div class="sk-circle7 sk-circle"></div>
|
17
|
+
<div class="sk-circle8 sk-circle"></div>
|
18
|
+
<div class="sk-circle9 sk-circle"></div>
|
19
|
+
<div class="sk-circle10 sk-circle"></div>
|
20
|
+
<div class="sk-circle11 sk-circle"></div>
|
21
|
+
<div class="sk-circle12 sk-circle"></div>
|
22
|
+
</div>
|
23
|
+
*
|
24
|
+
*/
|
25
|
+
.sk-fading-circle {
|
26
|
+
margin: 40px auto;
|
27
|
+
width: 40px;
|
28
|
+
height: 40px;
|
29
|
+
position: relative; }
|
30
|
+
.sk-fading-circle .sk-circle {
|
31
|
+
width: 100%;
|
32
|
+
height: 100%;
|
33
|
+
position: absolute;
|
34
|
+
left: 0;
|
35
|
+
top: 0; }
|
36
|
+
.sk-fading-circle .sk-circle:before {
|
37
|
+
content: '';
|
38
|
+
display: block;
|
39
|
+
margin: 0 auto;
|
40
|
+
width: 15%;
|
41
|
+
height: 15%;
|
42
|
+
background-color: #333;
|
43
|
+
border-radius: 100%;
|
44
|
+
-webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
|
45
|
+
animation: sk-circleFadeDelay 1.2s infinite ease-in-out both; }
|
46
|
+
.sk-fading-circle .sk-circle2 {
|
47
|
+
-webkit-transform: rotate(30deg);
|
48
|
+
-ms-transform: rotate(30deg);
|
49
|
+
transform: rotate(30deg); }
|
50
|
+
.sk-fading-circle .sk-circle3 {
|
51
|
+
-webkit-transform: rotate(60deg);
|
52
|
+
-ms-transform: rotate(60deg);
|
53
|
+
transform: rotate(60deg); }
|
54
|
+
.sk-fading-circle .sk-circle4 {
|
55
|
+
-webkit-transform: rotate(90deg);
|
56
|
+
-ms-transform: rotate(90deg);
|
57
|
+
transform: rotate(90deg); }
|
58
|
+
.sk-fading-circle .sk-circle5 {
|
59
|
+
-webkit-transform: rotate(120deg);
|
60
|
+
-ms-transform: rotate(120deg);
|
61
|
+
transform: rotate(120deg); }
|
62
|
+
.sk-fading-circle .sk-circle6 {
|
63
|
+
-webkit-transform: rotate(150deg);
|
64
|
+
-ms-transform: rotate(150deg);
|
65
|
+
transform: rotate(150deg); }
|
66
|
+
.sk-fading-circle .sk-circle7 {
|
67
|
+
-webkit-transform: rotate(180deg);
|
68
|
+
-ms-transform: rotate(180deg);
|
69
|
+
transform: rotate(180deg); }
|
70
|
+
.sk-fading-circle .sk-circle8 {
|
71
|
+
-webkit-transform: rotate(210deg);
|
72
|
+
-ms-transform: rotate(210deg);
|
73
|
+
transform: rotate(210deg); }
|
74
|
+
.sk-fading-circle .sk-circle9 {
|
75
|
+
-webkit-transform: rotate(240deg);
|
76
|
+
-ms-transform: rotate(240deg);
|
77
|
+
transform: rotate(240deg); }
|
78
|
+
.sk-fading-circle .sk-circle10 {
|
79
|
+
-webkit-transform: rotate(270deg);
|
80
|
+
-ms-transform: rotate(270deg);
|
81
|
+
transform: rotate(270deg); }
|
82
|
+
.sk-fading-circle .sk-circle11 {
|
83
|
+
-webkit-transform: rotate(300deg);
|
84
|
+
-ms-transform: rotate(300deg);
|
85
|
+
transform: rotate(300deg); }
|
86
|
+
.sk-fading-circle .sk-circle12 {
|
87
|
+
-webkit-transform: rotate(330deg);
|
88
|
+
-ms-transform: rotate(330deg);
|
89
|
+
transform: rotate(330deg); }
|
90
|
+
.sk-fading-circle .sk-circle2:before {
|
91
|
+
-webkit-animation-delay: -1.1s;
|
92
|
+
animation-delay: -1.1s; }
|
93
|
+
.sk-fading-circle .sk-circle3:before {
|
94
|
+
-webkit-animation-delay: -1s;
|
95
|
+
animation-delay: -1s; }
|
96
|
+
.sk-fading-circle .sk-circle4:before {
|
97
|
+
-webkit-animation-delay: -0.9s;
|
98
|
+
animation-delay: -0.9s; }
|
99
|
+
.sk-fading-circle .sk-circle5:before {
|
100
|
+
-webkit-animation-delay: -0.8s;
|
101
|
+
animation-delay: -0.8s; }
|
102
|
+
.sk-fading-circle .sk-circle6:before {
|
103
|
+
-webkit-animation-delay: -0.7s;
|
104
|
+
animation-delay: -0.7s; }
|
105
|
+
.sk-fading-circle .sk-circle7:before {
|
106
|
+
-webkit-animation-delay: -0.6s;
|
107
|
+
animation-delay: -0.6s; }
|
108
|
+
.sk-fading-circle .sk-circle8:before {
|
109
|
+
-webkit-animation-delay: -0.5s;
|
110
|
+
animation-delay: -0.5s; }
|
111
|
+
.sk-fading-circle .sk-circle9:before {
|
112
|
+
-webkit-animation-delay: -0.4s;
|
113
|
+
animation-delay: -0.4s; }
|
114
|
+
.sk-fading-circle .sk-circle10:before {
|
115
|
+
-webkit-animation-delay: -0.3s;
|
116
|
+
animation-delay: -0.3s; }
|
117
|
+
.sk-fading-circle .sk-circle11:before {
|
118
|
+
-webkit-animation-delay: -0.2s;
|
119
|
+
animation-delay: -0.2s; }
|
120
|
+
.sk-fading-circle .sk-circle12:before {
|
121
|
+
-webkit-animation-delay: -0.1s;
|
122
|
+
animation-delay: -0.1s; }
|
123
|
+
|
124
|
+
@-webkit-keyframes sk-circleFadeDelay {
|
125
|
+
0%, 39%, 100% {
|
126
|
+
opacity: 0; }
|
127
|
+
40% {
|
128
|
+
opacity: 1; } }
|
129
|
+
|
130
|
+
@keyframes sk-circleFadeDelay {
|
131
|
+
0%, 39%, 100% {
|
132
|
+
opacity: 0; }
|
133
|
+
40% {
|
134
|
+
opacity: 1; } }
|
135
|
+
|
136
|
+
</style>
|
137
|
+
</head>
|
138
|
+
<body>
|
139
|
+
|
140
|
+
|
141
|
+
<div class="sk-fading-circle">
|
142
|
+
<div class="sk-circle1 sk-circle"></div>
|
143
|
+
<div class="sk-circle2 sk-circle"></div>
|
144
|
+
<div class="sk-circle3 sk-circle"></div>
|
145
|
+
<div class="sk-circle4 sk-circle"></div>
|
146
|
+
<div class="sk-circle5 sk-circle"></div>
|
147
|
+
<div class="sk-circle6 sk-circle"></div>
|
148
|
+
<div class="sk-circle7 sk-circle"></div>
|
149
|
+
<div class="sk-circle8 sk-circle"></div>
|
150
|
+
<div class="sk-circle9 sk-circle"></div>
|
151
|
+
<div class="sk-circle10 sk-circle"></div>
|
152
|
+
<div class="sk-circle11 sk-circle"></div>
|
153
|
+
<div class="sk-circle12 sk-circle"></div>
|
154
|
+
</div>
|
155
|
+
</body>
|
156
|
+
</html>
|
@@ -0,0 +1,104 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>11 folding cube</title>
|
5
|
+
<style type="text/css">
|
6
|
+
/*
|
7
|
+
* Usage:
|
8
|
+
*
|
9
|
+
<div class="sk-folding-cube">
|
10
|
+
<div class="sk-cube1 sk-cube"></div>
|
11
|
+
<div class="sk-cube2 sk-cube"></div>
|
12
|
+
<div class="sk-cube4 sk-cube"></div>
|
13
|
+
<div class="sk-cube3 sk-cube"></div>
|
14
|
+
</div>
|
15
|
+
*
|
16
|
+
*/
|
17
|
+
.sk-folding-cube {
|
18
|
+
margin: 40px auto;
|
19
|
+
width: 40px;
|
20
|
+
height: 40px;
|
21
|
+
position: relative;
|
22
|
+
-webkit-transform: rotateZ(45deg);
|
23
|
+
transform: rotateZ(45deg); }
|
24
|
+
.sk-folding-cube .sk-cube {
|
25
|
+
float: left;
|
26
|
+
width: 50%;
|
27
|
+
height: 50%;
|
28
|
+
position: relative;
|
29
|
+
-webkit-transform: scale(1.1);
|
30
|
+
-ms-transform: scale(1.1);
|
31
|
+
transform: scale(1.1); }
|
32
|
+
.sk-folding-cube .sk-cube:before {
|
33
|
+
content: '';
|
34
|
+
position: absolute;
|
35
|
+
top: 0;
|
36
|
+
left: 0;
|
37
|
+
width: 100%;
|
38
|
+
height: 100%;
|
39
|
+
background-color: #333;
|
40
|
+
-webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
|
41
|
+
animation: sk-foldCubeAngle 2.4s infinite linear both;
|
42
|
+
-webkit-transform-origin: 100% 100%;
|
43
|
+
-ms-transform-origin: 100% 100%;
|
44
|
+
transform-origin: 100% 100%; }
|
45
|
+
.sk-folding-cube .sk-cube2 {
|
46
|
+
-webkit-transform: scale(1.1) rotateZ(90deg);
|
47
|
+
transform: scale(1.1) rotateZ(90deg); }
|
48
|
+
.sk-folding-cube .sk-cube3 {
|
49
|
+
-webkit-transform: scale(1.1) rotateZ(180deg);
|
50
|
+
transform: scale(1.1) rotateZ(180deg); }
|
51
|
+
.sk-folding-cube .sk-cube4 {
|
52
|
+
-webkit-transform: scale(1.1) rotateZ(270deg);
|
53
|
+
transform: scale(1.1) rotateZ(270deg); }
|
54
|
+
.sk-folding-cube .sk-cube2:before {
|
55
|
+
-webkit-animation-delay: 0.3s;
|
56
|
+
animation-delay: 0.3s; }
|
57
|
+
.sk-folding-cube .sk-cube3:before {
|
58
|
+
-webkit-animation-delay: 0.6s;
|
59
|
+
animation-delay: 0.6s; }
|
60
|
+
.sk-folding-cube .sk-cube4:before {
|
61
|
+
-webkit-animation-delay: 0.9s;
|
62
|
+
animation-delay: 0.9s; }
|
63
|
+
|
64
|
+
@-webkit-keyframes sk-foldCubeAngle {
|
65
|
+
0%, 10% {
|
66
|
+
-webkit-transform: perspective(140px) rotateX(-180deg);
|
67
|
+
transform: perspective(140px) rotateX(-180deg);
|
68
|
+
opacity: 0; }
|
69
|
+
25%, 75% {
|
70
|
+
-webkit-transform: perspective(140px) rotateX(0deg);
|
71
|
+
transform: perspective(140px) rotateX(0deg);
|
72
|
+
opacity: 1; }
|
73
|
+
90%, 100% {
|
74
|
+
-webkit-transform: perspective(140px) rotateY(180deg);
|
75
|
+
transform: perspective(140px) rotateY(180deg);
|
76
|
+
opacity: 0; } }
|
77
|
+
|
78
|
+
@keyframes sk-foldCubeAngle {
|
79
|
+
0%, 10% {
|
80
|
+
-webkit-transform: perspective(140px) rotateX(-180deg);
|
81
|
+
transform: perspective(140px) rotateX(-180deg);
|
82
|
+
opacity: 0; }
|
83
|
+
25%, 75% {
|
84
|
+
-webkit-transform: perspective(140px) rotateX(0deg);
|
85
|
+
transform: perspective(140px) rotateX(0deg);
|
86
|
+
opacity: 1; }
|
87
|
+
90%, 100% {
|
88
|
+
-webkit-transform: perspective(140px) rotateY(180deg);
|
89
|
+
transform: perspective(140px) rotateY(180deg);
|
90
|
+
opacity: 0; } }
|
91
|
+
|
92
|
+
</style>
|
93
|
+
</head>
|
94
|
+
<body>
|
95
|
+
|
96
|
+
|
97
|
+
<div class="sk-folding-cube">
|
98
|
+
<div class="sk-cube1 sk-cube"></div>
|
99
|
+
<div class="sk-cube2 sk-cube"></div>
|
100
|
+
<div class="sk-cube4 sk-cube"></div>
|
101
|
+
<div class="sk-cube3 sk-cube"></div>
|
102
|
+
</div>
|
103
|
+
</body>
|
104
|
+
</html>
|
@@ -0,0 +1,61 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>2 double bounce</title>
|
5
|
+
<style type="text/css">
|
6
|
+
/*
|
7
|
+
* Usage:
|
8
|
+
*
|
9
|
+
<div class="sk-double-bounce">
|
10
|
+
<div class="sk-child sk-double-bounce1"></div>
|
11
|
+
<div class="sk-child sk-double-bounce2"></div>
|
12
|
+
</div>
|
13
|
+
*
|
14
|
+
*/
|
15
|
+
.sk-double-bounce {
|
16
|
+
width: 40px;
|
17
|
+
height: 40px;
|
18
|
+
position: relative;
|
19
|
+
margin: 40px auto; }
|
20
|
+
.sk-double-bounce .sk-child {
|
21
|
+
width: 100%;
|
22
|
+
height: 100%;
|
23
|
+
border-radius: 50%;
|
24
|
+
background-color: #333;
|
25
|
+
opacity: 0.6;
|
26
|
+
position: absolute;
|
27
|
+
top: 0;
|
28
|
+
left: 0;
|
29
|
+
-webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
|
30
|
+
animation: sk-doubleBounce 2s infinite ease-in-out; }
|
31
|
+
.sk-double-bounce .sk-double-bounce2 {
|
32
|
+
-webkit-animation-delay: -1.0s;
|
33
|
+
animation-delay: -1.0s; }
|
34
|
+
|
35
|
+
@-webkit-keyframes sk-doubleBounce {
|
36
|
+
0%, 100% {
|
37
|
+
-webkit-transform: scale(0);
|
38
|
+
transform: scale(0); }
|
39
|
+
50% {
|
40
|
+
-webkit-transform: scale(1);
|
41
|
+
transform: scale(1); } }
|
42
|
+
|
43
|
+
@keyframes sk-doubleBounce {
|
44
|
+
0%, 100% {
|
45
|
+
-webkit-transform: scale(0);
|
46
|
+
transform: scale(0); }
|
47
|
+
50% {
|
48
|
+
-webkit-transform: scale(1);
|
49
|
+
transform: scale(1); } }
|
50
|
+
|
51
|
+
</style>
|
52
|
+
</head>
|
53
|
+
<body>
|
54
|
+
|
55
|
+
|
56
|
+
<div class="sk-double-bounce">
|
57
|
+
<div class="sk-child sk-double-bounce1"></div>
|
58
|
+
<div class="sk-child sk-double-bounce2"></div>
|
59
|
+
</div>
|
60
|
+
</body>
|
61
|
+
</html>
|
@@ -0,0 +1,76 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>3 wave</title>
|
5
|
+
<style type="text/css">
|
6
|
+
/*
|
7
|
+
* Usage:
|
8
|
+
*
|
9
|
+
<div class="sk-wave">
|
10
|
+
<div class="sk-rect sk-rect1"></div>
|
11
|
+
<div class="sk-rect sk-rect2"></div>
|
12
|
+
<div class="sk-rect sk-rect3"></div>
|
13
|
+
<div class="sk-rect sk-rect4"></div>
|
14
|
+
<div class="sk-rect sk-rect5"></div>
|
15
|
+
</div>
|
16
|
+
*
|
17
|
+
*/
|
18
|
+
.sk-wave {
|
19
|
+
margin: 40px auto;
|
20
|
+
width: 50px;
|
21
|
+
height: 40px;
|
22
|
+
text-align: center;
|
23
|
+
font-size: 10px; }
|
24
|
+
.sk-wave .sk-rect {
|
25
|
+
background-color: #333;
|
26
|
+
height: 100%;
|
27
|
+
width: 6px;
|
28
|
+
display: inline-block;
|
29
|
+
-webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
|
30
|
+
animation: sk-waveStretchDelay 1.2s infinite ease-in-out; }
|
31
|
+
.sk-wave .sk-rect1 {
|
32
|
+
-webkit-animation-delay: -1.2s;
|
33
|
+
animation-delay: -1.2s; }
|
34
|
+
.sk-wave .sk-rect2 {
|
35
|
+
-webkit-animation-delay: -1.1s;
|
36
|
+
animation-delay: -1.1s; }
|
37
|
+
.sk-wave .sk-rect3 {
|
38
|
+
-webkit-animation-delay: -1s;
|
39
|
+
animation-delay: -1s; }
|
40
|
+
.sk-wave .sk-rect4 {
|
41
|
+
-webkit-animation-delay: -0.9s;
|
42
|
+
animation-delay: -0.9s; }
|
43
|
+
.sk-wave .sk-rect5 {
|
44
|
+
-webkit-animation-delay: -0.8s;
|
45
|
+
animation-delay: -0.8s; }
|
46
|
+
|
47
|
+
@-webkit-keyframes sk-waveStretchDelay {
|
48
|
+
0%, 40%, 100% {
|
49
|
+
-webkit-transform: scaleY(0.4);
|
50
|
+
transform: scaleY(0.4); }
|
51
|
+
20% {
|
52
|
+
-webkit-transform: scaleY(1);
|
53
|
+
transform: scaleY(1); } }
|
54
|
+
|
55
|
+
@keyframes sk-waveStretchDelay {
|
56
|
+
0%, 40%, 100% {
|
57
|
+
-webkit-transform: scaleY(0.4);
|
58
|
+
transform: scaleY(0.4); }
|
59
|
+
20% {
|
60
|
+
-webkit-transform: scaleY(1);
|
61
|
+
transform: scaleY(1); } }
|
62
|
+
|
63
|
+
</style>
|
64
|
+
</head>
|
65
|
+
<body>
|
66
|
+
|
67
|
+
|
68
|
+
<div class="sk-wave">
|
69
|
+
<div class="sk-rect sk-rect1"></div>
|
70
|
+
<div class="sk-rect sk-rect2"></div>
|
71
|
+
<div class="sk-rect sk-rect3"></div>
|
72
|
+
<div class="sk-rect sk-rect4"></div>
|
73
|
+
<div class="sk-rect sk-rect5"></div>
|
74
|
+
</div>
|
75
|
+
</body>
|
76
|
+
</html>
|
@@ -0,0 +1,85 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>4 wandering cubes</title>
|
5
|
+
<style type="text/css">
|
6
|
+
/*
|
7
|
+
* Usage:
|
8
|
+
*
|
9
|
+
<div class="sk-wandering-cubes">
|
10
|
+
<div class="sk-cube sk-cube1"></div>
|
11
|
+
<div class="sk-cube sk-cube2"></div>
|
12
|
+
</div>
|
13
|
+
*
|
14
|
+
*/
|
15
|
+
.sk-wandering-cubes {
|
16
|
+
margin: 40px auto;
|
17
|
+
width: 40px;
|
18
|
+
height: 40px;
|
19
|
+
position: relative; }
|
20
|
+
.sk-wandering-cubes .sk-cube {
|
21
|
+
background-color: #333;
|
22
|
+
width: 10px;
|
23
|
+
height: 10px;
|
24
|
+
position: absolute;
|
25
|
+
top: 0;
|
26
|
+
left: 0;
|
27
|
+
-webkit-animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
|
28
|
+
animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both; }
|
29
|
+
.sk-wandering-cubes .sk-cube2 {
|
30
|
+
-webkit-animation-delay: -0.9s;
|
31
|
+
animation-delay: -0.9s; }
|
32
|
+
|
33
|
+
@-webkit-keyframes sk-wanderingCube {
|
34
|
+
0% {
|
35
|
+
-webkit-transform: rotate(0deg);
|
36
|
+
transform: rotate(0deg); }
|
37
|
+
25% {
|
38
|
+
-webkit-transform: translateX(30px) rotate(-90deg) scale(0.5);
|
39
|
+
transform: translateX(30px) rotate(-90deg) scale(0.5); }
|
40
|
+
50% {
|
41
|
+
/* Hack to make FF rotate in the right direction */
|
42
|
+
-webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
|
43
|
+
transform: translateX(30px) translateY(30px) rotate(-179deg); }
|
44
|
+
50.1% {
|
45
|
+
-webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
|
46
|
+
transform: translateX(30px) translateY(30px) rotate(-180deg); }
|
47
|
+
75% {
|
48
|
+
-webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
|
49
|
+
transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5); }
|
50
|
+
100% {
|
51
|
+
-webkit-transform: rotate(-360deg);
|
52
|
+
transform: rotate(-360deg); } }
|
53
|
+
|
54
|
+
@keyframes sk-wanderingCube {
|
55
|
+
0% {
|
56
|
+
-webkit-transform: rotate(0deg);
|
57
|
+
transform: rotate(0deg); }
|
58
|
+
25% {
|
59
|
+
-webkit-transform: translateX(30px) rotate(-90deg) scale(0.5);
|
60
|
+
transform: translateX(30px) rotate(-90deg) scale(0.5); }
|
61
|
+
50% {
|
62
|
+
/* Hack to make FF rotate in the right direction */
|
63
|
+
-webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
|
64
|
+
transform: translateX(30px) translateY(30px) rotate(-179deg); }
|
65
|
+
50.1% {
|
66
|
+
-webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
|
67
|
+
transform: translateX(30px) translateY(30px) rotate(-180deg); }
|
68
|
+
75% {
|
69
|
+
-webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
|
70
|
+
transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5); }
|
71
|
+
100% {
|
72
|
+
-webkit-transform: rotate(-360deg);
|
73
|
+
transform: rotate(-360deg); } }
|
74
|
+
|
75
|
+
</style>
|
76
|
+
</head>
|
77
|
+
<body>
|
78
|
+
|
79
|
+
|
80
|
+
<div class="sk-wandering-cubes">
|
81
|
+
<div class="sk-cube sk-cube1"></div>
|
82
|
+
<div class="sk-cube sk-cube2"></div>
|
83
|
+
</div>
|
84
|
+
</body>
|
85
|
+
</html>
|
@@ -0,0 +1,46 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>5 pulse</title>
|
5
|
+
<style type="text/css">
|
6
|
+
/*
|
7
|
+
* Usage:
|
8
|
+
*
|
9
|
+
<div class="sk-spinner sk-spinner-pulse"></div>
|
10
|
+
*
|
11
|
+
*/
|
12
|
+
.sk-spinner-pulse {
|
13
|
+
width: 40px;
|
14
|
+
height: 40px;
|
15
|
+
margin: 40px auto;
|
16
|
+
background-color: #333;
|
17
|
+
border-radius: 100%;
|
18
|
+
-webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
|
19
|
+
animation: sk-pulseScaleOut 1s infinite ease-in-out; }
|
20
|
+
|
21
|
+
@-webkit-keyframes sk-pulseScaleOut {
|
22
|
+
0% {
|
23
|
+
-webkit-transform: scale(0);
|
24
|
+
transform: scale(0); }
|
25
|
+
100% {
|
26
|
+
-webkit-transform: scale(1);
|
27
|
+
transform: scale(1);
|
28
|
+
opacity: 0; } }
|
29
|
+
|
30
|
+
@keyframes sk-pulseScaleOut {
|
31
|
+
0% {
|
32
|
+
-webkit-transform: scale(0);
|
33
|
+
transform: scale(0); }
|
34
|
+
100% {
|
35
|
+
-webkit-transform: scale(1);
|
36
|
+
transform: scale(1);
|
37
|
+
opacity: 0; } }
|
38
|
+
|
39
|
+
</style>
|
40
|
+
</head>
|
41
|
+
<body>
|
42
|
+
|
43
|
+
|
44
|
+
<div class="sk-spinner sk-spinner-pulse"></div>
|
45
|
+
</body>
|
46
|
+
</html>
|