western-world 3.0.607 → 3.0.608

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "western-world",
3
- "version": "3.0.607",
3
+ "version": "3.0.608",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -1,22 +1,141 @@
1
1
  .animated {
2
2
  .famine_and_epidemic {
3
- #main-container {
4
- animation-duration: 20s;
5
- animation-timing-function: linear;
6
- animation-iteration-count: 1;
7
- animation-name: famine_and_epidemic_animation;
8
- transform-origin: center center;
3
+ #hand_1,
4
+ #hand_2,
5
+ #hand_3,
6
+ #hand_4,
7
+ #hand_5,
8
+ #hand_6,
9
+ #hand_7,
10
+ #hand_8 {
11
+ animation-duration: 1.5s;
12
+ animation-timing-function: ease-in-out;
13
+ animation-name: hand_animation;
14
+ animation-iteration-count: infinite;
15
+ animation-direction: alternate;
9
16
  }
17
+
18
+ #background_hand_1,
19
+ #background_hand_2,
20
+ #background_hand_3,
21
+ #background_hand_4,
22
+ #background_hand_5 {
23
+ animation-duration: 2s;
24
+ animation-timing-function: ease-in-out;
25
+ animation-name: background_hand_animation;
26
+ animation-iteration-count: infinite;
27
+ animation-direction: alternate;
28
+ }
29
+
30
+ #skull {
31
+ animation-duration: 5s;
32
+ animation-timing-function: ease-in-out;
33
+ animation-name: skull_animation;
34
+ animation-iteration-count: infinite;
35
+ animation-direction: alternate;
36
+ transform-origin: center 500px;
37
+ }
38
+
39
+ #doctor {
40
+ animation-duration: 10s;
41
+ animation-timing-function: ease-in-out;
42
+ animation-name: doctor_animation;
43
+ animation-iteration-count: infinite;
44
+ animation-direction: alternate;
45
+ }
46
+
47
+ #death {
48
+ animation-duration: 10s;
49
+ animation-timing-function: ease-in-out;
50
+ animation-name: death_animation;
51
+ animation-iteration-count: infinite;
52
+ animation-direction: alternate;
53
+ }
54
+ }
55
+
56
+ #hand_1 {
57
+ animation-delay: -1.2s;
58
+ }
59
+ #hand_2 {
60
+ animation-duration: 1.5s;
61
+ animation-delay: 0.4s;
62
+ }
63
+ #hand_3 {
64
+ animation-delay: -1.4s;
65
+ }
66
+ #hand_4 {
67
+ animation-duration: 1.7s;
68
+ animation-delay: -0.8s;
69
+ }
70
+ #hand_5 {
71
+ animation-duration: 1.1s;
72
+ animation-delay: -0.6s;
73
+ }
74
+ #hand_6 {
75
+ animation-delay: -0.3s;
76
+ }
77
+ #hand_7 {
78
+ animation-duration: 1.6s;
79
+ animation-delay: -1.1s;
80
+ }
81
+ #hand_8 {
82
+ animation-delay: -1.6s;
83
+ }
84
+
85
+ #background_hand_1 {
86
+ animation-delay: -1.6s;
87
+ }
88
+ #background_hand_2 {
89
+ animation-delay: -0.7s;
90
+ }
91
+ #background_hand_3 {
92
+ animation-delay: -1.3s;
93
+ }
94
+ #background_hand_4 {
95
+ animation-delay: -0.3s;
96
+ }
97
+ #background_hand_5 {
98
+ animation-delay: -1.8s;
10
99
  }
11
100
  }
12
101
 
13
- @keyframes famine_and_epidemic_animation {
102
+ @keyframes hand_animation {
103
+ 100% {
104
+ translate: 0 300px;
105
+ }
106
+ }
107
+
108
+ @keyframes background_hand_animation {
109
+ 100% {
110
+ translate: 0 140px;
111
+ }
112
+ }
113
+
114
+ @keyframes skull_animation {
14
115
  0% {
15
- scale: 0.9;
16
- filter: brightness(50%);
116
+ scale: 0.7;
17
117
  }
18
118
  100% {
19
119
  scale: 1;
20
- filter: brightness(100%);
21
120
  }
22
121
  }
122
+
123
+ @keyframes death_animation {
124
+ 0% {
125
+ translate: -1000px;
126
+ }
127
+ 100% {
128
+ translate: 0px;
129
+ }
130
+ }
131
+
132
+ @keyframes doctor_animation {
133
+ 0% {
134
+ translate: 1000px;
135
+ }
136
+ 100% {
137
+ translate: 0px;
138
+ }
139
+ }
140
+
141
+