|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- @keyframes rotateme {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
- }
- @-webkit-keyframes rotateme {
- from {
- -webkit-transform: rotate(0deg);
- }
- to {
- -webkit-transform: rotate(360deg);
- }
- }
- @-moz-keyframes rotateme {
- from {
- -moz-transform: rotate(0deg);
- }
- to {
- -moz-transform: rotate(360deg);
- }
- }
- @-o-keyframes rotateme {
- from {
- -o-transform: rotate(0deg);
- }
- to {
- -o-transform: rotate(360deg);
- }
- }
-
- .empty-boxed{
- animation-name: rotateme;
- animation-duration: 24s;
- animation-iteration-count: infinite;
- animation-timing-function: linear;
-
- -webkit-animation-name: rotateme;
- -webkit-animation-duration: 24s;
- -webkit-animation-iteration-count: infinite;
- -webkit-animation-timing-function: linear;
-
- -moz-animation-name: rotateme;
- -moz-animation-duration: 24s;
- -moz-animation-iteration-count: infinite;
- -moz-animation-timing-function: linear;
-
- -ms-animation-name: rotateme;
- -ms-animation-duration: 24s;
- -ms-animation-iteration-count: infinite;
- -ms-animation-timing-function: linear;
-
- -o-animation-name: rotateme;
- -o-animation-duration: 24s;
- -o-animation-iteration-count: infinite;
- -o-animation-timing-function: linear;
- }
-
- /* Bob */
- @-webkit-keyframes float-bob {
- 0% {
- -webkit-transform: translateY(-20px);
- transform: translateY(-20px);
- }
-
- 50% {
- -webkit-transform: translateY(-10px);
- transform: translateY(-10px);
- }
-
- 100% {
- -webkit-transform: translateY(-20px);
- transform: translateY(-20px);
- }
- }
-
- @keyframes float-bob {
- 0% {
- -webkit-transform: translateY(-20px);
- transform: translateY(-20px);
- }
-
- 50% {
- -webkit-transform: translateY(-10px);
- transform: translateY(-10px);
- }
-
- 100% {
- -webkit-transform: translateY(-20px);
- transform: translateY(-20px);
- }
- }
-
-
- @-webkit-keyframes zoom-fade {
- 0% {
- -webkit-transform: scale(0.9);
- transform: scale(0.9);
- }
-
- 50% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-
- 100% {
- -webkit-transform: scale(0.9);
- transform: scale(0.9);
- }
- }
-
- @keyframes zoom-fade {
- 0% {
- -webkit-transform: scale(0.9);
- transform: scale(0.9);
- }
-
- 50% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-
- 100% {
- -webkit-transform: scale(0.9);
- transform: scale(0.9);
- }
- }
-
- .empty-boxed{
- animation-name: float-bob;
- animation-duration: 2s;
- animation-iteration-count: infinite;
- animation-timing-function: linear;
-
- -webkit-animation-name: float-bob;
- -webkit-animation-duration: 2s;
- -webkit-animation-iteration-count: infinite;
- -webkit-animation-timing-function: linear;
-
- -moz-animation-name: float-bob;
- -moz-animation-duration: 2s;
- -moz-animation-iteration-count: infinite;
- -moz-animation-timing-function: linear;
-
- -ms-animation-name: float-bob;
- -ms-animation-duration: 2s;
- -ms-animation-iteration-count: infinite;
- -ms-animation-timing-function: linear;
-
- -o-animation-name: float-bob;
- -o-animation-duration: 2s;
- -o-animation-iteration-count: infinite;
- -o-animation-timing-function: linear;
- }
-
- .choice-section:after,
- .welcome-section .image-column .inner-column:before,
- .choice-section .image-column .inner-column .image:before{
- animation-name: zoom-fade;
- animation-duration: 3s;
- animation-iteration-count: infinite;
- animation-timing-function: linear;
-
- -webkit-animation-name: zoom-fade;
- -webkit-animation-duration: 3s;
- -webkit-animation-iteration-count: infinite;
- -webkit-animation-timing-function: linear;
-
- -moz-animation-name: zoom-fade;
- -moz-animation-duration: 3s;
- -moz-animation-iteration-count: infinite;
- -moz-animation-timing-function: linear;
-
- -ms-animation-name: zoom-fade;
- -ms-animation-duration: 3s;
- -ms-animation-iteration-count: infinite;
- -ms-animation-timing-function: linear;
-
- -o-animation-name: zoom-fade;
- -o-animation-duration: 3s;
- -o-animation-iteration-count: infinite;
- -o-animation-timing-function: linear;
- }
|