app.wxss 912 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. .dark-primary-color {
  12. background: #303F9F;
  13. }
  14. .default-primary-color {
  15. background: #3F51B5;
  16. }
  17. .dark-primary-color-font {
  18. color: #303F9F;
  19. }
  20. .default-primary-color-font {
  21. color: #3F51B5;
  22. }
  23. .light-primary-color {
  24. background: #C5CAE9;
  25. }
  26. .accent-color {
  27. background: #FF4081;
  28. }
  29. .primary-text-color {
  30. color: #212121;
  31. }
  32. .divider-color {
  33. background: #BDBDBD;
  34. }
  35. .block-background-color {
  36. background: #F0F0F0;
  37. }
  38. /* new color here */
  39. .primary-text-color {
  40. color: #469298;
  41. }
  42. .primary-background-color {
  43. background: #469298;
  44. }
  45. .secondary-text-color {
  46. color: #707070;
  47. }
  48. .secondary-background-color {
  49. background: #EDEDED
  50. }
  51. .white-text-color {
  52. color: #FFFFFF;
  53. }
  54. page {
  55. background: #EDEDED;
  56. }