active_frontend 6.2.0 → 6.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/lib/active_frontend/version.rb +1 -1
  3. data/vendor/assets/stylesheets/_animation.scss +0 -2
  4. data/vendor/assets/stylesheets/_aside.scss +3 -3
  5. data/vendor/assets/stylesheets/_breadcrumb.scss +2 -2
  6. data/vendor/assets/stylesheets/_button.scss +196 -133
  7. data/vendor/assets/stylesheets/_carousel.scss +24 -24
  8. data/vendor/assets/stylesheets/_collapse.scss +1 -1
  9. data/vendor/assets/stylesheets/_datepicker.scss +31 -62
  10. data/vendor/assets/stylesheets/_dropdown.scss +6 -10
  11. data/vendor/assets/stylesheets/_footer.scss +3 -3
  12. data/vendor/assets/stylesheets/_form.scss +52 -71
  13. data/vendor/assets/stylesheets/_header.scss +79 -93
  14. data/vendor/assets/stylesheets/_icon.scss +2 -16
  15. data/vendor/assets/stylesheets/_image.scss +1 -1
  16. data/vendor/assets/stylesheets/_link.scss +2 -1
  17. data/vendor/assets/stylesheets/_list.scss +9 -10
  18. data/vendor/assets/stylesheets/_loader.scss +3 -11
  19. data/vendor/assets/stylesheets/_modal.scss +7 -7
  20. data/vendor/assets/stylesheets/_nav_and_tab.scss +23 -24
  21. data/vendor/assets/stylesheets/_navbar.scss +3 -3
  22. data/vendor/assets/stylesheets/_pagination.scss +17 -15
  23. data/vendor/assets/stylesheets/_panel.scss +6 -27
  24. data/vendor/assets/stylesheets/_placeholder.scss +5 -5
  25. data/vendor/assets/stylesheets/_popover.scss +20 -21
  26. data/vendor/assets/stylesheets/_progress.scss +3 -3
  27. data/vendor/assets/stylesheets/_reset.scss +3 -3
  28. data/vendor/assets/stylesheets/_spinner.scss +313 -403
  29. data/vendor/assets/stylesheets/_swoggle.scss +8 -10
  30. data/vendor/assets/stylesheets/_table.scss +4 -13
  31. data/vendor/assets/stylesheets/_timepicker.scss +12 -18
  32. data/vendor/assets/stylesheets/_tooltip.scss +7 -7
  33. data/vendor/assets/stylesheets/_transition.scss +2 -2
  34. data/vendor/assets/stylesheets/_trunk.scss +32 -51
  35. data/vendor/assets/stylesheets/_typeahead.scss +1 -1
  36. metadata +2 -2
@@ -30,10 +30,10 @@
30
30
  text-align: center;
31
31
  width: 1%;
32
32
  }
33
- .navbar > a.active,
34
- .navbar > a:active,
35
33
  .navbar > a:hover,
36
- .navbar > a:focus { color: rgba(255,255,255,1); }
34
+ .navbar > a:focus,
35
+ .navbar > a.active,
36
+ .navbar > a:active { color: rgba(255,255,255,1); }
37
37
 
38
38
  /* # Media Queries
39
39
  ================================================== */
@@ -4,38 +4,40 @@
4
4
 
5
5
  /* # Pagination
6
6
  ================================================== */
7
- .pagination ul {
7
+ .pagination > ul {
8
8
  display: inline-block;
9
- margin-bottom: 0;
10
- margin-left: 0;
9
+ margin: 0;
11
10
  padding: 0;
12
11
  }
13
- .pagination ul > li {
14
- display: inline-block ;
12
+ .pagination > ul > li {
13
+ display: inline-block;
15
14
  font-size: 14px;
16
15
  line-height: 14px;
17
16
  margin-right: 2px;
18
17
  }
19
- .pagination ul > li > a {
18
+ .pagination > ul > li > a,
19
+ .pagination > ul > li.active {
20
20
  background: rgba(245,248,250,1);
21
21
  border-radius: 500px;
22
22
  color: rgba(35,41,55,1);
23
23
  min-width: 8px;
24
24
  padding: 9px 10px 7px 10px;
25
- text-decoration: none;
26
25
  text-align: center;
26
+ text-decoration: none;
27
27
  }
28
- .pagination ul > li > a:hover,
29
- .pagination ul > li > a:focus { background: rgba(235,238,240,1); }
30
- .pagination ul > .active {
28
+ .pagination > ul > li > a:hover,
29
+ .pagination > ul > li > a:focus { background: rgba(235,238,240,1); }
30
+ .pagination > ul > li > a:active,
31
+ .pagination > ul > li.active {
31
32
  background: $primary-color;
32
- border-radius: 500px;
33
33
  color: rgba(255,255,255,1);
34
- min-width: 8px;
35
- padding: 8px 10px 6px 10px;
36
- text-align: center;
37
34
  }
38
- .pagination ul > .pagination-icon > a { padding: 9px 11px 7px 11px; }
35
+ .pagination > ul > li.active {
36
+ padding-bottom: 6px;
37
+ padding-top: 8px;
38
+ }
39
+ .pagination > ul > li.pagination-icon:first-child > a { padding-right: 11px; }
40
+ .pagination > ul > li.pagination-icon:last-child > a { padding-left: 11px; }
39
41
  .pagination-centered { text-align: center; }
40
42
  .pagination-right { text-align: right; }
41
43
  .pagination-left { text-align: left; }
@@ -9,18 +9,6 @@
9
9
  border: 1px solid rgba(225,232,237,1);
10
10
  margin-bottom: 20px;
11
11
  }
12
- .panel > .list-group { margin-bottom: 0; }
13
- .panel > .list-group .list-group-item {
14
- border-radius: 0;
15
- border-width: 1px 0;
16
- }
17
- .panel > .list-group .list-group-item:first-child { border-top: 0; }
18
- .panel > .list-group .list-group-item:last-child { border-bottom: 0; }
19
- .panel-header + .list-group .list-group-item:first-child { border-top-width: 0; }
20
- .panel > .table-responsive {
21
- border: 0;
22
- margin-bottom: 0;
23
- }
24
12
  .panel-header {
25
13
  background: rgba(245,248,250,1);
26
14
  border-bottom: 1px solid rgba(225,232,237,1);
@@ -28,35 +16,26 @@
28
16
  }
29
17
  .panel-header > .btn { margin-top: -2px; }
30
18
  .panel-header > .btn-group { margin: -5px 0 -3px 0; }
31
- .panel-header > .dropdown .dropdown-toggle { color: rgba(35,41,55,1); }
32
19
  .panel-title {
33
20
  color: rgba(35,41,55,1);
34
21
  display: inline-block;
35
22
  font-size: 17px;
36
- line-height: 17px;
23
+ line-height: 1;
37
24
  margin-bottom: 0;
38
25
  margin-top: 0;
39
26
  }
40
27
  .panel-title > a { color: rgba(35,41,55,1); }
41
- .panel-title > a:hover { color: rgba(35,41,55,1); }
42
28
  .panel-body { padding: 15px; }
43
29
  .panel-body-chart {
44
30
  margin-bottom: -10px;
45
31
  width: 100%;
46
32
  }
33
+ .panel-body > .table-responsive {
34
+ border: 0;
35
+ margin-bottom: 0;
36
+ }
47
37
  .panel-footer {
48
38
  background: rgba(245,248,250,1);
49
39
  border-top: 1px solid rgba(225,232,237,1);
50
40
  padding: 13px 15px 10px 15px;
51
- }
52
- .panel-group { margin-bottom: 20px; }
53
- .panel-group .panel {
54
- border-radius: 3px;
55
- margin-bottom: 0;
56
- overflow: hidden;
57
- }
58
- .panel-group .panel + .panel { margin-top: 5px; }
59
- .panel-group .panel-header { border-bottom: 0; }
60
- .panel-group .panel-header + .panel-collapse .panel-body { border-top: 1px solid rgba(225,232,237,1); }
61
- .panel-group .panel-footer { border-top: 0; }
62
- .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid rgba(225,232,237,1); }
41
+ }
@@ -7,7 +7,7 @@
7
7
  /* # Placeholder
8
8
  ================================================== */
9
9
  .placeholder { text-align: center; }
10
- .placeholder i {
10
+ .placeholder > i {
11
11
  background: $primary-color;
12
12
  border-radius: 500px;
13
13
  color: rgba(255,255,255,1);
@@ -17,12 +17,12 @@
17
17
  line-height: 130px;
18
18
  width: 120px;
19
19
  }
20
- .placeholder h6 {
20
+ .placeholder > h6 {
21
21
  color: rgba(85,94,113,1);
22
22
  letter-spacing: 1px;
23
23
  text-transform: uppercase;
24
24
  }
25
- .placeholder p {
25
+ .placeholder > p {
26
26
  color: rgba(136,153,166,1);
27
27
  font-size: 14px;
28
28
  line-height: 22px;
@@ -30,7 +30,7 @@
30
30
 
31
31
  /* # Size
32
32
  ================================================== */
33
- .placeholder-large i {
33
+ .placeholder-large > i {
34
34
  background: transparent;
35
35
  color: rgba(85,94,113,1);
36
36
  display: inline-block;
@@ -51,7 +51,7 @@
51
51
  ================================================== */
52
52
  @media only screen and (max-width: 767px) {
53
53
  .placeholder-divider { width: 75%; }
54
- .placeholder-large i {
54
+ .placeholder-large > i {
55
55
  font-size: 196px;
56
56
  line-height: 196px;
57
57
  }
@@ -15,9 +15,9 @@
15
15
  letter-spacing: 0;
16
16
  left: 0;
17
17
  position: absolute;
18
+ text-align: left;
18
19
  text-decoration: none;
19
20
  text-transform: none;
20
- text-align: left;
21
21
  top: 0;
22
22
  width: 276px;
23
23
  white-space: normal;
@@ -27,27 +27,26 @@
27
27
  .popover.right { margin-left: 10px; }
28
28
  .popover.bottom { margin-top: 10px; }
29
29
  .popover.left { margin-left: -10px; }
30
- .popover-title {
31
- background: rgba(245,248,250,1);
32
- border-bottom: 1px solid rgba(225,232,237,1);
30
+ .popover-title,
31
+ .popover-content {
33
32
  color: rgba(35,41,55,1);
34
- font-weight: bold;
33
+ font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
35
34
  font-size: 14px;
36
35
  letter-spacing: 0;
37
- line-height: 18px;
38
36
  margin: 0;
39
37
  padding: 10px 15px;
40
38
  }
39
+ .popover-title {
40
+ background: rgba(245,248,250,1);
41
+ border-bottom: 1px solid rgba(225,232,237,1);
42
+ font-weight: bold;
43
+ line-height: 18px;
44
+ }
41
45
  .popover-title:empty { display: none; }
42
46
  .popover-content {
43
47
  background: rgba(255,255,255,1);
44
- color: rgba(35,41,55,1);
45
- font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
46
48
  font-weight: normal;
47
- font-size: 14px;
48
- letter-spacing: 0;
49
49
  line-height: 20px;
50
- padding: 10px 15px;
51
50
  }
52
51
  .popover .arrow,
53
52
  .popover .arrow:after {
@@ -58,58 +57,58 @@
58
57
  position: absolute;
59
58
  width: 0;
60
59
  }
61
- .popover .arrow { border-width: 11px; }
62
- .popover .arrow:after {
60
+ .popover > .arrow { border-width: 11px; }
61
+ .popover > .arrow:after {
63
62
  border-width: 10px;
64
63
  content: "";
65
64
  }
66
- .popover.top .arrow {
65
+ .popover.top > .arrow {
67
66
  border-bottom-width: 0;
68
67
  border-top-color: rgba(235,238,240,1);
69
68
  bottom: -11px;
70
69
  left: 50%;
71
70
  margin-left: -11px;
72
71
  }
73
- .popover.top .arrow:after {
72
+ .popover.top > .arrow:after {
74
73
  border-bottom-width: 0;
75
74
  border-top-color: rgba(255,255,255,1);
76
75
  bottom: 1px;
77
76
  margin-left: -10px;
78
77
  }
79
- .popover.right .arrow {
78
+ .popover.right > .arrow {
80
79
  border-right-color: rgba(235,238,240,1);
81
80
  border-left-width: 0;
82
81
  left: -11px;
83
82
  margin-top: -11px;
84
83
  top: 50%;
85
84
  }
86
- .popover.right .arrow:after {
85
+ .popover.right > .arrow:after {
87
86
  border-right-color: rgba(255,255,255,1);
88
87
  border-left-width: 0;
89
88
  bottom: -10px;
90
89
  left: 1px;
91
90
  }
92
- .popover.bottom .arrow {
91
+ .popover.bottom > .arrow {
93
92
  border-bottom-color: rgba(235,238,240,1);
94
93
  border-top-width: 0;
95
94
  left: 50%;
96
95
  margin-left: -11px;
97
96
  top: -11px;
98
97
  }
99
- .popover.bottom .arrow:after {
98
+ .popover.bottom > .arrow:after {
100
99
  border-bottom-color: rgba(255,255,255,1);
101
100
  border-top-width: 0;
102
101
  margin-left: -10px;
103
102
  top: 1px;
104
103
  }
105
- .popover.left .arrow {
104
+ .popover.left > .arrow {
106
105
  border-right-width: 0;
107
106
  border-left-color: rgba(235,238,240,1);
108
107
  margin-top: -11px;
109
108
  right: -11px;
110
109
  top: 50%;
111
110
  }
112
- .popover.left .arrow:after {
111
+ .popover.left > .arrow:after {
113
112
  border-right-width: 0;
114
113
  border-left-color: rgba(255,255,255,1);
115
114
  bottom: -10px;
@@ -18,7 +18,7 @@
18
18
  height: 25px;
19
19
  overflow: hidden;
20
20
  }
21
- .progress .bar {
21
+ .progress > .bar {
22
22
  background: $primary-color;
23
23
  box-sizing: border-box;
24
24
  color: rgba(255,255,255,1);
@@ -30,13 +30,13 @@
30
30
  text-align: center;
31
31
  width: 0;
32
32
  }
33
- .progress .bar-striped {
33
+ .progress > .bar-striped {
34
34
  background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
35
35
  background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
36
36
  -webkit-background-size: 40px 40px;
37
37
  background-size: 40px 40px;
38
38
  }
39
- .progress .bar-striped.active {
39
+ .progress > .bar-striped.active {
40
40
  -webkit-animation: progressBarStripes 2s linear infinite;
41
41
  animation: progressBarStripes 2s linear infinite;
42
42
  }
@@ -38,8 +38,8 @@ code,
38
38
  dfn,
39
39
  th,
40
40
  var {
41
- font-weight: normal;
42
41
  font-style: normal;
42
+ font-weight: normal;
43
43
  }
44
44
  h1,
45
45
  h2,
@@ -47,8 +47,8 @@ h3,
47
47
  h4,
48
48
  h5,
49
49
  h6 {
50
- font-weight: normal;
51
50
  font-size: 100%;
51
+ font-weight: normal;
52
52
  }
53
53
  abbr,
54
54
  acronym {
@@ -68,9 +68,9 @@ input,
68
68
  textarea,
69
69
  select {
70
70
  font-family: inherit;
71
- font-weight: inherit;
72
71
  font-size: inherit;
73
72
  *font-size: 100%;
73
+ font-weight: inherit;
74
74
  }
75
75
  html,
76
76
  body {
@@ -4,90 +4,50 @@
4
4
 
5
5
  /* # Spinner
6
6
  ================================================== */
7
- .spinner-backdrop {
8
- background: rgba(255,255,255,0.9);
9
- bottom: 0;
10
- left: 0;
11
- position: fixed;
12
- right: 0;
13
- top: 0;
14
- z-index: 2040;
15
- }
16
- .spinner {
17
- -webkit-animation-fill-mode: both;
18
- animation-fill-mode: both;
19
- -webkit-backface-visibility: hidden !important;
20
- backface-visibility: hidden !important;
21
- -webkit-perspective: 1000;
22
- perspective: 1000;
23
- margin: 15% auto 0 auto;
24
- position: relative;
25
- text-align: center;
26
- }
27
7
  @-webkit-keyframes spinnerBeat {
28
8
  0% {
29
9
  -webkit-transform: scale(1);
30
- -ms-transform: scale(1);
31
10
  transform: scale(1);
32
11
  }
33
12
  14% {
34
13
  -webkit-transform: scale(1.5);
35
- -ms-transform: scale(1.5);
36
14
  transform: scale(1.5);
37
15
  }
38
16
  28% {
39
17
  -webkit-transform: scale(1);
40
- -ms-transform: scale(1);
41
18
  transform: scale(1);
42
19
  }
43
20
  42% {
44
21
  -webkit-transform: scale(1.5);
45
- -ms-transform: scale(1.5);
46
22
  transform: scale(1.5);
47
23
  }
48
24
  70% {
49
25
  -webkit-transform: scale(1);
50
- -ms-transform: scale(1);
51
26
  transform: scale(1);
52
27
  }
53
28
  }
54
29
  @keyframes spinnerBeat {
55
30
  0% {
56
31
  -webkit-transform: scale(1);
57
- -ms-transform: scale(1);
58
32
  transform: scale(1);
59
33
  }
60
34
  14% {
61
35
  -webkit-transform: scale(1.5);
62
- -ms-transform: scale(1.5);
63
36
  transform: scale(1.5);
64
37
  }
65
38
  28% {
66
39
  -webkit-transform: scale(1);
67
- -ms-transform: scale(1);
68
40
  transform: scale(1);
69
41
  }
70
42
  42% {
71
43
  -webkit-transform: scale(1.5);
72
- -ms-transform: scale(1.5);
73
44
  transform: scale(1.5);
74
45
  }
75
46
  70% {
76
47
  -webkit-transform: scale(1);
77
- -ms-transform: scale(1);
78
48
  transform: scale(1);
79
49
  }
80
50
  }
81
- .spinner-beat {
82
- -webkit-animation: spinnerBeat 1.3s infinite ease-in-out;
83
- animation: spinnerBeat 1.3s infinite ease-in-out;
84
- background: rgba(255,255,255,1);
85
- border: 2px solid $primary-color;
86
- border-radius: 500px;
87
- box-sizing: border-box;
88
- height: 50px;
89
- width: 50px;
90
- }
91
51
  @-webkit-keyframes spinnerCircle {
92
52
  0%, 80%, 100% { -webkit-transform: scale(0); }
93
53
  40% { -webkit-transform: scale(1.0); }
@@ -95,112 +55,19 @@
95
55
  @keyframes spinnerCircle {
96
56
  0%, 80%, 100% {
97
57
  -webkit-transform: scale(0);
98
- -ms-transform: scale(0);
99
58
  transform: scale(0);
100
59
  }
101
60
  40% {
102
61
  -webkit-transform: scale(1.0);
103
- -ms-transform: scale(1.0);
104
62
  transform: scale(1.0);
105
63
  }
106
64
  }
107
- .spinner-circle {
108
- height: 60px;
109
- width: 60px;
110
- }
111
- .spinner-circle-container-1 > div,
112
- .spinner-circle-container-2 > div,
113
- .spinner-circle-container-3 > div {
114
- -webkit-animation: spinnerCircle 1.2s infinite ease-in-out;
115
- animation: spinnerCircle 1.2s infinite ease-in-out;
116
- background: $primary-color;
117
- border: 1px solid $primary-color;
118
- border-radius: 500px;
119
- box-sizing: border-box;
120
- height: 15px;
121
- position: absolute;
122
- width: 15px;
123
- }
124
- .spinner-circle .spinner-circle-container {
125
- position: absolute;
126
- height: 100%;
127
- width: 100%;
128
- }
129
- .spinner-circle-container-2 {
130
- -webkit-transform: rotateZ(45deg);
131
- transform: rotateZ(45deg);
132
- }
133
- .spinner-circle-container-3 {
134
- -webkit-transform: rotateZ(90deg);
135
- transform: rotateZ(90deg);
136
- }
137
- .spinner-circle-1 {
138
- left: 0;
139
- top: 0;
140
- }
141
- .spinner-circle-2 {
142
- right: 0;
143
- top: 0;
144
- }
145
- .spinner-circle-3 {
146
- bottom: 0;
147
- right: 0;
148
- }
149
- .spinner-circle-4 {
150
- bottom: 0;
151
- left: 0;
152
- }
153
- .spinner-circle-container-2 .spinner-circle-1 {
154
- -webkit-animation-delay: -1.1s;
155
- animation-delay: -1.1s;
156
- }
157
- .spinner-circle-container-3 .spinner-circle-1 {
158
- -webkit-animation-delay: -1.0s;
159
- animation-delay: -1.0s;
160
- }
161
- .spinner-circle-container-1 .spinner-circle-2 {
162
- -webkit-animation-delay: -0.9s;
163
- animation-delay: -0.9s;
164
- }
165
- .spinner-circle-container-2 .spinner-circle-2 {
166
- -webkit-animation-delay: -0.8s;
167
- animation-delay: -0.8s;
168
- }
169
- .spinner-circle-container-3 .spinner-circle-2 {
170
- -webkit-animation-delay: -0.7s;
171
- animation-delay: -0.7s;
172
- }
173
- .spinner-circle-container-1 .spinner-circle-3 {
174
- -webkit-animation-delay: -0.6s;
175
- animation-delay: -0.6s;
176
- }
177
- .spinner-circle-container-2 .spinner-circle-3 {
178
- -webkit-animation-delay: -0.5s;
179
- animation-delay: -0.5s;
180
- }
181
- .spinner-circle-container-3 .spinner-circle-3 {
182
- -webkit-animation-delay: -0.4s;
183
- animation-delay: -0.4s;
184
- }
185
- .spinner-circle-container-1 .spinner-circle-4 {
186
- -webkit-animation-delay: -0.3s;
187
- animation-delay: -0.3s;
188
- }
189
- .spinner-circle-container-2 .spinner-circle-4 {
190
- -webkit-animation-delay: -0.2s;
191
- animation-delay: -0.2s;
192
- }
193
- .spinner-circle-container-3 .spinner-circle-4 {
194
- -webkit-animation-delay: -0.1s;
195
- animation-delay: -0.1s;
196
- }
197
65
  @-webkit-keyframes spinnerChaseRotate {
198
- 100% { -webkit-transform: rotate(360deg) }
66
+ 100% { -webkit-transform: rotate(360deg); }
199
67
  }
200
68
  @keyframes spinnerChaseRotate {
201
69
  100% {
202
70
  -webkit-transform: rotate(360deg);
203
- -ms-transform: rotate(360deg);
204
71
  transform: rotate(360deg);
205
72
  }
206
73
  }
@@ -211,75 +78,33 @@
211
78
  @keyframes spinnerChaseBounce {
212
79
  0%, 100% {
213
80
  -webkit-transform: scale(0);
214
- -ms-transform: scale(0);
215
81
  transform: scale(0);
216
82
  }
217
83
  50% {
218
84
  -webkit-transform: scale(1.0);
219
- -ms-transform: scale(1.0);
220
85
  transform: scale(1.0);
221
86
  }
222
87
  }
223
- .spinner-chase {
224
- -webkit-animation: spinnerChaseRotate 2.0s infinite linear;
225
- animation: spinnerChaseRotate 2.0s infinite linear;
226
- height: 60px;
227
- width: 60px;
228
- }
229
- .spinner-chase-1,
230
- .spinner-chase-2 {
231
- -webkit-animation: spinnerChaseBounce 2.0s infinite ease-in-out;
232
- animation: spinnerChaseBounce 2.0s infinite ease-in-out;
233
- background: $primary-color;
234
- border: 1px solid $primary-color;
235
- border-radius: 500px;
236
- box-sizing: border-box;
237
- display: inline-block;
238
- height: 60%;
239
- position: absolute;
240
- top: 0;
241
- width: 60%;
242
- }
243
- .spinner-chase-2 {
244
- -webkit-animation-delay: -1.0s;
245
- animation-delay: -1.0s;
246
- bottom: 0;
247
- top: auto;
248
- }
249
88
  @-webkit-keyframes spinnerCrescent {
250
89
  0% {
251
90
  -webkit-transform: rotate(0deg);
252
- -ms-transform: rotate(0deg);
253
91
  transform: rotate(0deg);
254
92
  }
255
93
  100% {
256
94
  -webkit-transform: rotate(360deg);
257
- -ms-transform: rotate(360deg);
258
95
  transform: rotate(360deg);
259
96
  }
260
97
  }
261
98
  @keyframes spinnerCrescent {
262
99
  0% {
263
100
  -webkit-transform: rotate(0deg);
264
- -ms-transform: rotate(0deg);
265
101
  transform: rotate(0deg);
266
102
  }
267
103
  100% {
268
104
  -webkit-transform: rotate(360deg);
269
- -ms-transform: rotate(360deg);
270
105
  transform: rotate(360deg);
271
106
  }
272
107
  }
273
- .spinner-crescent {
274
- -webkit-animation: spinnerCrescent 1.2s infinite linear;
275
- animation: spinnerCrescent 1.2s infinite linear;
276
- border: 9px solid $primary-color;
277
- border-right-color: transparent;
278
- border-radius: 500px;
279
- box-sizing: border-box;
280
- height: 60px;
281
- width: 60px;
282
- }
283
108
  @-webkit-keyframes spinnerCube {
284
109
  0%, 70%, 100% { -webkit-transform:scale3D(1.0, 1.0, 1.0); }
285
110
  35% { -webkit-transform:scale3D(0.0, 0.0, 1.0); }
@@ -287,77 +112,13 @@
287
112
  @keyframes spinnerCube {
288
113
  0%, 70%, 100% {
289
114
  -webkit-transform:scale3D(1.0, 1.0, 1.0);
290
- -ms-transform:scale3D(1.0, 1.0, 1.0);
291
115
  transform:scale3D(1.0, 1.0, 1.0);
292
116
  }
293
117
  35% {
294
118
  -webkit-transform:scale3D(0.0, 0.0, 1.0);
295
- -ms-transform:scale3D(0.0, 0.0, 1.0);
296
119
  transform:scale3D(0.0, 0.0, 1.0);
297
120
  }
298
121
  }
299
- .spinner-cube {
300
- height: 60px;
301
- width: 60px;
302
- }
303
- .spinner-cube-1,
304
- .spinner-cube-2,
305
- .spinner-cube-3,
306
- .spinner-cube-4,
307
- .spinner-cube-5,
308
- .spinner-cube-6,
309
- .spinner-cube-7,
310
- .spinner-cube-8,
311
- .spinner-cube-9 {
312
- -webkit-animation: spinnerCube 1.3s infinite ease-in-out;
313
- animation: spinnerCube 1.3s infinite ease-in-out;
314
- background: $primary-color;
315
- border: 1px solid rgba(255,255,255,1);
316
- border-radius: 500px;
317
- box-sizing: border-box;
318
- float: left;
319
- height: 33%;
320
- width: 33%;
321
- }
322
- .spinner-cube-7,
323
- .spinner-cube-8,
324
- .spinner-cube-9 { margin-top: -1px; }
325
- .spinner-cube .spinner-cube-1 {
326
- -webkit-animation-delay: 0.2s;
327
- animation-delay: 0.2s;
328
- }
329
- .spinner-cube .spinner-cube-2 {
330
- -webkit-animation-delay: 0.3s;
331
- animation-delay: 0.3s;
332
- }
333
- .spinner-cube .spinner-cube-3 {
334
- -webkit-animation-delay: 0.4s;
335
- animation-delay: 0.4s;
336
- }
337
- .spinner-cube .spinner-cube-4 {
338
- -webkit-animation-delay: 0.1s;
339
- animation-delay: 0.1s;
340
- }
341
- .spinner-cube .spinner-cube-5 {
342
- -webkit-animation-delay: 0.2s;
343
- animation-delay: 0.2s;
344
- }
345
- .spinner-cube .spinner-cube-6 {
346
- -webkit-animation-delay: 0.3s;
347
- animation-delay: 0.3s;
348
- }
349
- .spinner-cube .spinner-cube-7 {
350
- -webkit-animation-delay: 0.0s;
351
- animation-delay: 0.0s;
352
- }
353
- .spinner-cube .spinner-cube-8 {
354
- -webkit-animation-delay: 0.1s;
355
- animation-delay: 0.1s;
356
- }
357
- .spinner-cube .spinner-cube-9 {
358
- -webkit-animation-delay: 0.2s;
359
- animation-delay: 0.2s;
360
- }
361
122
  @-webkit-keyframes spinnerDoubleBounce {
362
123
  0%, 100% { -webkit-transform: scale(0); }
363
124
  50% { -webkit-transform: scale(1.0); }
@@ -366,48 +127,21 @@
366
127
  0%, 100% {
367
128
 
368
129
  -webkit-transform: scale(0);
369
- -ms-transform: scale(0);
370
130
  transform: scale(0);
371
131
  }
372
132
  50% {
373
133
  -webkit-transform: scale(1.0);
374
- -ms-transform: scale(1.0);
375
134
  transform: scale(1.0);
376
135
  }
377
136
  }
378
- .spinner-double-bounce {
379
- height: 60px;
380
- width: 60px;
381
- }
382
- .spinner-double-bounce-1,
383
- .spinner-double-bounce-2 {
384
- -webkit-animation: spinnerDoubleBounce 2.0s infinite ease-in-out;
385
- animation: spinnerDoubleBounce 2.0s infinite ease-in-out;
386
- background: $primary-color;
387
- border: 1px solid $primary-color;
388
- border-radius: 50%;
389
- box-sizing: border-box;
390
- height: 100%;
391
- left: 0;
392
- opacity: 0.85;
393
- position: absolute;
394
- top: 0;
395
- width: 100%;
396
- }
397
- .spinner-double-bounce-2 {
398
- -webkit-animation-delay: -1.0s;
399
- animation-delay: -1.0s;
400
- }
401
137
  @-webkit-keyframes spinnerFlower {
402
138
  0% {
403
139
  -webkit-transform: rotate(0deg);
404
- -ms-transform: rotate(0deg);
405
140
  transform: rotate(0deg);
406
141
  box-shadow: $primary-color 0 0 23px 0, $primary-color -20px -20px 0 0, $primary-color 20px -20px 0 0, $primary-color 20px 20px 0 0, $primary-color -20px 20px 0 0;
407
142
  }
408
143
  50% {
409
144
  -webkit-transform: rotate(1080deg);
410
- -ms-transform: rotate(1080deg);
411
145
  transform: rotate(1080deg);
412
146
  box-shadow: $primary-color 0 0 23px 0, $primary-color 20px 20px 0 0, $primary-color -20px 20px 0 0, $primary-color -20px -20px 0 0, $primary-color 20px -20px 0 0;
413
147
  }
@@ -415,27 +149,15 @@
415
149
  @keyframes spinnerFlower {
416
150
  0% {
417
151
  -webkit-transform: rotate(0deg);
418
- -ms-transform: rotate(0deg);
419
152
  transform: rotate(0deg);
420
153
  box-shadow: $primary-color 0 0 23px 0, $primary-color -20px -20px 0 0, $primary-color 20px -20px 0 0, $primary-color 20px 20px 0 0, $primary-color -20px 20px 0 0;
421
154
  }
422
155
  50% {
423
156
  -webkit-transform: rotate(1080deg);
424
- -ms-transform: rotate(1080deg);
425
157
  transform: rotate(1080deg);
426
158
  box-shadow: $primary-color 0 0 23px 0, $primary-color 20px 20px 0 0, $primary-color -20px 20px 0 0, $primary-color -20px -20px 0 0, $primary-color 20px -20px 0 0;
427
159
  }
428
160
  }
429
- .spinner-flower {
430
- -webkit-animation: spinnerFlower 5s infinite ease-in-out;
431
- animation: spinnerFlower 5s infinite ease-in-out;
432
- background: rgba(71,74,84,1);
433
- border-radius: 500px;
434
- height: 24px;
435
- -webkit-transform-origin: 50% 50%;
436
- transform-origin: 50% 50%;
437
- width: 24px;
438
- }
439
161
  @-webkit-keyframes spinnerOrbit {
440
162
  0% { -webkit-transform: rotate(0); }
441
163
  100% { -webkit-transform: rotate(360deg); }
@@ -443,33 +165,17 @@
443
165
  @keyframes spinnerOrbit {
444
166
  0% {
445
167
  -webkit-transform: rotate(0);
446
- -ms-transform: rotate(0);
447
168
  transform: rotate(0);
448
169
  }
449
170
  100% {
450
171
  -webkit-transform: rotate(360deg);
451
- -ms-transform: rotate(360deg);
452
172
  transform: rotate(360deg);
453
173
  }
454
174
  }
455
- .spinner-orbit {
456
- -webkit-animation: spinnerOrbit 1s linear infinite;
457
- animation: spinnerOrbit 1s linear infinite;
458
- border: 1px solid $primary-color;
459
- border-radius: 500px;
460
- height: 60px;
461
- width: 60px;
462
- }
463
- .spinner-orbit-1 {
464
- background: $primary-color;
465
- border: 1px solid $primary-color;
466
- border-radius: 500px;
467
- box-sizing: border-box;
468
- height: 20px;
469
- width: 20px;
470
- }
471
175
  @-webkit-keyframes spinnerPulse {
472
- 0% { -webkit-transform: scale(0) }
176
+ 0% {
177
+ -webkit-transform: scale(0);
178
+ }
473
179
  100% {
474
180
  opacity: 0;
475
181
  -webkit-transform: scale(1.0);
@@ -478,26 +184,14 @@
478
184
  @keyframes spinnerPulse {
479
185
  0% {
480
186
  -webkit-transform: scale(0);
481
- -ms-transform: scale(0);
482
187
  transform: scale(0);
483
188
  }
484
189
  100% {
485
190
  opacity: 0;
486
191
  -webkit-transform: scale(1.0);
487
- -ms-transform: scale(1.0);
488
192
  transform: scale(1.0);
489
193
  }
490
194
  }
491
- .spinner-pulse {
492
- -webkit-animation: spinnerPulse 1.0s infinite ease-in-out;
493
- animation: spinnerPulse 1.0s infinite ease-in-out;
494
- background: $primary-color;
495
- border: 1px solid $primary-color;
496
- border-radius: 500px;
497
- box-sizing: border-box;
498
- height: 60px;
499
- width: 60px;
500
- }
501
195
  @-webkit-keyframes spinnerRotatingPlane {
502
196
  0% { -webkit-transform: perspective(120px); }
503
197
  50% { -webkit-transform: perspective(120px) rotateY(180deg); }
@@ -506,29 +200,17 @@
506
200
  @keyframes spinnerRotatingPlane {
507
201
  0% {
508
202
  -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
509
- -ms-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
510
203
  transform: perspective(120px) rotateX(0deg) rotateY(0deg);
511
204
  }
512
205
  50% {
513
206
  -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
514
- -ms-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
515
207
  transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
516
208
  }
517
209
  100% {
518
210
  -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
519
- -ms-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
520
211
  transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
521
212
  }
522
213
  }
523
- .spinner-rotating-plane {
524
- -webkit-animation: spinnerRotatingPlane 1.2s infinite ease-in-out;
525
- animation: spinnerRotatingPlane 1.2s infinite ease-in-out;
526
- background: $primary-color;
527
- border: 1px solid $primary-color;
528
- box-sizing: border-box;
529
- height: 100px;
530
- width: 100px;
531
- }
532
214
  @-webkit-keyframes spinnerTripleBounce {
533
215
  0%, 80%, 100% { -webkit-transform: scale(0); }
534
216
  40% { -webkit-transform: scale(1.0); }
@@ -536,35 +218,13 @@
536
218
  @keyframes spinnerTripleBounce {
537
219
  0%, 80%, 100% {
538
220
  -webkit-transform: scale(0);
539
- -ms-transform: scale(0);
540
221
  transform: scale(0);
541
222
  }
542
223
  40% {
543
224
  -webkit-transform: scale(1.0);
544
- -ms-transform: scale(1.0);
545
225
  transform: scale(1.0);
546
226
  }
547
227
  }
548
- .spinner-triple-bounce { width: 100px; }
549
- .spinner-triple-bounce > div {
550
- -webkit-animation: spinnerTripleBounce 1.4s infinite ease-in-out;
551
- animation: spinnerTripleBounce 1.4s infinite ease-in-out;
552
- background: $primary-color;
553
- border: 1px solid $primary-color;
554
- border-radius: 500px;
555
- box-sizing: border-box;
556
- display: inline-block;
557
- height: 25px;
558
- width: 25px;
559
- }
560
- .spinner-triple-bounce .spinner-triple-bounce-1 {
561
- -webkit-animation-delay: -0.32s;
562
- animation-delay: -0.32s;
563
- }
564
- .spinner-triple-bounce .spinner-triple-bounce-2 {
565
- -webkit-animation-delay: -0.16s;
566
- animation-delay: -0.16s;
567
- }
568
228
  @-webkit-keyframes spinnerWander {
569
229
  25% { -webkit-transform: translateX(50px) rotate(-90deg) scale(0.5); }
570
230
  50% { -webkit-transform: translateX(50px) translateY(50px) rotate(-180deg); }
@@ -574,51 +234,25 @@
574
234
  @keyframes spinnerWander {
575
235
  25% {
576
236
  -webkit-transform: translateX(50px) rotate(-90deg) scale(0.5);
577
- -ms-transform: translateX(50px) rotate(-90deg) scale(0.5);
578
237
  transform: translateX(50px) rotate(-90deg) scale(0.5);
579
238
  }
580
239
  50% {
581
240
  -webkit-transform: translateX(50px) translateY(50px) rotate(-179deg);
582
- -ms-transform: translateX(50px) translateY(50px) rotate(-179deg);
583
241
  transform: translateX(50px) translateY(50px) rotate(-179deg);
584
242
  }
585
243
  50.1% {
586
244
  -webkit-transform: translateX(50px) translateY(50px) rotate(-180deg);
587
- -ms-transform: translateX(50px) translateY(50px) rotate(-180deg);
588
245
  transform: translateX(50px) translateY(50px) rotate(-180deg);
589
246
  }
590
247
  75% {
591
248
  -webkit-transform: translateX(0px) translateY(50px) rotate(-270deg) scale(0.5);
592
- -ms-transform: translateX(0px) translateY(50px) rotate(-270deg) scale(0.5);
593
249
  transform: translateX(0px) translateY(50px) rotate(-270deg) scale(0.5);
594
250
  }
595
251
  100% {
596
252
  -webkit-transform: rotate(-360deg);
597
- -ms-transform: rotate(-360deg);
598
253
  transform: rotate(-360deg);
599
254
  }
600
255
  }
601
- .spinner-wander {
602
- height: 100px;
603
- width: 100px;
604
- }
605
- .spinner-wander-1,
606
- .spinner-wander-2 {
607
- -webkit-animation: spinnerWander 1.8s infinite ease-in-out;
608
- animation: spinnerWander 1.8s infinite ease-in-out;
609
- background: $primary-color;
610
- border: 1px solid $primary-color;
611
- box-sizing: border-box;
612
- height: 20px;
613
- left: 0;
614
- position: absolute;
615
- top: 0;
616
- width: 20px;
617
- }
618
- .spinner-wander-2 {
619
- -webkit-animation-delay: -0.9s;
620
- animation-delay: -0.9s;
621
- }
622
256
  @-webkit-keyframes spinnerWave {
623
257
  0%, 40%, 100% { -webkit-transform: scaleY(0.4); }
624
258
  20% { -webkit-transform: scaleY(1.0); }
@@ -626,42 +260,13 @@
626
260
  @keyframes spinnerWave {
627
261
  0%, 40%, 100% {
628
262
  -webkit-transform: scaleY(0.4);
629
- -ms-transform: scaleY(0.4);
630
263
  transform: scaleY(0.4);
631
264
  }
632
265
  20% {
633
266
  -webkit-transform: scaleY(1.0);
634
- -ms-transform: scaleY(1.0);
635
267
  transform: scaleY(1.0);
636
268
  }
637
269
  }
638
- .spinner-wave { height: 100px; }
639
- .spinner-wave > div {
640
- -webkit-animation: spinnerWave 1.2s infinite ease-in-out;
641
- animation: spinnerWave 1.2s infinite ease-in-out;
642
- background: $primary-color;
643
- border: 1px solid $primary-color;
644
- box-sizing: border-box;
645
- display: inline-block;
646
- height: 100%;
647
- width: 6px;
648
- }
649
- .spinner-wave .spinner-wave-2 {
650
- -webkit-animation-delay: -1.1s;
651
- animation-delay: -1.1s;
652
- }
653
- .spinner-wave .spinner-wave-3 {
654
- -webkit-animation-delay: -1.0s;
655
- animation-delay: -1.0s;
656
- }
657
- .spinner-wave .spinner-wave-4 {
658
- -webkit-animation-delay: -0.9s;
659
- animation-delay: -0.9s;
660
- }
661
- .spinner-wave .spinner-wave-5 {
662
- -webkit-animation-delay: -0.8s;
663
- animation-delay: -0.8s;
664
- }
665
270
  @-webkit-keyframes spinnerWobbler {
666
271
  0% { left: 4px; }
667
272
  3% { left: 104px; }
@@ -718,10 +323,238 @@
718
323
  94% { left: 72px; }
719
324
  97% { left: 104px; }
720
325
  }
721
- .spinner-wobbler {
326
+ .spinner-backdrop {
327
+ background: rgba(255,255,255,0.9);
328
+ bottom: 0;
329
+ left: 0;
330
+ position: fixed;
331
+ right: 0;
332
+ top: 0;
333
+ z-index: 2040;
334
+ }
335
+ .spinner {
336
+ -webkit-animation-fill-mode: both;
337
+ animation-fill-mode: both;
338
+ margin: 15% auto 0 auto;
339
+ -webkit-perspective: 1000;
340
+ perspective: 1000;
341
+ position: relative;
342
+ text-align: center;
343
+ }
344
+ .spinner-beat,
345
+ .spinner-circle,
346
+ .spinner-chase,
347
+ .spinner-crescent,
348
+ .spinner-cube,
349
+ .spinner-double-bounce,
350
+ .spinner-orbit,
351
+ .spinner-pulse {
352
+ height: 60px;
353
+ width: 60px;
354
+ }
355
+ .spinner-beat,
356
+ .spinner-circle-container-1 div,
357
+ .spinner-circle-container-2 div,
358
+ .spinner-circle-container-3 div,
359
+ .spinner-chase-1,
360
+ .spinner-chase-2,
361
+ .spinner-crescent,
362
+ .spinner-cube-1,
363
+ .spinner-cube-2,
364
+ .spinner-cube-3,
365
+ .spinner-cube-4,
366
+ .spinner-cube-5,
367
+ .spinner-cube-6,
368
+ .spinner-cube-7,
369
+ .spinner-cube-8,
370
+ .spinner-cube-9,
371
+ .spinner-double-bounce-1,
372
+ .spinner-double-bounce-2,
373
+ .spinner-flower,
374
+ .spinner-pulse,
375
+ .spinner-rotating-plane,
376
+ .spinner-orbit,
377
+ .spinner-orbit-1,
378
+ .spinner-triple-bounce div,
379
+ .spinner-wander-1,
380
+ .spinner-wander-2,
381
+ .spinner-wave div,
382
+ .spinner-wobbler,
383
+ .spinner-wobbler::after {
722
384
  border: 1px solid $primary-color;
723
385
  border-radius: 500px;
724
386
  box-sizing: border-box;
387
+ }
388
+ .spinner-beat {
389
+ -webkit-animation: spinnerBeat 1.3s infinite ease-in-out;
390
+ animation: spinnerBeat 1.3s infinite ease-in-out;
391
+ background: rgba(255,255,255,1);
392
+ border-width: 2px;
393
+ }
394
+ .spinner-circle-container-1 div,
395
+ .spinner-circle-container-2 div,
396
+ .spinner-circle-container-3 div {
397
+ -webkit-animation: spinnerCircle 1.2s infinite ease-in-out;
398
+ animation: spinnerCircle 1.2s infinite ease-in-out;
399
+ background: $primary-color;
400
+ height: 15px;
401
+ position: absolute;
402
+ width: 15px;
403
+ }
404
+ .spinner-circle .spinner-circle-container {
405
+ position: absolute;
406
+ height: 100%;
407
+ width: 100%;
408
+ }
409
+ .spinner-circle-container-2 {
410
+ -webkit-transform: rotateZ(45deg);
411
+ transform: rotateZ(45deg);
412
+ }
413
+ .spinner-circle-container-3 {
414
+ -webkit-transform: rotateZ(90deg);
415
+ transform: rotateZ(90deg);
416
+ }
417
+ .spinner-circle-1 {
418
+ left: 0;
419
+ top: 0;
420
+ }
421
+ .spinner-circle-2 {
422
+ right: 0;
423
+ top: 0;
424
+ }
425
+ .spinner-circle-3 {
426
+ bottom: 0;
427
+ right: 0;
428
+ }
429
+ .spinner-circle-4 {
430
+ bottom: 0;
431
+ left: 0;
432
+ }
433
+ .spinner-chase {
434
+ -webkit-animation: spinnerChaseRotate 2.0s infinite linear;
435
+ animation: spinnerChaseRotate 2.0s infinite linear;
436
+ }
437
+ .spinner-chase-1,
438
+ .spinner-chase-2 {
439
+ -webkit-animation: spinnerChaseBounce 2.0s infinite ease-in-out;
440
+ animation: spinnerChaseBounce 2.0s infinite ease-in-out;
441
+ background: $primary-color;
442
+ display: inline-block;
443
+ height: 60%;
444
+ position: absolute;
445
+ top: 0;
446
+ width: 60%;
447
+ }
448
+ .spinner-chase-2 {
449
+ bottom: 0;
450
+ top: auto;
451
+ }
452
+ .spinner-crescent {
453
+ -webkit-animation: spinnerCrescent 1.2s infinite linear;
454
+ animation: spinnerCrescent 1.2s infinite linear;
455
+ border-width: 9px;
456
+ border-right-color: transparent;
457
+ }
458
+ .spinner-cube-1,
459
+ .spinner-cube-2,
460
+ .spinner-cube-3,
461
+ .spinner-cube-4,
462
+ .spinner-cube-5,
463
+ .spinner-cube-6,
464
+ .spinner-cube-7,
465
+ .spinner-cube-8,
466
+ .spinner-cube-9 {
467
+ -webkit-animation: spinnerCube 1.3s infinite ease-in-out;
468
+ animation: spinnerCube 1.3s infinite ease-in-out;
469
+ background: $primary-color;
470
+ border-color: rgba(255,255,255,1);
471
+ float: left;
472
+ height: 33%;
473
+ width: 33%;
474
+ }
475
+ .spinner-cube-7,
476
+ .spinner-cube-8,
477
+ .spinner-cube-9 { margin-top: -1px; }
478
+ .spinner-double-bounce-1,
479
+ .spinner-double-bounce-2 {
480
+ -webkit-animation: spinnerDoubleBounce 2.0s infinite ease-in-out;
481
+ animation: spinnerDoubleBounce 2.0s infinite ease-in-out;
482
+ background: $primary-color;
483
+ border-radius: 50%;
484
+ height: 100%;
485
+ left: 0;
486
+ opacity: 0.75;
487
+ position: absolute;
488
+ top: 0;
489
+ width: 100%;
490
+ }
491
+ .spinner-flower {
492
+ -webkit-animation: spinnerFlower 5s infinite ease-in-out;
493
+ animation: spinnerFlower 5s infinite ease-in-out;
494
+ background: $primary-color;
495
+ height: 23px;
496
+ -webkit-transform-origin: 50% 50%;
497
+ transform-origin: 50% 50%;
498
+ width: 23px;
499
+ }
500
+ .spinner-orbit {
501
+ -webkit-animation: spinnerOrbit 1s linear infinite;
502
+ animation: spinnerOrbit 1s linear infinite;
503
+ }
504
+ .spinner-orbit-1 {
505
+ background: $primary-color;
506
+ height: 20px;
507
+ width: 20px;
508
+ }
509
+ .spinner-pulse {
510
+ -webkit-animation: spinnerPulse 1.0s infinite ease-in-out;
511
+ animation: spinnerPulse 1.0s infinite ease-in-out;
512
+ background: $primary-color;
513
+ }
514
+ .spinner-rotating-plane {
515
+ -webkit-animation: spinnerRotatingPlane 1.2s infinite ease-in-out;
516
+ animation: spinnerRotatingPlane 1.2s infinite ease-in-out;
517
+ background: $primary-color;
518
+ border-radius: 0;
519
+ height: 100px;
520
+ width: 100px;
521
+ }
522
+ .spinner-triple-bounce { width: 100px; }
523
+ .spinner-triple-bounce div {
524
+ -webkit-animation: spinnerTripleBounce 1.4s infinite ease-in-out;
525
+ animation: spinnerTripleBounce 1.4s infinite ease-in-out;
526
+ background: $primary-color;
527
+ display: inline-block;
528
+ height: 25px;
529
+ width: 25px;
530
+ }
531
+ .spinner-wander {
532
+ height: 100px;
533
+ width: 100px;
534
+ }
535
+ .spinner-wander-1,
536
+ .spinner-wander-2 {
537
+ -webkit-animation: spinnerWander 1.8s infinite ease-in-out;
538
+ animation: spinnerWander 1.8s infinite ease-in-out;
539
+ background: $primary-color;
540
+ border-radius: 0;
541
+ height: 20px;
542
+ left: 0;
543
+ position: absolute;
544
+ top: 0;
545
+ width: 20px;
546
+ }
547
+ .spinner-wave { height: 100px; }
548
+ .spinner-wave div {
549
+ -webkit-animation: spinnerWave 1.2s infinite ease-in-out;
550
+ animation: spinnerWave 1.2s infinite ease-in-out;
551
+ background: $primary-color;
552
+ border-radius: 0;
553
+ display: inline-block;
554
+ height: 100%;
555
+ width: 6px;
556
+ }
557
+ .spinner-wobbler {
725
558
  height: 26px;
726
559
  width: 150px;
727
560
  }
@@ -729,13 +562,90 @@
729
562
  -webkit-animation: spinnerWobbler 15s infinite ease-in-out;
730
563
  animation: spinnerWobbler 15s infinite ease-in-out;
731
564
  background: $primary-color;
732
- border: 1px solid $primary-color;
733
- border-radius: 500px;
734
- box-sizing: border-box;
735
565
  content: '';
736
566
  height: 20px;
737
567
  left: 5px;
738
568
  position: absolute;
739
569
  top: 2px;
740
570
  width: 20px;
571
+ }
572
+ .spinner-circle-container-2 .spinner-circle-1,
573
+ .spinner-wave .spinner-wave-2 {
574
+ -webkit-animation-delay: -1.1s;
575
+ animation-delay: -1.1s;
576
+ }
577
+ .spinner-circle-container-3 .spinner-circle-1,
578
+ .spinner-circle-container-3 .spinner-circle-4,
579
+ .spinner-chase-2,
580
+ .spinner-double-bounce-2,
581
+ .spinner-wave .spinner-wave-3 {
582
+ -webkit-animation-delay: -1.0s;
583
+ animation-delay: -1.0s;
584
+ }
585
+ .spinner-circle-container-1 .spinner-circle-2,
586
+ .spinner-wander-2,
587
+ .spinner-wave .spinner-wave-4 {
588
+ -webkit-animation-delay: -0.9s;
589
+ animation-delay: -0.9s;
590
+ }
591
+ .spinner-circle-container-2 .spinner-circle-2,
592
+ .spinner-wave .spinner-wave-5 {
593
+ -webkit-animation-delay: -0.8s;
594
+ animation-delay: -0.8s;
595
+ }
596
+ .spinner-circle-container-3 .spinner-circle-2 {
597
+ -webkit-animation-delay: -0.7s;
598
+ animation-delay: -0.7s;
599
+ }
600
+ .spinner-circle-container-1 .spinner-circle-3 {
601
+ -webkit-animation-delay: -0.6s;
602
+ animation-delay: -0.6s;
603
+ }
604
+ .spinner-circle-container-2 .spinner-circle-3 {
605
+ -webkit-animation-delay: -0.5s;
606
+ animation-delay: -0.5s;
607
+ }
608
+ .spinner-circle-container-3 .spinner-circle-3 {
609
+ -webkit-animation-delay: -0.4s;
610
+ animation-delay: -0.4s;
611
+ }
612
+ .spinner-circle-container-1 .spinner-circle-4 {
613
+ -webkit-animation-delay: -0.3s;
614
+ animation-delay: -0.3s;
615
+ }
616
+ .spinner-circle-container-2 .spinner-circle-4 {
617
+ -webkit-animation-delay: -0.2s;
618
+ animation-delay: -0.2s;
619
+ }
620
+ .spinner-triple-bounce .spinner-triple-bounce-1 {
621
+ -webkit-animation-delay: -0.32s;
622
+ animation-delay: -0.32s;
623
+ }
624
+ .spinner-triple-bounce .spinner-triple-bounce-2 {
625
+ -webkit-animation-delay: -0.16s;
626
+ animation-delay: -0.16s;
627
+ }
628
+ .spinner-cube .spinner-cube-7 {
629
+ -webkit-animation-delay: 0.0s;
630
+ animation-delay: 0.0s;
631
+ }
632
+ .spinner-cube .spinner-cube-4,
633
+ .spinner-cube .spinner-cube-8 {
634
+ -webkit-animation-delay: 0.1s;
635
+ animation-delay: 0.1s;
636
+ }
637
+ .spinner-cube .spinner-cube-1,
638
+ .spinner-cube .spinner-cube-5,
639
+ .spinner-cube .spinner-cube-9 {
640
+ -webkit-animation-delay: 0.2s;
641
+ animation-delay: 0.2s;
642
+ }
643
+ .spinner-cube .spinner-cube-2,
644
+ .spinner-cube .spinner-cube-6 {
645
+ -webkit-animation-delay: 0.3s;
646
+ animation-delay: 0.3s;
647
+ }
648
+ .spinner-cube .spinner-cube-3 {
649
+ -webkit-animation-delay: 0.4s;
650
+ animation-delay: 0.4s;
741
651
  }