uni-nvue.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. page {
  2. min-height: 100%;
  3. height: auto;
  4. }
  5. /* .uni-icon {
  6. font-family: uniicons;
  7. font-weight: normal;
  8. } */
  9. .uni-container {
  10. padding: 15px;
  11. background-color: #f8f8f8;
  12. }
  13. .uni-header-logo {
  14. padding: 15px 15px;
  15. flex-direction: column;
  16. justify-content: center;
  17. align-items: center;
  18. margin-top: 10rpx;
  19. }
  20. .uni-header-image {
  21. width: 80px;
  22. height: 80px;
  23. }
  24. .uni-hello-text {
  25. margin-bottom: 20px;
  26. }
  27. .hello-text {
  28. color: #7A7E83;
  29. font-size: 14px;
  30. line-height: 20px;
  31. }
  32. .hello-link {
  33. color: #7A7E83;
  34. font-size: 14px;
  35. line-height: 20px;
  36. }
  37. .uni-panel {
  38. margin-bottom: 12px;
  39. }
  40. .uni-panel-h {
  41. background-color: #ffffff;
  42. flex-direction: row;
  43. align-items: center;
  44. padding: 12px;
  45. }
  46. /*
  47. .uni-panel-h:active {
  48. background-color: #f8f8f8;
  49. }
  50. */
  51. .uni-panel-h-on {
  52. background-color: #f0f0f0;
  53. }
  54. .uni-panel-text {
  55. flex: 1;
  56. color: #000000;
  57. font-size: 14px;
  58. font-weight: normal;
  59. }
  60. .uni-panel-icon {
  61. margin-left: 15px;
  62. color: #999999;
  63. font-size: 14px;
  64. font-weight: normal;
  65. transform: rotate(0deg);
  66. transition-duration: 0s;
  67. transition-property: transform;
  68. }
  69. .uni-panel-icon-on {
  70. transform: rotate(180deg);
  71. }
  72. .uni-navigate-item {
  73. flex-direction: row;
  74. align-items: center;
  75. background-color: #FFFFFF;
  76. border-top-style: solid;
  77. border-top-color: #f0f0f0;
  78. border-top-width: 1px;
  79. padding: 12px;
  80. }
  81. .uni-navigate-item:active {
  82. background-color: #f8f8f8;
  83. }
  84. .uni-navigate-text {
  85. flex: 1;
  86. color: #000000;
  87. font-size: 14px;
  88. font-weight: normal;
  89. }
  90. .uni-navigate-icon {
  91. margin-left: 15px;
  92. color: #999999;
  93. font-size: 14px;
  94. font-weight: normal;
  95. }