app.wxss 769 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: space-between;
  8. padding: 200rpx 0;
  9. box-sizing: border-box;
  10. }
  11. /* new color here */
  12. .primary-text-color {
  13. color: #009195 !important;
  14. }
  15. .primary-background-color {
  16. background: #009195 !important;
  17. }
  18. .primary-border-color {
  19. border: 2rpx solid #009195 !important;
  20. }
  21. .secondary-text-color {
  22. color: #707070 !important;
  23. }
  24. .third-background-color {
  25. background: #707070 !important;
  26. }
  27. .secondary-background-color {
  28. background: #EDEDED !important;
  29. }
  30. .white-text-color {
  31. color: #FFFFFF !important;
  32. }
  33. .accent-background-color{
  34. background:#FF4081
  35. }
  36. page {
  37. background: #EDEDED;
  38. }