my-drift-bottle.component_20241228115309.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* 设置页面背景色 */
  2. ion-content {
  3. --background: #ffffff; /* 白色背景 */
  4. }
  5. ion-card {
  6. margin: 10px; /* 卡片之间的间距 */
  7. border-radius: 10px; /* 圆角效果 */
  8. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 阴影效果 */
  9. }
  10. ion-card-title {
  11. font-weight:bold;
  12. }
  13. .card-content-with-button {
  14. display: flex;
  15. justify-content: space-between;
  16. align-items: center;
  17. }
  18. .content-section {
  19. flex-grow: 1;
  20. }
  21. .button-section {
  22. margin-left: 10px;
  23. }
  24. /* 确保按钮文本正常横排 */
  25. ion-button {
  26. white-space: nowrap;
  27. }
  28. /* 设置列表项的样式 */
  29. ion-item {
  30. margin: 5px 0; /* 列表项之间的间距 */
  31. }
  32. ion-title {
  33. font-size: 24px; /* 增大字体大小 */
  34. font-weight: bold; /* 加粗 */
  35. }
  36. /* 设置卡片的样式 */
  37. ion-list {
  38. margin: 10px; /* 卡片之间的间距 */
  39. border-radius: 10px; /* 圆角效果 */
  40. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 阴影效果 */
  41. }
  42. ion-button {
  43. font-size: 15px; /* 增大字体大小 */
  44. margin-top: 8px; /* 上间距,仅在需要时添加 */
  45. text-transform: none; /* 按钮文字不变形 */
  46. height: 35px;
  47. }
  48. /* 设置列表项的样式 */
  49. ion-item {
  50. margin: 5px 0; /* 列表项之间的间距 */
  51. }
  52. /* 设置按钮的样式(如果按钮不在顶部方框内) */
  53. ion-toolbar {
  54. margin: auto;
  55. }
  56. .title-text{
  57. position: absolute;
  58. display: flex;
  59. left: 105px;
  60. margin: auto;
  61. top: 10px;
  62. color:rgb(69, 166, 180);
  63. }
  64. .custom-color {
  65. --background: rgb(69, 166, 180);
  66. --background-activated: rgba(69, 166, 180, 0.7);
  67. --color: white;
  68. }
  69. .butcolor{
  70. color: rgb(69, 166, 180);
  71. }