character-generator.page.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* 全局样式 */
  2. ion-app {
  3. background: url('/assets/images/background-image6.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. ion-content {
  17. --background: transparent;
  18. /* 设置为透明,以便背景从 ion-app 继承 */
  19. padding: 16px;
  20. overflow: auto;
  21. /* 确保内容可以滚动 */
  22. }
  23. :host {
  24. --page-padding: 16px;
  25. --primary-color: #003366;
  26. /* 深蓝色 */
  27. --secondary-color: #336633;
  28. /* 墨绿色 */
  29. --background-color: #f5f5f5;
  30. --text-color: #333333;
  31. --highlight-color: #ffcc00;
  32. /* 高亮颜色 */
  33. }
  34. .input-field {
  35. width: 100%;
  36. }
  37. .reader-group-button {
  38. width: 100%;
  39. margin-bottom: 10px;
  40. }
  41. .textarea-field {
  42. width: 100%;
  43. min-height: 150px;
  44. /* 设置最小高度 */
  45. }
  46. .generate-button {
  47. margin-top: 20px;
  48. }
  49. .copy-button {
  50. margin-top: 10px;
  51. }
  52. ion-button {
  53. --background: #007bff;
  54. --color: #101010;
  55. --border-radius: 8px;
  56. --padding-top: 12px;
  57. --padding-bottom: 12px;
  58. --padding-start: 16px;
  59. --padding-end: 16px;
  60. margin-top: 16px;
  61. }
  62. ion-button:hover {
  63. --background: #0056b3;
  64. }
  65. ion-textarea {
  66. --background: #ffffff;
  67. --color: #343a40;
  68. --border-color: #ced4da;
  69. --border-radius: 8px;
  70. --padding-top: 12px;
  71. --padding-bottom: 12px;
  72. --padding-start: 16px;
  73. --padding-end: 16px;
  74. border: 1px solid #ced4da;
  75. border-radius: 8px;
  76. --min-height: 100px;
  77. }
  78. ion-textarea:focus {
  79. --border-color: #80bdff;
  80. --box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  81. }
  82. ion-input {
  83. --background: #ffffff;
  84. --color: #343a40;
  85. --border-color: #ced4da;
  86. --border-radius: 8px;
  87. --padding-top: 12px;
  88. --padding-bottom: 12px;
  89. --padding-start: 16px;
  90. --padding-end: 16px;
  91. border: 1px solid #ced4da;
  92. border-radius: 8px;
  93. }
  94. ion-input:focus {
  95. --border-color: #80bdff;
  96. --box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  97. }
  98. /* 设置生成的小说书名文本框的高度 */
  99. .response-textarea {
  100. --min-height: 800px;
  101. /* 将最小高度增加到 800px */
  102. border-color: #80bdff;
  103. /* 可选:设置不同的边框颜色以区分 */
  104. background-color: #f8f9fa;
  105. /* 可选:设置不同的背景颜色以区分 */
  106. }