tungsten 0.1.14 → 0.1.15

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/tungsten/favicon.ico +0 -0
  3. data/app/assets/images/tungsten/logo.svg +1 -0
  4. data/app/assets/images/tungsten/num.svg +77 -0
  5. data/app/assets/stylesheets/tungsten/_index.scss +1 -0
  6. data/app/assets/stylesheets/tungsten/pages/_error.scss +157 -0
  7. data/app/assets/stylesheets/tungsten/pages/_index.scss +1 -0
  8. data/app/controllers/tungsten/errors_controller.rb +15 -0
  9. data/app/helpers/tungsten/content_helper.rb +5 -1
  10. data/app/helpers/tungsten/error_helper.rb +9 -0
  11. data/app/views/layouts/tungsten/default.html.slim +3 -0
  12. data/app/views/layouts/tungsten/errors.html.slim +25 -0
  13. data/app/views/shared/tungsten/_num.html.slim +90 -0
  14. data/app/views/tungsten/errors/bad_request.html.slim +5 -0
  15. data/app/views/tungsten/errors/forbidden.html.slim +5 -0
  16. data/app/views/tungsten/errors/internal_server_error.html.slim +5 -0
  17. data/app/views/tungsten/errors/method_not_allowed.html.slim +5 -0
  18. data/app/views/tungsten/errors/not_acceptable.html.slim +5 -0
  19. data/app/views/tungsten/errors/not_found.html.slim +5 -0
  20. data/app/views/tungsten/errors/not_implemented.html.slim +5 -0
  21. data/app/views/tungsten/errors/unauthorized.html.slim +5 -0
  22. data/app/views/tungsten/errors/unprocessable_entity.html.slim +5 -0
  23. data/lib/tungsten.rb +9 -4
  24. data/lib/tungsten/version.rb +1 -1
  25. data/public/{code-0.1.14.js → code-0.1.15.js} +1 -1
  26. data/public/{code-0.1.14.js.gz → code-0.1.15.js.gz} +0 -0
  27. data/public/{code-0.1.14.map.json → code-0.1.15.map.json} +0 -0
  28. data/public/{tungsten-0.1.14.css → tungsten-0.1.15.css} +690 -0
  29. data/public/tungsten-0.1.15.css.gz +0 -0
  30. data/public/{tungsten-0.1.14.js → tungsten-0.1.15.js} +1 -1
  31. data/public/{tungsten-0.1.14.js.gz → tungsten-0.1.15.js.gz} +0 -0
  32. data/public/{tungsten-0.1.14.map.json → tungsten-0.1.15.map.json} +0 -0
  33. metadata +44 -13
  34. data/app/assets/stylesheets/tungsten/_code-color.scss +0 -0
  35. data/public/tungsten-0.1.14.css.gz +0 -0
@@ -0,0 +1,5 @@
1
+ .error-code
2
+ .error-svgs= error_code_svg @status_code
3
+ .error-message
4
+ h1= @rescue_response.humanize.titlecase
5
+ p But don't worry, this shouldn't affect your databases.
@@ -0,0 +1,5 @@
1
+ .error-code
2
+ .error-svgs= error_code_svg @status_code
3
+ .error-message
4
+ h1= @rescue_response.humanize.titlecase
5
+ p This endpoint does not support the method you used.
@@ -0,0 +1,5 @@
1
+ .error-code
2
+ .error-svgs= error_code_svg @status_code
3
+ .error-message
4
+ h1= @rescue_response.humanize.titlecase
5
+ p That's... not acceptable.
@@ -0,0 +1,5 @@
1
+ .error-code
2
+ .error-svgs= error_code_svg @status_code
3
+ .error-message
4
+ h1 Page Not Found
5
+ p Regretably, this page does not exist.
@@ -0,0 +1,5 @@
1
+ .error-code
2
+ .error-svgs= error_code_svg @status_code
3
+ .error-message
4
+ h1= @rescue_response.humanize.titlecase
5
+ p We don't implement this method here.
@@ -0,0 +1,5 @@
1
+ .error-code
2
+ .error-svgs= error_code_svg @status_code
3
+ .error-message
4
+ h1= @rescue_response.humanize.titlecase
5
+ p You are not authorized here.
@@ -0,0 +1,5 @@
1
+ .error-code
2
+ .error-svgs= error_code_svg @status_code
3
+ .error-message
4
+ h1= @rescue_response.humanize.titlecase
5
+ p You may not have access to make this change.
data/lib/tungsten.rb CHANGED
@@ -30,7 +30,12 @@ module Site
30
30
  end
31
31
  end
32
32
 
33
- Cyborg.register(Tungsten::Plugin, {
34
- gem: 'tungsten',
35
- engine: 'tungsten'
36
- })
33
+ Cyborg.register(Tungsten::Plugin, gem: 'tungsten', engine: 'tungsten') do
34
+ initializer 'gaffe' do
35
+ Gaffe.configure do |config|
36
+ config.errors_controller = 'Tungsten::ErrorsController'
37
+ end
38
+
39
+ Gaffe.enable!
40
+ end
41
+ end
@@ -1,3 +1,3 @@
1
1
  module Tungsten
2
- VERSION = "0.1.14"
2
+ VERSION = "0.1.15"
3
3
  end
@@ -89,4 +89,4 @@ function move(o){document.documentElement.scrollTop=o,document.body.parentNode.s
89
89
  });
90
90
 
91
91
 
92
- //# sourceMappingURL=/assets/tungsten/code-0.1.14.map.json
92
+ //# sourceMappingURL=/assets/tungsten/code-0.1.15.map.json
@@ -1993,3 +1993,693 @@ input::-moz-focus-inner {
1993
1993
  box-shadow: #1f8bf8 0 0 0 1px inset; }
1994
1994
  .slider-input.fill ~ .slider-track .filled .slider-segment-mark[data-index]:after {
1995
1995
  box-shadow: #1f8bf8 0 0 0 1px; }
1996
+
1997
+ .error-page {
1998
+ background: #5a6872;
1999
+ background: -webkit-linear-gradient(top, #444e56, #5a6872, #5a6872, #5a6872);
2000
+ background: linear-gradient(to bottom, #444e56, #5a6872, #5a6872, #5a6872); }
2001
+ .error-page h1 {
2002
+ font-size: 50px;
2003
+ font-weight: 600;
2004
+ color: #fff;
2005
+ text-shadow: 0 1px 0 #0f212e; }
2006
+ .error-page p {
2007
+ color: #fff;
2008
+ font-size: 1.2em; }
2009
+ .error-page footer {
2010
+ position: fixed;
2011
+ bottom: 0;
2012
+ left: 0;
2013
+ right: 0;
2014
+ line-height: 2.5em;
2015
+ padding: .5em; }
2016
+
2017
+ .error-page body {
2018
+ text-align: center;
2019
+ display: -ms-grid;
2020
+ display: grid;
2021
+ -ms-flex-line-pack: center;
2022
+ align-content: center; }
2023
+
2024
+ .error-svgs {
2025
+ padding-bottom: 114px;
2026
+ margin: 2em auto;
2027
+ width: 394px;
2028
+ -webkit-animation: slide-error-code 0.6s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2029
+ animation: slide-error-code 0.6s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2030
+ -webkit-transform: translate3d(0, 15px, 0);
2031
+ transform: translate3d(0, 15px, 0); }
2032
+ .error-svgs .error-number {
2033
+ -webkit-transform: translate3d(0, 0, 0);
2034
+ transform: translate3d(0, 0, 0);
2035
+ overflow: visible;
2036
+ width: 200px;
2037
+ position: relative; }
2038
+ .error-svgs .error-number .error-box {
2039
+ opacity: 0;
2040
+ -webkit-animation-fill-mode: forwards;
2041
+ animation-fill-mode: forwards; }
2042
+ .error-svgs .error-number .error-box-side, .error-svgs .error-number .error-box-bg {
2043
+ fill: #5a6872; }
2044
+ .error-svgs .error-number .error-box-side {
2045
+ fill-opacity: .5; }
2046
+ .error-svgs .error-number:nth-of-type(1) {
2047
+ top: 114px;
2048
+ margin-right: -103px;
2049
+ z-index: 2; }
2050
+ .error-svgs .error-number:nth-of-type(1) .error-box {
2051
+ -webkit-animation-delay: .1s;
2052
+ animation-delay: .1s; }
2053
+ .error-svgs .error-number:nth-of-type(2) {
2054
+ margin-right: -103px;
2055
+ top: 57px;
2056
+ z-index: 1; }
2057
+ .error-svgs .error-number:nth-of-type(2) .error-box {
2058
+ -webkit-animation-delay: .2s;
2059
+ animation-delay: .2s; }
2060
+ .error-svgs .error-number:nth-of-type(3) {
2061
+ z-index: 0; }
2062
+ .error-svgs .error-number:nth-of-type(3) .error-box {
2063
+ -webkit-animation-delay: .3s;
2064
+ animation-delay: .3s; }
2065
+
2066
+ .error-box:nth-child(1) {
2067
+ -webkit-animation: drop-cube-1 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2068
+ animation: drop-cube-1 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2069
+ .error-box:nth-child(1) .error-box-bg {
2070
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2071
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2072
+ -webkit-animation-delay: 0.5s;
2073
+ animation-delay: 0.5s; }
2074
+
2075
+ .error-box:nth-child(2) {
2076
+ -webkit-animation: drop-cube-2 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2077
+ animation: drop-cube-2 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2078
+ .error-box:nth-child(2) .error-box-bg {
2079
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2080
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2081
+ -webkit-animation-delay: 0.5s;
2082
+ animation-delay: 0.5s; }
2083
+
2084
+ .error-box:nth-child(3) {
2085
+ -webkit-animation: drop-cube-3 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2086
+ animation: drop-cube-3 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2087
+ .error-box:nth-child(3) .error-box-bg {
2088
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2089
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2090
+ -webkit-animation-delay: 0.5s;
2091
+ animation-delay: 0.5s; }
2092
+
2093
+ .error-box:nth-child(4) {
2094
+ -webkit-animation: drop-cube-4 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2095
+ animation: drop-cube-4 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2096
+ .error-box:nth-child(4) .error-box-bg {
2097
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2098
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2099
+ -webkit-animation-delay: 0.5s;
2100
+ animation-delay: 0.5s; }
2101
+
2102
+ .error-box:nth-child(5) {
2103
+ -webkit-animation: drop-cube-5 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2104
+ animation: drop-cube-5 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2105
+ .error-box:nth-child(5) .error-box-bg {
2106
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2107
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2108
+ -webkit-animation-delay: 0.5s;
2109
+ animation-delay: 0.5s; }
2110
+
2111
+ .error-box:nth-child(6) {
2112
+ -webkit-animation: drop-cube-6 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2113
+ animation: drop-cube-6 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2114
+ .error-box:nth-child(6) .error-box-bg {
2115
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2116
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2117
+ -webkit-animation-delay: 0.5s;
2118
+ animation-delay: 0.5s; }
2119
+
2120
+ .error-box:nth-child(7) {
2121
+ -webkit-animation: drop-cube-7 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2122
+ animation: drop-cube-7 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2123
+ .error-box:nth-child(7) .error-box-bg {
2124
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2125
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2126
+ -webkit-animation-delay: 0.5s;
2127
+ animation-delay: 0.5s; }
2128
+
2129
+ .error-box:nth-child(8) {
2130
+ -webkit-animation: drop-cube-8 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2131
+ animation: drop-cube-8 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2132
+ .error-box:nth-child(8) .error-box-bg {
2133
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2134
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2135
+ -webkit-animation-delay: 0.5s;
2136
+ animation-delay: 0.5s; }
2137
+
2138
+ .error-box:nth-child(9) {
2139
+ -webkit-animation: drop-cube-9 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2140
+ animation: drop-cube-9 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2141
+ .error-box:nth-child(9) .error-box-bg {
2142
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2143
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2144
+ -webkit-animation-delay: 0.5s;
2145
+ animation-delay: 0.5s; }
2146
+
2147
+ .error-box:nth-child(10) {
2148
+ -webkit-animation: drop-cube-10 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2149
+ animation: drop-cube-10 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2150
+ .error-box:nth-child(10) .error-box-bg {
2151
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2152
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2153
+ -webkit-animation-delay: 0.5s;
2154
+ animation-delay: 0.5s; }
2155
+
2156
+ .error-box:nth-child(11) {
2157
+ -webkit-animation: drop-cube-11 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2158
+ animation: drop-cube-11 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2159
+ .error-box:nth-child(11) .error-box-bg {
2160
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2161
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2162
+ -webkit-animation-delay: 0.5s;
2163
+ animation-delay: 0.5s; }
2164
+
2165
+ .error-box:nth-child(12) {
2166
+ -webkit-animation: drop-cube-12 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2167
+ animation: drop-cube-12 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2168
+ .error-box:nth-child(12) .error-box-bg {
2169
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2170
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2171
+ -webkit-animation-delay: 0.5s;
2172
+ animation-delay: 0.5s; }
2173
+
2174
+ .error-box:nth-child(13) {
2175
+ -webkit-animation: drop-cube-13 0.8s cubic-bezier(0.4, 0, 0.2, 1);
2176
+ animation: drop-cube-13 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
2177
+ .error-box:nth-child(13) .error-box-bg {
2178
+ -webkit-animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2179
+ animation: darken-cube 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
2180
+ -webkit-animation-delay: 0.5s;
2181
+ animation-delay: 0.5s; }
2182
+
2183
+ @-webkit-keyframes slide-error-code {
2184
+ 0% {
2185
+ -webkit-transform: translate3d(0, 15px, 0);
2186
+ transform: translate3d(0, 15px, 0); }
2187
+ 100% {
2188
+ -webkit-transform: translate3d(0, 0, 0);
2189
+ transform: translate3d(0, 0, 0); } }
2190
+
2191
+ @keyframes slide-error-code {
2192
+ 0% {
2193
+ -webkit-transform: translate3d(0, 15px, 0);
2194
+ transform: translate3d(0, 15px, 0); }
2195
+ 100% {
2196
+ -webkit-transform: translate3d(0, 0, 0);
2197
+ transform: translate3d(0, 0, 0); } }
2198
+ @-webkit-keyframes drop-cube-1 {
2199
+ 0% {
2200
+ opacity: 0;
2201
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2202
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2203
+ 4%, 100% {
2204
+ opacity: 1;
2205
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2206
+ transform: translate3d(0, 0, 0) scale(1); } }
2207
+ @keyframes drop-cube-1 {
2208
+ 0% {
2209
+ opacity: 0;
2210
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2211
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2212
+ 4%, 100% {
2213
+ opacity: 1;
2214
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2215
+ transform: translate3d(0, 0, 0) scale(1); } }
2216
+ @-webkit-keyframes darken-cube {
2217
+ 0% {
2218
+ fill: #5a6872; }
2219
+ 100% {
2220
+ fill: #2d3439; } }
2221
+ @keyframes darken-cube {
2222
+ 0% {
2223
+ fill: #5a6872; }
2224
+ 100% {
2225
+ fill: #2d3439; } }
2226
+ @-webkit-keyframes fade-cube-1 {
2227
+ 0%, 6% {
2228
+ opacity: 0; }
2229
+ 100% {
2230
+ opacity: 1; } }
2231
+ @keyframes fade-cube-1 {
2232
+ 0%, 6% {
2233
+ opacity: 0; }
2234
+ 100% {
2235
+ opacity: 1; } }
2236
+ @-webkit-keyframes drop-cube-2 {
2237
+ 0% {
2238
+ opacity: 0;
2239
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2240
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2241
+ 8%, 100% {
2242
+ opacity: 1;
2243
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2244
+ transform: translate3d(0, 0, 0) scale(1); } }
2245
+ @keyframes drop-cube-2 {
2246
+ 0% {
2247
+ opacity: 0;
2248
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2249
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2250
+ 8%, 100% {
2251
+ opacity: 1;
2252
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2253
+ transform: translate3d(0, 0, 0) scale(1); } }
2254
+ @keyframes darken-cube {
2255
+ 0% {
2256
+ fill: #5a6872; }
2257
+ 100% {
2258
+ fill: #2d3439; } }
2259
+ @-webkit-keyframes fade-cube-2 {
2260
+ 0%, 12% {
2261
+ opacity: 0; }
2262
+ 100% {
2263
+ opacity: 1; } }
2264
+ @keyframes fade-cube-2 {
2265
+ 0%, 12% {
2266
+ opacity: 0; }
2267
+ 100% {
2268
+ opacity: 1; } }
2269
+ @-webkit-keyframes drop-cube-3 {
2270
+ 0% {
2271
+ opacity: 0;
2272
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2273
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2274
+ 12%, 100% {
2275
+ opacity: 1;
2276
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2277
+ transform: translate3d(0, 0, 0) scale(1); } }
2278
+ @keyframes drop-cube-3 {
2279
+ 0% {
2280
+ opacity: 0;
2281
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2282
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2283
+ 12%, 100% {
2284
+ opacity: 1;
2285
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2286
+ transform: translate3d(0, 0, 0) scale(1); } }
2287
+ @keyframes darken-cube {
2288
+ 0% {
2289
+ fill: #5a6872; }
2290
+ 100% {
2291
+ fill: #2d3439; } }
2292
+ @-webkit-keyframes fade-cube-3 {
2293
+ 0%, 18% {
2294
+ opacity: 0; }
2295
+ 100% {
2296
+ opacity: 1; } }
2297
+ @keyframes fade-cube-3 {
2298
+ 0%, 18% {
2299
+ opacity: 0; }
2300
+ 100% {
2301
+ opacity: 1; } }
2302
+ @-webkit-keyframes drop-cube-4 {
2303
+ 0% {
2304
+ opacity: 0;
2305
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2306
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2307
+ 16%, 100% {
2308
+ opacity: 1;
2309
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2310
+ transform: translate3d(0, 0, 0) scale(1); } }
2311
+ @keyframes drop-cube-4 {
2312
+ 0% {
2313
+ opacity: 0;
2314
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2315
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2316
+ 16%, 100% {
2317
+ opacity: 1;
2318
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2319
+ transform: translate3d(0, 0, 0) scale(1); } }
2320
+ @keyframes darken-cube {
2321
+ 0% {
2322
+ fill: #5a6872; }
2323
+ 100% {
2324
+ fill: #2d3439; } }
2325
+ @-webkit-keyframes fade-cube-4 {
2326
+ 0%, 24% {
2327
+ opacity: 0; }
2328
+ 100% {
2329
+ opacity: 1; } }
2330
+ @keyframes fade-cube-4 {
2331
+ 0%, 24% {
2332
+ opacity: 0; }
2333
+ 100% {
2334
+ opacity: 1; } }
2335
+ @-webkit-keyframes drop-cube-5 {
2336
+ 0% {
2337
+ opacity: 0;
2338
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2339
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2340
+ 20%, 100% {
2341
+ opacity: 1;
2342
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2343
+ transform: translate3d(0, 0, 0) scale(1); } }
2344
+ @keyframes drop-cube-5 {
2345
+ 0% {
2346
+ opacity: 0;
2347
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2348
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2349
+ 20%, 100% {
2350
+ opacity: 1;
2351
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2352
+ transform: translate3d(0, 0, 0) scale(1); } }
2353
+ @keyframes darken-cube {
2354
+ 0% {
2355
+ fill: #5a6872; }
2356
+ 100% {
2357
+ fill: #2d3439; } }
2358
+ @-webkit-keyframes fade-cube-5 {
2359
+ 0%, 30% {
2360
+ opacity: 0; }
2361
+ 100% {
2362
+ opacity: 1; } }
2363
+ @keyframes fade-cube-5 {
2364
+ 0%, 30% {
2365
+ opacity: 0; }
2366
+ 100% {
2367
+ opacity: 1; } }
2368
+ @-webkit-keyframes drop-cube-6 {
2369
+ 0% {
2370
+ opacity: 0;
2371
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2372
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2373
+ 24%, 100% {
2374
+ opacity: 1;
2375
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2376
+ transform: translate3d(0, 0, 0) scale(1); } }
2377
+ @keyframes drop-cube-6 {
2378
+ 0% {
2379
+ opacity: 0;
2380
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2381
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2382
+ 24%, 100% {
2383
+ opacity: 1;
2384
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2385
+ transform: translate3d(0, 0, 0) scale(1); } }
2386
+ @keyframes darken-cube {
2387
+ 0% {
2388
+ fill: #5a6872; }
2389
+ 100% {
2390
+ fill: #2d3439; } }
2391
+ @-webkit-keyframes fade-cube-6 {
2392
+ 0%, 36% {
2393
+ opacity: 0; }
2394
+ 100% {
2395
+ opacity: 1; } }
2396
+ @keyframes fade-cube-6 {
2397
+ 0%, 36% {
2398
+ opacity: 0; }
2399
+ 100% {
2400
+ opacity: 1; } }
2401
+ @-webkit-keyframes drop-cube-7 {
2402
+ 0% {
2403
+ opacity: 0;
2404
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2405
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2406
+ 28%, 100% {
2407
+ opacity: 1;
2408
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2409
+ transform: translate3d(0, 0, 0) scale(1); } }
2410
+ @keyframes drop-cube-7 {
2411
+ 0% {
2412
+ opacity: 0;
2413
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2414
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2415
+ 28%, 100% {
2416
+ opacity: 1;
2417
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2418
+ transform: translate3d(0, 0, 0) scale(1); } }
2419
+ @keyframes darken-cube {
2420
+ 0% {
2421
+ fill: #5a6872; }
2422
+ 100% {
2423
+ fill: #2d3439; } }
2424
+ @-webkit-keyframes fade-cube-7 {
2425
+ 0%, 42% {
2426
+ opacity: 0; }
2427
+ 100% {
2428
+ opacity: 1; } }
2429
+ @keyframes fade-cube-7 {
2430
+ 0%, 42% {
2431
+ opacity: 0; }
2432
+ 100% {
2433
+ opacity: 1; } }
2434
+ @-webkit-keyframes drop-cube-8 {
2435
+ 0% {
2436
+ opacity: 0;
2437
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2438
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2439
+ 32%, 100% {
2440
+ opacity: 1;
2441
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2442
+ transform: translate3d(0, 0, 0) scale(1); } }
2443
+ @keyframes drop-cube-8 {
2444
+ 0% {
2445
+ opacity: 0;
2446
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2447
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2448
+ 32%, 100% {
2449
+ opacity: 1;
2450
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2451
+ transform: translate3d(0, 0, 0) scale(1); } }
2452
+ @keyframes darken-cube {
2453
+ 0% {
2454
+ fill: #5a6872; }
2455
+ 100% {
2456
+ fill: #2d3439; } }
2457
+ @-webkit-keyframes fade-cube-8 {
2458
+ 0%, 48% {
2459
+ opacity: 0; }
2460
+ 100% {
2461
+ opacity: 1; } }
2462
+ @keyframes fade-cube-8 {
2463
+ 0%, 48% {
2464
+ opacity: 0; }
2465
+ 100% {
2466
+ opacity: 1; } }
2467
+ @-webkit-keyframes drop-cube-9 {
2468
+ 0% {
2469
+ opacity: 0;
2470
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2471
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2472
+ 36%, 100% {
2473
+ opacity: 1;
2474
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2475
+ transform: translate3d(0, 0, 0) scale(1); } }
2476
+ @keyframes drop-cube-9 {
2477
+ 0% {
2478
+ opacity: 0;
2479
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2480
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2481
+ 36%, 100% {
2482
+ opacity: 1;
2483
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2484
+ transform: translate3d(0, 0, 0) scale(1); } }
2485
+ @keyframes darken-cube {
2486
+ 0% {
2487
+ fill: #5a6872; }
2488
+ 100% {
2489
+ fill: #2d3439; } }
2490
+ @-webkit-keyframes fade-cube-9 {
2491
+ 0%, 54% {
2492
+ opacity: 0; }
2493
+ 100% {
2494
+ opacity: 1; } }
2495
+ @keyframes fade-cube-9 {
2496
+ 0%, 54% {
2497
+ opacity: 0; }
2498
+ 100% {
2499
+ opacity: 1; } }
2500
+ @-webkit-keyframes drop-cube-10 {
2501
+ 0% {
2502
+ opacity: 0;
2503
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2504
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2505
+ 40%, 100% {
2506
+ opacity: 1;
2507
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2508
+ transform: translate3d(0, 0, 0) scale(1); } }
2509
+ @keyframes drop-cube-10 {
2510
+ 0% {
2511
+ opacity: 0;
2512
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2513
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2514
+ 40%, 100% {
2515
+ opacity: 1;
2516
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2517
+ transform: translate3d(0, 0, 0) scale(1); } }
2518
+ @keyframes darken-cube {
2519
+ 0% {
2520
+ fill: #5a6872; }
2521
+ 100% {
2522
+ fill: #2d3439; } }
2523
+ @-webkit-keyframes fade-cube-10 {
2524
+ 0%, 60% {
2525
+ opacity: 0; }
2526
+ 100% {
2527
+ opacity: 1; } }
2528
+ @keyframes fade-cube-10 {
2529
+ 0%, 60% {
2530
+ opacity: 0; }
2531
+ 100% {
2532
+ opacity: 1; } }
2533
+ @-webkit-keyframes drop-cube-11 {
2534
+ 0% {
2535
+ opacity: 0;
2536
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2537
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2538
+ 44%, 100% {
2539
+ opacity: 1;
2540
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2541
+ transform: translate3d(0, 0, 0) scale(1); } }
2542
+ @keyframes drop-cube-11 {
2543
+ 0% {
2544
+ opacity: 0;
2545
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2546
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2547
+ 44%, 100% {
2548
+ opacity: 1;
2549
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2550
+ transform: translate3d(0, 0, 0) scale(1); } }
2551
+ @keyframes darken-cube {
2552
+ 0% {
2553
+ fill: #5a6872; }
2554
+ 100% {
2555
+ fill: #2d3439; } }
2556
+ @-webkit-keyframes fade-cube-11 {
2557
+ 0%, 66% {
2558
+ opacity: 0; }
2559
+ 100% {
2560
+ opacity: 1; } }
2561
+ @keyframes fade-cube-11 {
2562
+ 0%, 66% {
2563
+ opacity: 0; }
2564
+ 100% {
2565
+ opacity: 1; } }
2566
+ @-webkit-keyframes drop-cube-12 {
2567
+ 0% {
2568
+ opacity: 0;
2569
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2570
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2571
+ 48%, 100% {
2572
+ opacity: 1;
2573
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2574
+ transform: translate3d(0, 0, 0) scale(1); } }
2575
+ @keyframes drop-cube-12 {
2576
+ 0% {
2577
+ opacity: 0;
2578
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2579
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2580
+ 48%, 100% {
2581
+ opacity: 1;
2582
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2583
+ transform: translate3d(0, 0, 0) scale(1); } }
2584
+ @keyframes darken-cube {
2585
+ 0% {
2586
+ fill: #5a6872; }
2587
+ 100% {
2588
+ fill: #2d3439; } }
2589
+ @-webkit-keyframes fade-cube-12 {
2590
+ 0%, 72% {
2591
+ opacity: 0; }
2592
+ 100% {
2593
+ opacity: 1; } }
2594
+ @keyframes fade-cube-12 {
2595
+ 0%, 72% {
2596
+ opacity: 0; }
2597
+ 100% {
2598
+ opacity: 1; } }
2599
+ @-webkit-keyframes drop-cube-13 {
2600
+ 0% {
2601
+ opacity: 0;
2602
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2603
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2604
+ 52%, 100% {
2605
+ opacity: 1;
2606
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2607
+ transform: translate3d(0, 0, 0) scale(1); } }
2608
+ @keyframes drop-cube-13 {
2609
+ 0% {
2610
+ opacity: 0;
2611
+ -webkit-transform: translate3d(20px, -40px, 0) scale(0.4);
2612
+ transform: translate3d(20px, -40px, 0) scale(0.4); }
2613
+ 52%, 100% {
2614
+ opacity: 1;
2615
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2616
+ transform: translate3d(0, 0, 0) scale(1); } }
2617
+ @keyframes darken-cube {
2618
+ 0% {
2619
+ fill: #5a6872; }
2620
+ 100% {
2621
+ fill: #2d3439; } }
2622
+ @-webkit-keyframes fade-cube-13 {
2623
+ 0%, 78% {
2624
+ opacity: 0; }
2625
+ 100% {
2626
+ opacity: 1; } }
2627
+ @keyframes fade-cube-13 {
2628
+ 0%, 78% {
2629
+ opacity: 0; }
2630
+ 100% {
2631
+ opacity: 1; } }
2632
+ @-webkit-keyframes error-party {
2633
+ 0% {
2634
+ color: #8e55dd; }
2635
+ 20% {
2636
+ color: #967adc; }
2637
+ 40% {
2638
+ color: #fef0bd; }
2639
+ 60% {
2640
+ color: #d4eef7; }
2641
+ 80% {
2642
+ color: #82c1ed; }
2643
+ 100% {
2644
+ color: #5d9cec; } }
2645
+ @keyframes error-party {
2646
+ 0% {
2647
+ color: #8e55dd; }
2648
+ 20% {
2649
+ color: #967adc; }
2650
+ 40% {
2651
+ color: #fef0bd; }
2652
+ 60% {
2653
+ color: #d4eef7; }
2654
+ 80% {
2655
+ color: #82c1ed; }
2656
+ 100% {
2657
+ color: #5d9cec; } }
2658
+ @-webkit-keyframes fade-in-slowly {
2659
+ 0% {
2660
+ opacity: 0; }
2661
+ 80% {
2662
+ opacity: 0; }
2663
+ 100% {
2664
+ opacity: 1; } }
2665
+ @keyframes fade-in-slowly {
2666
+ 0% {
2667
+ opacity: 0; }
2668
+ 80% {
2669
+ opacity: 0; }
2670
+ 100% {
2671
+ opacity: 1; } }
2672
+ @-webkit-keyframes zbounce {
2673
+ 0%, 100% {
2674
+ -webkit-transform: scale(0.95, 0.95);
2675
+ transform: scale(0.95, 0.95); }
2676
+ 50% {
2677
+ -webkit-transform: scale(1, 1);
2678
+ transform: scale(1, 1); } }
2679
+ @keyframes zbounce {
2680
+ 0%, 100% {
2681
+ -webkit-transform: scale(0.95, 0.95);
2682
+ transform: scale(0.95, 0.95); }
2683
+ 50% {
2684
+ -webkit-transform: scale(1, 1);
2685
+ transform: scale(1, 1); } }