western-world 3.0.415 → 3.0.417
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/scss/cells/bank_crash.scss +72 -1
- package/src/scss/cells/no_taxes.scss +89 -1
- package/src/scss/cells/terrorist.scss +26 -8
- package/src/scss/others/question_marks.scss +1 -1
- package/src/svg/cells/bank_crash.svg +361 -314
- package/src/svg/cells/no_taxes.svg +424 -129
- package/src/svg/cells/terrorist.svg +1 -0
- package/src/svg/others/question_marks.svg +0 -1
package/package.json
CHANGED
|
@@ -1 +1,72 @@
|
|
|
1
|
-
|
|
1
|
+
.animated {
|
|
2
|
+
.bank_crash {
|
|
3
|
+
#person_with_chain {
|
|
4
|
+
animation-name: person_with_chain_animation;
|
|
5
|
+
animation-duration: 20s;
|
|
6
|
+
animation-timing-function: linear;
|
|
7
|
+
animation-iteration-count: infinite;
|
|
8
|
+
transform-origin: 7029px -1686px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
#gun_1_ {
|
|
12
|
+
animation-name: gun_animation;
|
|
13
|
+
animation-duration: 40s;
|
|
14
|
+
animation-timing-function: linear;
|
|
15
|
+
animation-iteration-count: infinite;
|
|
16
|
+
transform-origin: 6329px 4346px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
#chain_parts {
|
|
20
|
+
#part_1,
|
|
21
|
+
#part_2,
|
|
22
|
+
#part_3 {
|
|
23
|
+
animation-name: part_animation;
|
|
24
|
+
animation-duration: 2s;
|
|
25
|
+
animation-timing-function: linear;
|
|
26
|
+
animation-iteration-count: infinite;
|
|
27
|
+
transform-origin: 9370px -6430px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
#part_1 {
|
|
31
|
+
animation-delay: -1.3s;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
#part_2 {
|
|
35
|
+
animation-delay: -1.5s;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
#part_3 {
|
|
39
|
+
animation-duration: 1.6s;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
#part_1_container {
|
|
44
|
+
animation-name: gun_animation;
|
|
45
|
+
animation-duration: 5s;
|
|
46
|
+
animation-timing-function: linear;
|
|
47
|
+
animation-iteration-count: infinite;
|
|
48
|
+
transform-origin: 5384px -593px;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@keyframes person_with_chain_animation {
|
|
54
|
+
0% {
|
|
55
|
+
scale: 0.9;
|
|
56
|
+
}
|
|
57
|
+
100% {
|
|
58
|
+
scale: 1.1;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@keyframes gun_animation {
|
|
63
|
+
100% {
|
|
64
|
+
rotate: 360deg;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@keyframes part_animation {
|
|
69
|
+
100% {
|
|
70
|
+
scale: 2.3;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
@@ -1 +1,89 @@
|
|
|
1
|
-
|
|
1
|
+
.animated {
|
|
2
|
+
.no_taxes {
|
|
3
|
+
#finger,
|
|
4
|
+
#feather {
|
|
5
|
+
animation-name: finger_animation;
|
|
6
|
+
animation-duration: 0.5s;
|
|
7
|
+
animation-timing-function: ease-in-out;
|
|
8
|
+
animation-iteration-count: infinite;
|
|
9
|
+
animation-direction: alternate;
|
|
10
|
+
transform-origin: 2616px 5210px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
#hand {
|
|
14
|
+
animation-name: hand_animation;
|
|
15
|
+
animation-duration: 2s;
|
|
16
|
+
animation-timing-function: ease-in-out;
|
|
17
|
+
animation-iteration-count: infinite;
|
|
18
|
+
animation-direction: alternate;
|
|
19
|
+
transform-origin: 1684px 4840px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
#weight #rotatable {
|
|
23
|
+
animation-name: weight_animation;
|
|
24
|
+
animation-duration: 3s;
|
|
25
|
+
animation-timing-function: ease-in-out;
|
|
26
|
+
animation-iteration-count: infinite;
|
|
27
|
+
animation-direction: alternate;
|
|
28
|
+
transform-origin: 7120px 3520px;
|
|
29
|
+
|
|
30
|
+
#weight_part_1,
|
|
31
|
+
#weight_part_2 {
|
|
32
|
+
animation-name: weight_part_animation;
|
|
33
|
+
animation-duration: 3s;
|
|
34
|
+
animation-timing-function: ease-in-out;
|
|
35
|
+
animation-iteration-count: infinite;
|
|
36
|
+
animation-direction: alternate;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
#weight_part_1 {
|
|
40
|
+
transform-origin: 6336px 3478px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
#weight_part_2 {
|
|
44
|
+
transform-origin: 7772px 4139px;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
#head {
|
|
49
|
+
animation-name: head_animation;
|
|
50
|
+
animation-duration: 1.3s;
|
|
51
|
+
animation-timing-function: ease-in-out;
|
|
52
|
+
animation-iteration-count: infinite;
|
|
53
|
+
animation-direction: alternate;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@keyframes finger_animation {
|
|
59
|
+
100% {
|
|
60
|
+
rotate: 5deg;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@keyframes hand_animation {
|
|
65
|
+
0% {
|
|
66
|
+
rotate: -3deg;
|
|
67
|
+
}
|
|
68
|
+
100% {
|
|
69
|
+
rotate: 3deg;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
@keyframes weight_animation {
|
|
74
|
+
100% {
|
|
75
|
+
rotate: -35deg;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@keyframes weight_part_animation {
|
|
80
|
+
100% {
|
|
81
|
+
rotate: 35deg;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
@keyframes head_animation {
|
|
86
|
+
100% {
|
|
87
|
+
translate: 0 70px;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -6,33 +6,45 @@
|
|
|
6
6
|
#fire_3,
|
|
7
7
|
#fire_4 {
|
|
8
8
|
animation-name: fireAnimation;
|
|
9
|
-
animation-duration: 0.
|
|
10
|
-
animation-timing-function:
|
|
9
|
+
animation-duration: 0.8s;
|
|
10
|
+
animation-timing-function: ease-in-out;
|
|
11
11
|
animation-iteration-count: infinite;
|
|
12
12
|
animation-direction: alternate;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
#fire_1 {
|
|
16
|
+
animation-duration: 1s;
|
|
16
17
|
transform-origin: 6650px 6000px;
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
#fire_2 {
|
|
20
|
-
animation-
|
|
21
|
+
animation-duration: 1.1s;
|
|
22
|
+
animation-delay: -0.3s;
|
|
21
23
|
transform-origin: 3909px 6000px;
|
|
22
24
|
}
|
|
23
25
|
|
|
24
26
|
#fire_3 {
|
|
25
|
-
animation-
|
|
27
|
+
animation-duration: 0.7s;
|
|
28
|
+
animation-delay: -0.4s;
|
|
26
29
|
transform-origin: 2800px 6900px;
|
|
27
30
|
animation-name: smallFireAnimation;
|
|
28
31
|
}
|
|
29
32
|
|
|
30
33
|
#fire_4 {
|
|
31
|
-
animation-delay: 0.
|
|
34
|
+
animation-delay: -0.2s;
|
|
32
35
|
transform-origin: 4188px 6838px;
|
|
33
36
|
animation-name: smallFireAnimation;
|
|
34
37
|
}
|
|
35
38
|
}
|
|
39
|
+
|
|
40
|
+
#smoke_2_ {
|
|
41
|
+
animation-name: smoke_animation;
|
|
42
|
+
animation-duration: 1.5s;
|
|
43
|
+
animation-timing-function: ease-in-out;
|
|
44
|
+
animation-iteration-count: infinite;
|
|
45
|
+
animation-direction: alternate;
|
|
46
|
+
transform-origin: 0px 3490px;
|
|
47
|
+
}
|
|
36
48
|
}
|
|
37
49
|
}
|
|
38
50
|
|
|
@@ -41,15 +53,21 @@
|
|
|
41
53
|
transform: scale(1);
|
|
42
54
|
}
|
|
43
55
|
100% {
|
|
44
|
-
transform: scale(1.
|
|
56
|
+
transform: scale(1.1);
|
|
45
57
|
}
|
|
46
58
|
}
|
|
47
59
|
|
|
48
60
|
@keyframes smallFireAnimation {
|
|
49
61
|
0% {
|
|
50
|
-
transform: scale(1);
|
|
62
|
+
transform: scale(1.1);
|
|
51
63
|
}
|
|
52
64
|
100% {
|
|
53
|
-
transform: scale(1.
|
|
65
|
+
transform: scale(1.3);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@keyframes smoke_animation {
|
|
70
|
+
100% {
|
|
71
|
+
scale: 1 1.2;
|
|
54
72
|
}
|
|
55
73
|
}
|