person.page.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* 全局样式 */
  2. ion-app {
  3. background: url('/assets/images/background.jpg') no-repeat center center fixed;
  4. /* 添加背景图片 */
  5. background-size: cover;
  6. /* 背景图片覆盖整个内容区域 */
  7. background-position: center;
  8. /* 背景图片居中 */
  9. height: 100vh;
  10. /* 确保背景覆盖整个视口高度 */
  11. margin: 0;
  12. /* 移除默认的外边距 */
  13. padding: 0;
  14. /* 移除默认的内边距 */
  15. }
  16. /* 保持大部分样式不变,只添加必要的样式 */
  17. .buttons {
  18. display: flex;
  19. justify-content: space-between;
  20. margin-top: 20px;
  21. }
  22. .modal-content {
  23. --background: #fff;
  24. padding: 20px;
  25. }
  26. ion-content {
  27. --background: transparent;
  28. /* 设置为透明,以便背景从 ion-app 继承 */
  29. padding: 16px;
  30. }
  31. .profile-block {
  32. background-color: rgba(255, 255, 255, 0.8); /* 半透明白色背景 */
  33. padding: 20px; /* 内边距 */
  34. border-radius: 20px; /* 圆角 */
  35. margin: 20px; /* 外边距 */
  36. }
  37. .profile-info {
  38. text-align: center; /* 可选:使内容居中 */
  39. }
  40. .profile-pic {
  41. width: 60px; /* 头像宽度 */
  42. height: 60px; /* 头像高度 */
  43. border-radius: 50%; /* 圆形头像 */
  44. border: 3px solid white; /* 白色边框 */
  45. margin-right: 10px; /* 头像与用户名之间的间距 */
  46. }
  47. h2 {
  48. font-size: 20px;
  49. font-weight: bold;
  50. color: #333;
  51. margin-bottom: 5px; /* 添加下边距以分隔用户名和性别 */
  52. }
  53. .gender {
  54. font-size: 16px;
  55. color: #666;
  56. margin-top: 5px; /* 添加上边距以确保与用户名之间有间隔 */
  57. }
  58. .navigate-button {
  59. color: #333; /* 按钮颜色 */
  60. margin-left: 10px; /* 添加左边距以确保与用户名之间有间隔 */
  61. }
  62. ion-card {
  63. margin-top: 20px; /* 卡片上边距 */
  64. }
  65. ion-card-header {
  66. background: rgba(105, 250, 255, 0.3);
  67. color: #333; /* 深色字体 */
  68. }
  69. ion-card-title {
  70. font-size: 18px; /* 卡片标题字体大小 */
  71. }
  72. .completion {
  73. display: flex;
  74. justify-content: space-between; /* 左右对齐 */
  75. align-items: center; /* 垂直居中 */
  76. }
  77. .edit-button {
  78. color: #064351; /* 按钮颜色 */
  79. font-size: 16px; /* 按钮字体大小 */
  80. }
  81. ion-list {
  82. margin-top: 10px; /* 列表上边距 */
  83. }
  84. ion-item {
  85. --background: #fff; /* 白色背景 */
  86. --color: #333; /* 深色字体 */
  87. border-radius: 5px; /* 圆角 */
  88. margin: 5px 0; /* 项目间距 */
  89. }