tab4.page.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. ion-content {
  2. background-color: #ffffff;
  3. }
  4. ion-card {
  5. width: auto;
  6. height: 240px;
  7. border: 1px solid #d6d6d6;
  8. }
  9. .image-container{
  10. position: relative;
  11. overflow: hidden;
  12. }
  13. .image-container img{
  14. width: 100%;
  15. height: 75%;
  16. background-color: #000000;
  17. object-fit: cover;
  18. object-position: center;
  19. }
  20. .header {
  21. --background: rgba(166, 66, 253, 0.7); /* 设置顶部工具栏背景色为紫白色渐变的半透明色 */
  22. color: #000000; /* 设置文字颜色为白色 */
  23. ion-button{
  24. color: #000000;
  25. }
  26. }
  27. .user-profile {
  28. background: linear-gradient(to bottom, #a870da, #d6d5d6);
  29. color: #ffffff;
  30. padding: 20px;
  31. .user-info {
  32. text-align: center;
  33. img {
  34. border-radius: 50%;
  35. width: 100px;
  36. height: 100px;
  37. }
  38. h3 {
  39. margin: 10px 0;
  40. }
  41. input {
  42. border: 1px solid #ffffff;
  43. border-radius: 2px;
  44. padding: 5px 10px;
  45. margin-bottom: 10px;
  46. }
  47. .info-icons {
  48. display: flex;
  49. justify-content: center;
  50. align-items: center;
  51. .icon-wrapper {
  52. display: flex;
  53. align-items: center;
  54. margin-right: 10px;
  55. ion-icon {
  56. margin-right: 5px;
  57. }
  58. }
  59. .action-buttons {
  60. display: flex;
  61. span {
  62. margin-right: 10px;
  63. }
  64. }
  65. }
  66. }
  67. .user-actions {
  68. display: flex;
  69. justify-content: center;
  70. margin-top: 20px;
  71. ion-button {
  72. background-color: rgba(255, 255, 255, 0.3);
  73. color: #000000;
  74. border: 1px solid rgba(255, 255, 255, 0.3);
  75. font-size: 14px;
  76. margin: 1 10px;
  77. width: 130px;
  78. height: 50px;
  79. }
  80. }
  81. .user-actions ion-button:hover {
  82. background-color: rgba(255, 255, 255, 0.2); /* 鼠标悬停时按钮背景色变为更浅的白色半透明 */
  83. }
  84. }
  85. .content{
  86. justify-content: center;
  87. ion-card{
  88. margin: auto;
  89. }
  90. }