123456789101112131415161718192021222324252627282930313233 |
- ion-card {
- top: 1px;
- margin: 10px;
- }
- ion-card-title {
- font-weight: bold;
- }
- ion-avatar {
- margin-right: 10px;
- }
- .card {
- width: 365px;
- height: 250px;
- background-color: #4158D0;
- background-image: linear-gradient(43deg, #4158D0 0%, #0c8dd8 46%, #baff70 100%);
- border-radius: 8px;
- color: white;
- overflow: hidden;
- position: relative;
- transform-style: preserve-3d;
- perspective: 1000px;
- transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
- cursor: pointer;
-
- }
|