signOut.wxss 1.0 KB

1234567891011121314151617181920212223242526272829
  1. .content {
  2. /* display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center; */
  6. }
  7. .box{
  8. }
  9. #firstScreenPage { top:50%; left:50%; position: absolute; -webkit-transform: translateY(-50%) translateX(-50%); transform: translateY(-50%) translateX(-50%); z-index:100;
  10. }
  11. @-webkit-keyframes ball-beat {
  12. 50% { opacity: 0.2; -webkit-transform: scale(0.75); transform: scale(0.75);
  13. }
  14. 100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1);
  15. }
  16. }
  17. @keyframes ball-beat {
  18. 50% { opacity: 0.2; -webkit-transform: scale(0.75); transform: scale(0.75);
  19. }
  20. 100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1);
  21. }
  22. }
  23. .ball-beat > view { background-color: #279fcf; width: 15px; height: 15px; border-radius: 100% !important; margin: 2px; -webkit-animation-fill-mode: both; animation-fill-mode: both; display: inline-block; -webkit-animation: ball-beat 0.7s 0s infinite linear; animation: ball-beat 0.7s 0s infinite linear;
  24. }
  25. .ball-beat > view:nth-child(2n-1) { -webkit-animation-delay: 0.35s !important; animation-delay: 0.35s !important;
  26. }