tab3.page.scss 494 B

123456789101112131415161718192021222324252627282930313233
  1. ion-card {
  2. top: 1px;
  3. margin: 10px;
  4. }
  5. ion-card-title {
  6. font-weight: bold;
  7. }
  8. ion-avatar {
  9. margin-right: 10px;
  10. }
  11. .card {
  12. width: 365px;
  13. height: 250px;
  14. background-color: #4158D0;
  15. background-image: linear-gradient(43deg, #4158D0 0%, #0c8dd8 46%, #baff70 100%);
  16. border-radius: 8px;
  17. color: white;
  18. overflow: hidden;
  19. position: relative;
  20. transform-style: preserve-3d;
  21. perspective: 1000px;
  22. transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  23. cursor: pointer;
  24. }