uni-nvue.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /* #ifndef APP-PLUS-NVUE */
  2. page {
  3. min-height: 100%;
  4. height: auto;
  5. }
  6. /* #endif */
  7. /* 解决头条小程序字体图标不显示问题,因为头条运行时自动插入了span标签,且有全局字体 */
  8. /* #ifdef MP-TOUTIAO */
  9. /* text :not(view) {
  10. font-family: uniicons;
  11. } */
  12. /* #endif */
  13. .uni-icon {
  14. font-family: uniicons;
  15. font-weight: normal;
  16. }
  17. .uni-container {
  18. padding: 15px;
  19. background-color: #f8f8f8;
  20. }
  21. .uni-header-logo {
  22. padding: 15px 15px;
  23. flex-direction: column;
  24. justify-content: center;
  25. align-items: center;
  26. margin-top: 10rpx;
  27. }
  28. .uni-header-image {
  29. width: 80px;
  30. height: 80px;
  31. }
  32. .uni-hello-text {
  33. margin-bottom: 20px;
  34. }
  35. .hello-text {
  36. color: #7A7E83;
  37. font-size: 14px;
  38. line-height: 20px;
  39. }
  40. .hello-link {
  41. color: #7A7E83;
  42. font-size: 14px;
  43. line-height: 20px;
  44. }
  45. .uni-panel {
  46. margin-bottom: 12px;
  47. }
  48. .uni-panel-h {
  49. background-color: #ffffff;
  50. flex-direction: row;
  51. align-items: center;
  52. padding: 12px;
  53. }
  54. /*
  55. .uni-panel-h:active {
  56. background-color: #f8f8f8;
  57. }
  58. */
  59. .uni-panel-h-on {
  60. background-color: #f0f0f0;
  61. }
  62. .uni-panel-text {
  63. flex: 1;
  64. color: #000000;
  65. font-size: 14px;
  66. font-weight: normal;
  67. }
  68. .uni-panel-icon {
  69. margin-left: 15px;
  70. color: #999999;
  71. font-size: 14px;
  72. font-weight: normal;
  73. transform: rotate(0deg);
  74. transition-duration: 0s;
  75. transition-property: transform;
  76. }
  77. .uni-panel-icon-on {
  78. transform: rotate(180deg);
  79. }
  80. .uni-navigate-item {
  81. flex-direction: row;
  82. align-items: center;
  83. background-color: #FFFFFF;
  84. border-top-style: solid;
  85. border-top-color: #f0f0f0;
  86. border-top-width: 1px;
  87. padding: 12px;
  88. }
  89. .uni-navigate-item:active {
  90. background-color: #f8f8f8;
  91. }
  92. .uni-navigate-text {
  93. flex: 1;
  94. color: #000000;
  95. font-size: 14px;
  96. font-weight: normal;
  97. }
  98. .uni-navigate-icon {
  99. margin-left: 15px;
  100. color: #999999;
  101. font-size: 14px;
  102. font-weight: normal;
  103. }