login.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. page-login {
  2. ion-content {
  3. background: #3f50b4 !important;
  4. }
  5. img {
  6. display: block;
  7. width: 13.4rem;
  8. margin: 50px auto;
  9. filter: brightness(0) invert(1);
  10. }
  11. ion-item {
  12. border-radius: 2px !important;
  13. margin-bottom: 2px !important;
  14. }
  15. .item-inner {
  16. margin-left: 5px !important;
  17. }
  18. .item-icon {
  19. color: #d3d3d3 !important;
  20. }
  21. @keyframes pulse_animation {
  22. 0% {
  23. transform: scale(1);
  24. }
  25. 30% {
  26. transform: scale(1);
  27. }
  28. 40% {
  29. transform: scale(1.08);
  30. }
  31. 50% {
  32. transform: scale(1);
  33. }
  34. 60% {
  35. transform: scale(1);
  36. }
  37. 70% {
  38. transform: scale(1.05);
  39. }
  40. 80% {
  41. transform: scale(1);
  42. }
  43. 100% {
  44. transform: scale(1);
  45. }
  46. }
  47. .pulse {
  48. animation-name: pulse_animation;
  49. animation-duration: 5000ms;
  50. transform-origin: 70% 70%;
  51. animation-iteration-count: infinite;
  52. animation-timing-function: linear;
  53. }
  54. }