|
105 | 105 | box-sizing: border-box; |
106 | 106 | } |
107 | 107 |
|
| 108 | + @keyframes spin { |
| 109 | + 0% { transform: rotate(0deg); } |
| 110 | + 100% { transform: rotate(360deg); } |
| 111 | + } |
| 112 | + |
| 113 | + @-moz-keyframes spin { |
| 114 | + 0% { -moz-transform: rotate(0deg); } |
| 115 | + 100% { -moz-transform: rotate(360deg); } |
| 116 | + } |
| 117 | + |
| 118 | + @-webkit-keyframes spin { |
| 119 | + 0% { -webkit-transform: rotate(0deg); } |
| 120 | + 100% { -webkit-transform: rotate(360deg); } |
| 121 | + } |
| 122 | + |
| 123 | + .shape-circle-middle-left, |
| 124 | + .shape-circle-top-middle__right, |
| 125 | + .shape-circle-top-right { |
| 126 | + -webkit-animation: pulsate 3s infinite; |
| 127 | + -moz-animation: pulsate 3s infinite; |
| 128 | + animation: pulsate 3s infinite; |
| 129 | + } |
| 130 | + |
| 131 | + @keyframes pulsate { |
| 132 | + 0% { transform: scale(1); } |
| 133 | + 50% { transform: scale(1.05); } |
| 134 | + 100% { transform: scale(1); } |
| 135 | + } |
| 136 | + |
| 137 | + @-moz-keyframes pulsate { |
| 138 | + 0% { -moz-transform: scale(1); } |
| 139 | + 50% { -moz-transform: scale(1.05); } |
| 140 | + 100% { -moz-transform: scale(1); } |
| 141 | + } |
| 142 | + |
| 143 | + @-webkit-keyframes pulsate { |
| 144 | + 0% { -webkit-transform: scale(1); } |
| 145 | + 50% { -webkit-transform: scale(1.05); } |
| 146 | + 100% { -webkit-transform: scale(1); } |
| 147 | + } |
| 148 | + |
108 | 149 | .shape-square-top-left { |
109 | 150 | top: 10%; |
110 | 151 | left: 0px; |
111 | 152 | transform-origin: top left; |
112 | 153 | transform: rotate(6deg); |
113 | 154 | width: 110%; |
114 | 155 | padding: 37%; |
| 156 | + background-color: #D5EBDB; |
115 | 157 | } |
116 | 158 |
|
117 | 159 | .shape-square-middle-left { |
118 | 160 | top: 80%; |
119 | 161 | right: 45%; |
120 | 162 | transform-origin: top right; |
121 | 163 | transform: rotate(-28deg); |
| 164 | + -webkit-animation: spin 90s linear infinite; |
| 165 | + -moz-animation: spin 90s linear infinite; |
| 166 | + animation: spin 90s linear infinite; |
| 167 | + -webkit-transform-origin: center; |
| 168 | + -moz-transform-origin: center; |
| 169 | + transform-origin: center; |
122 | 170 | padding: 37%; |
123 | 171 | } |
124 | 172 |
|
|
148 | 196 | bottom: 10%; |
149 | 197 | left: 7%; |
150 | 198 | padding: 12%; |
151 | | - transform-origin: top middle; |
152 | | - transform: rotate(-73deg); |
| 199 | + -webkit-animation: pulsate 5s infinite; |
| 200 | + -moz-animation: pulsate 5s infinite; |
| 201 | + animation: pulsate 5s infinite; |
153 | 202 | clip-path: polygon(50% 13%, 0% 100%, 100% 100%); |
154 | 203 | } |
155 | 204 |
|
|
189 | 238 | transform-origin: bottom right; |
190 | 239 | transform: rotate(12deg); |
191 | 240 | padding: 37%; |
| 241 | + background-color: #064e72; |
192 | 242 | } |
193 | 243 |
|
194 | 244 | .shape-triangle-bottom-right { |
|
206 | 256 | transform-origin: top left; |
207 | 257 | transform: rotate(8deg); |
208 | 258 | padding: 9%; |
| 259 | + background-color: #ffcbbd; |
209 | 260 | } |
210 | 261 |
|
211 | 262 | .shape-square-bottom-middle__left { |
|
226 | 277 |
|
227 | 278 | .shape-square-bottom-middle__most-right { |
228 | 279 | top: -10%; |
229 | | - right: 2%; |
| 280 | + right: -2%; |
230 | 281 | transform-origin: top right; |
231 | 282 | transform: rotate(-16deg); |
232 | 283 | padding: 9%; |
| 284 | + -webkit-animation: pulsate 5s infinite; |
| 285 | + -moz-animation: pulsate 5s infinite; |
| 286 | + animation: pulsate 5s infinite; |
233 | 287 | } |
234 | 288 |
|
235 | 289 | .landing-page-scroll-container { |
|
0 commit comments