RoleSelectionPage.wxss 936 B

123456789101112131415161718192021222324252627
  1. /* 父容器样式 */
  2. .container {
  3. display: flex;
  4. flex-direction: column; /* 垂直排列 */
  5. align-items: center; /* 居中对齐 */
  6. padding: 20px 0; /* 增加上下内边距 */
  7. margin: 150px 20px 20px 20px; /* 增加顶部外边距 */
  8. }
  9. /* 按钮样式 */
  10. .full-width-button {
  11. width: 100%; /* 按钮占满宽度 */
  12. padding: 15px 0; /* 按钮内边距,控制高度 */
  13. margin: 15px 0; /* 按钮间距 */
  14. background-color: #3EC01E; /* 按钮背景颜色 */
  15. color: white; /* 按钮文字颜色 */
  16. font-size: 18px; /* 按钮文字大小 */
  17. border: none; /* 去除按钮边框 */
  18. outline: none; /* 去除焦点边框 */
  19. text-align: center; /* 文字居中 */
  20. border-radius: 5px; /* 圆角效果 */
  21. }
  22. /* 按钮点击效果 */
  23. .full-width-button:active {
  24. background-color: #299A0C; /* 按下按钮时的颜色变化 */
  25. }