/*! * Hover.css (http://ianlunn.github.io/Hover/) * Version: 2.0.2 * Author: Ian Lunn @IanLunn * Author URL: http://ianlunn.co.uk/ * Github: https://github.com/IanLunn/Hover * Made available under a MIT License: * http://www.opensource.org/licenses/mit-license.php * Hover.css Copyright Ian Lunn 2014. Generated with Sass. */ /* 2D TRANSITIONS */ /* Grow */ .elementor-animation-grow { transition-duration: 0.3s; transition-property: transform; } .elementor-animation-grow:hover { transform: scale(1.1); } /* Shrink */ .elementor-animation-shrink { transition-duration: 0.3s; transition-property: transform; } .elementor-animation-shrink:hover { transform: scale(0.9); } /* Pulse */ @keyframes elementor-animation-pulse { 25% { transform: scale(1.1); } 75% { transform: scale(0.9); } } .elementor-animation-pulse:hover { animation-name: elementor-animation-pulse; animation-duration: 1s; animation-timing-function: linear; animation-iteration-count: infinite; } /* Pulse Grow */ @keyframes elementor-animation-pulse-grow { to { transform: scale(1.1); } } .elementor-animation-pulse-grow:hover { animation-name: elementor-animation-pulse-grow; animation-duration: 0.3s; animation-timing-function: linear; animation-iteration-count: infinite; animation-direction: alternate; } /* Pulse Shrink */ @keyframes elementor-animation-pulse-shrink { to { transform: scale(0.9); } } .elementor-animation-pulse-shrink:hover { animation-name: elementor-animation-pulse-shrink; animation-duration: 0.3s; animation-timing-function: linear; animation-iteration-count: infinite; animation-direction: alternate; } /* Push */ @keyframes elementor-animation-push { 50% { transform: scale(0.8); } 100% { transform: scale(1); } } .elementor-animation-push:hover { animation-name: elementor-animation-push; animation-duration: 0.3s; animation-timing-function: linear; animation-iteration-count: 1; } /* Pop */ @keyframes elementor-animation-pop { 50% { transform: scale(1.2); } } .elementor-animation-pop:hover { animation-name: elementor-animation-pop; animation-duration: 0.3s; animation-timing-function: linear; animation-iteration-count: 1; } /* Bounce In */ .elementor-animation-bounce-in { transition-duration: 0.5s; } .elementor-animation-bounce-in:hover { transform: scale(1.2); transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); } /* Bounce Out */ .elementor-animation-bounce-out { transition-duration: 0.5s; } .elementor-animation-bounce-out:hover { transform: scale(0.8); transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); } /* Rotate */ .elementor-animation-rotate { transition-duration: 0.3s; transition-property: transform; } .elementor-animation-rotate:hover { transform: rotate(4deg); } /* Grow Rotate */ .elementor-animation-grow-rotate { transition-duration: 0.3s; transition-property: transform; } .elementor-animation-grow-rotate:hover { transform: scale(1.1) rotate(4deg); } /* Float */ .elementor-animation-float { transition-duration: 0.3s; transition-property: transform; transition-timing-function: ease-out; } .elementor-animation-float:hover { transform: translateY(-8px); } /* Sink */ .elementor-animation-sink { transition-duration: 0.3s; transition-property: transform; transition-timing-function: ease-out; } .elementor-animation-sink:hover { transform: translateY(8px); } /* Bob */ @keyframes elementor-animation-bob { 0% { transform: translateY(-8px); } 50% { transform: translateY(-4px); } 100% { transform: translateY(-8px); } } @keyframes elementor-animation-bob-float { 100% { transform: translateY(-8px); } } .elementor-animation-bob:hover { animation-name: elementor-animation-bob-float, elementor-animation-bob; animation-duration: .3s, 1.5s; animation-delay: 0s, .3s; animation-timing-function: ease-out, ease-in-out; animation-iteration-count: 1, infinite; animation-fill-mode: forwards; animation-direction: normal, alternate; } /* Hang */ @keyframes elementor-animation-hang { 0% { transform: translateY(8px); } 50% { transform: translateY(4px); } 100% { transform: translateY(8px); } } @keyframes elementor-animation-hang-sink { 100% { transform: translateY(8px); } } .elementor-animation-hang:hover { animation-name: elementor-animation-hang-sink, elementor-animation-hang; animation-duration: .3s, 1.5s; animation-delay: 0s, .3s; animation-timing-function: ease-out, ease-in-out; animation-iteration-count: 1, infinite; animation-fill-mode: forwards; animation-direction: normal, alternate; } /* Skew */ .elementor-animation-skew { transition-duration: 0.3s; transition-property: transform; } .elementor-animation-skew:hover { transform: skew(-10deg); } /* Skew Forward */ .elementor-animation-skew-forward { transition-duration: 0.3s; transition-property: transform; transform-origin: 0 100%; } .elementor-animation-skew-forward:hover { transform: skew(-10deg); } /* Skew Backward */ .elementor-animation-skew-backward { transition-duration: 0.3s; transition-property: transform; transform-origin: 0 100%; } .elementor-animation-skew-backward:hover { transform: skew(10deg); } /* Wobble Vertical */ @keyframes elementor-animation-wobble-vertical { 16.65% { transform: translateY(8px); } 33.3% { transform: translateY(-6px); } 49.95% { transform: translateY(4px); } 66.6% { transform: translateY(-2px); } 83.25% { transform: translateY(1px); } 100% { transform: translateY(0); } } .elementor-animation-wobble-vertical:hover { animation-name: elementor-animation-wobble-vertical; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Wobble Horizontal */ @keyframes elementor-animation-wobble-horizontal { 16.65% { transform: translateX(8px); } 33.3% { transform: translateX(-6px); } 49.95% { transform: translateX(4px); } 66.6% { transform: translateX(-2px); } 83.25% { transform: translateX(1px); } 100% { transform: translateX(0); } } .elementor-animation-wobble-horizontal:hover { animation-name: elementor-animation-wobble-horizontal; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Wobble To Bottom Right */ @keyframes elementor-animation-wobble-to-bottom-right { 16.65% { transform: translate(8px, 8px); } 33.3% { transform: translate(-6px, -6px); } 49.95% { transform: translate(4px, 4px); } 66.6% { transform: translate(-2px, -2px); } 83.25% { transform: translate(1px, 1px); } 100% { transform: translate(0, 0); } } .elementor-animation-wobble-to-bottom-right:hover { animation-name: elementor-animation-wobble-to-bottom-right; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Wobble To Top Right */ @keyframes elementor-animation-wobble-to-top-right { 16.65% { transform: translate(8px, -8px); } 33.3% { transform: translate(-6px, 6px); } 49.95% { transform: translate(4px, -4px); } 66.6% { transform: translate(-2px, 2px); } 83.25% { transform: translate(1px, -1px); } 100% { transform: translate(0, 0); } } .elementor-animation-wobble-to-top-right:hover { animation-name: elementor-animation-wobble-to-top-right; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Wobble Top */ @keyframes elementor-animation-wobble-top { 16.65% { transform: skew(-12deg); } 33.3% { transform: skew(10deg); } 49.95% { transform: skew(-6deg); } 66.6% { transform: skew(4deg); } 83.25% { transform: skew(-2deg); } 100% { transform: skew(0); } } .elementor-animation-wobble-top { transform-origin: 0 100%; } .elementor-animation-wobble-top:hover { animation-name: elementor-animation-wobble-top; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Wobble Bottom */ @keyframes elementor-animation-wobble-bottom { 16.65% { transform: skew(-12deg); } 33.3% { transform: skew(10deg); } 49.95% { transform: skew(-6deg); } 66.6% { transform: skew(4deg); } 83.25% { transform: skew(-2deg); } 100% { transform: skew(0); } } .elementor-animation-wobble-bottom { transform-origin: 100% 0; } .elementor-animation-wobble-bottom:hover { animation-name: elementor-animation-wobble-bottom; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Wobble Skew */ @keyframes elementor-animation-wobble-skew { 16.65% { transform: skew(-12deg); } 33.3% { transform: skew(10deg); } 49.95% { transform: skew(-6deg); } 66.6% { transform: skew(4deg); } 83.25% { transform: skew(-2deg); } 100% { transform: skew(0); } } .elementor-animation-wobble-skew:hover { animation-name: elementor-animation-wobble-skew; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Buzz */ @keyframes elementor-animation-buzz { 50% { transform: translateX(3px) rotate(2deg); } 100% { transform: translateX(-3px) rotate(-2deg); } } .elementor-animation-buzz:hover { animation-name: elementor-animation-buzz; animation-duration: 0.15s; animation-timing-function: linear; animation-iteration-count: infinite; } /* Buzz Out */ @keyframes elementor-animation-buzz-out { 10% { transform: translateX(3px) rotate(2deg); } 20% { transform: translateX(-3px) rotate(-2deg); } 30% { transform: translateX(3px) rotate(2deg); } 40% { transform: translateX(-3px) rotate(-2deg); } 50% { transform: translateX(2px) rotate(1deg); } 60% { transform: translateX(-2px) rotate(-1deg); } 70% { transform: translateX(2px) rotate(1deg); } 80% { transform: translateX(-2px) rotate(-1deg); } 90% { transform: translateX(1px) rotate(0); } 100% { transform: translateX(-1px) rotate(0); } } .elementor-animation-buzz-out:hover { animation-name: elementor-animation-buzz-out; animation-duration: 0.75s; animation-timing-function: linear; animation-iteration-count: 1; } /*# sourceMappingURL=hover.css.map */ general – Mouse Technology

Category Archives: general

general

Casino 1xslots Рабочее Зеркало Официального Сайта Сегодня

Чтобы обеспечить постоянный доступ к платформе для игроков в любое время, регулярно создаются новые зеркала 1xSlots. Копия сохраняет полный функционал, позволяя вносить депозиты, делать ставки на игровых автоматах, получать и отыгрывать бонусы, а также выводить выигрыши обычным способом. В настоящее время много игроков предпочитает использовать мобильные устройства для доступа к своим любимым онлайн-казино, и 1xslots […]

1xslots скачать на андроид

Для получения обещанных бесплатных прокруток потребуется открыть подраздел «Бонусы и подарки» в личном кабинете и еще раз указать в нем код BETRU. После одобрения комбинации вращения поступят на учетную запись. В качестве дополнительного бонуса можно получить фриспины, которые позволяют играть в казино 1хстотс бесплатно. Демонстрационные версии эмуляторов позволяют изучить функциональные особенности аппарата и проверить его […]

Промокоды В Покердом При Регистрации И После Депозита, Бездепозитные Бонус-коды Для Игроков На 2024

Покердом предлагает пользователям два варианта программы лояльности. «Машина времени 2.0» основана на выплате рейкбека — она подходит тем, кто регулярно играет в покер. Для пользователей, заинтересованных в других развлечениях платформы (БК и казино), есть альтернативная программа — «100 шагов к миллиону». По ее условиям игрокам выдаются случайные денежные призы и фиксированный кешбэк. Посмотреть, какие промо […]

Freespin Veren Siteler

Лишь в 2011 возобновлено производство 200 и 250-кубовых мотоциклов, а в начале 2012 г. В 80-е под влиянием неслабеющей популярности мотоспорта входят в моду обтекатели рубленой формы, с ростом скоростей широко применяются лёгкие сверхжёсткие пространственные рамы и дисковые тормоза. От кроссовых мотоциклов отпочковываются потребительские «эндуро», появляются квадроциклы, а мотороллер 1950-х годов возрождается в виде современного «скутера» […]

big bass bonanza yeni

Oyunun sembolleri, balıklar, balıkçı, balıkçı ağı ve big bass bonanza giriş balıkçı feneridir. Big Bass Bonanza’da kazanmak için, aynı sembollerin en az 3 tanesini bir ödeme çizgisinde yan yana getirmeniz gerekir. Oyunda, Wild sembolü, diğer tüm sembollerin yerine geçebilir. Scatter sembolü ise, ücretsiz dönüşleri tetikleyebilir. Free Spins özelliği, Big Bass Bonanza’da en önemli özelliktir. Oyunun […]

gerçek paralı casino oyunları

Bir oyun ne kadar ilgi görürse kazandırma olasılığı da o kadar yüksek olmaktadır. Slot oyunlarının özel yanlarından biride Jackpot ödüllerine açık olmasıdır. Slot oyunlar oldukça eğlenceli Casino oyunları arasında yer almaktadır. Online casino sitelerinde daha fazla kazanmak için, öncelikle kaliteli ve güvenilir bir site seçmelisiniz. Unutmayın, slot oyunları kazanma oranı ne olursa olsun, strateji ve […]

Покердом официальный сайт, скачать клиент и играть онлайн на реальные деньги, вход в покер-рум

Условные фишки — демовалюта для игры в покер онлайн. Она начисляется автоматически, когда клиент присоединяется к соответствующему столу. Игроку станут доступны 25 фриспинов общей стоимостью 400 рублей. Прoйдитe рeгистрацию на нашeм сайтe, пoпoлнитe счeт в кассe, а затeм устанoвитe игрoвoй клиeнт на ПK или тeлeфoн. Укажите сумму депозита и следуйте инструкциям для завершения транзакции. Ежемесячная […]

1вин

Эти правила являются основополагающими для обеспечения безопасности и прозрачности при выводе средств на платформе 1win. Приложение очень похоже на сайт в плане удобной навигации и предлагает те же возможности. Вас могут попросить пройти обязательную верификацию для подтверждения вашего профиля перед первым выводом средств. Это первый проект в беттинге, связанный с инвестициями. После публикации результатов матча […]

sweet bonanza demo

Yani, potansiyel bir altın arayışı ile heyecan verici bir yolculuk arıyorsanız, Sweet Bonanza tam da aradığınız lezzetli ikramlardan biri olabilir. Sweet Bonanza ile başlamak gerçekten basittir, harika ve yeni başlayanlar için uygun bir seçenektir. Bu slotun oyun alanı altı makara, beş sıra ve bir çizgiden oluşur. Bir şeyi görmek veya indirmek istiyorsanız kayıt olmanız gerekir. […]

Покердом: Официальный Сайт Онлайн Казино Poker-dom

Пoд брeндoм рабoтаeт пoкeрный рум, букмeкeрская кoнтoра и казинo. Для игры в них испoльзуeтся oдин счeт и аккаунт. Если систeма вывoдит увeдoмлeниe o блoкирoвкe аккаунта, значит, вы нарушили правила игры в румe. Если жe у вас прoблeмы с дoступoм к сайту, тo вы мoжeтe выпoлнить вхoд и играть в Пoкeрдoм, вoспoльзoвавшись любым актуальным зeркалoм. В […]

× How can I help you?