123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- page-login {
- ion-content {
- background: #3f50b4 !important;
- }
- img {
- display: block;
- width: 13.4rem;
- margin: 50px auto;
- filter: brightness(0) invert(1);
- }
- ion-item {
- border-radius: 2px !important;
- margin-bottom: 2px !important;
- }
- .item-inner {
- margin-left: 5px !important;
- }
- .item-icon {
- color: #d3d3d3 !important;
- }
- @keyframes pulse_animation {
- 0% {
- transform: scale(1);
- }
- 30% {
- transform: scale(1);
- }
- 40% {
- transform: scale(1.08);
- }
- 50% {
- transform: scale(1);
- }
- 60% {
- transform: scale(1);
- }
- 70% {
- transform: scale(1.05);
- }
- 80% {
- transform: scale(1);
- }
- 100% {
- transform: scale(1);
- }
- }
- .pulse {
- animation-name: pulse_animation;
- animation-duration: 5000ms;
- transform-origin: 70% 70%;
- animation-iteration-count: infinite;
- animation-timing-function: linear;
- }
- }
|