gofly-front.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .launchButton{
  2. position: fixed!important;
  3. bottom: 55px!important;
  4. right: 20px!important;
  5. left: auto!important;
  6. height: 48px!important;
  7. width: auto!important;
  8. z-index: 10000000000000!important;
  9. background: #20B2BB!important;
  10. border: 0!important;
  11. border-radius: 100px!important;
  12. box-shadow: 0 3px 15px 0 rgba(0,0,0,.25)!important;
  13. box-sizing: border-box!important;
  14. padding: 0 20px!important;
  15. transition: all .4s,bottom .8s ease-in-out!important;
  16. cursor: pointer!important;
  17. outline: 0!important;
  18. display: inline-block;
  19. margin: 0!important;
  20. -webkit-font-smoothing: antialiased!important;
  21. -webkit-tap-highlight-color: transparent!important;
  22. animation-name: loadBubble;
  23. animation-iteration-count: 1;
  24. animation-timing-function: ease-in-out;
  25. animation-duration: .2s;
  26. color: #ffffff !important;
  27. }
  28. .launchButton:hover {
  29. box-shadow: 0 3px 20px 0 rgba(0,0,0,.5)!important;
  30. }
  31. .launchButton svg{
  32. width: 28px;
  33. height: 48px;
  34. }
  35. .launchButtonText {
  36. color: #fff!important;
  37. display: inline-block!important;
  38. font-family: -apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen,Ubuntu,Cantarell,fira sans,droid sans,helvetica neue,sans-serif!important;
  39. font-size: 1em!important;
  40. line-height: 48px!important;
  41. font-weight: 700!important;
  42. margin: 0 0 0 12px!important;
  43. overflow: hidden!important;
  44. text-overflow: ellipsis!important;
  45. vertical-align: top!important;
  46. white-space: nowrap!important;
  47. padding: 0!important;
  48. transition: .6s ease-in-out!important;
  49. }
  50. @-webkit-keyframes bounce-up {
  51. 25% {-webkit-transform: translateY(6px);}
  52. 50%, 100% {-webkit-transform: translateY(0);}
  53. 75% {-webkit-transform: translateY(-6px);}
  54. }
  55. @keyframes bounce-up {
  56. 25% {transform: translateY(6px);}
  57. 50%, 100% {transform: translateY(0);}
  58. 75% {transform: translateY(-6px);}
  59. }
  60. .animateUpDown{ -webkit-animation: bounce-up 1.4s linear infinite;animation: bounce-up 1.4s linear infinite;}