app.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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: #009195 !important;
  41. }
  42. .primary-background-color {
  43. background: #009195 !important;
  44. }
  45. .primary-border-color {
  46. border: 2rpx solid #009195 !important;
  47. }
  48. .secondary-text-color {
  49. color: #707070 !important;
  50. }
  51. .secondary-background-color {
  52. background: #EDEDED !important;
  53. }
  54. .white-text-color {
  55. color: #FFFFFF !important;
  56. }
  57. page {
  58. background: #EDEDED;
  59. }