settings.css 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. body {
  27. background-color: #f4f4f4;
  28. }
  29. .viewport {
  30. padding: 0.625rem;
  31. }
  32. /* 列表 */
  33. .list {
  34. padding: 0 0.625rem;
  35. background-color: #fff;
  36. margin-bottom: 0.625rem;
  37. border-radius: 0.3125rem;
  38. }
  39. .list .item {
  40. line-height: 2.8125rem;
  41. padding-left: 0.3125rem;
  42. font-size: 0.9375rem;
  43. color: #333;
  44. border-top: 0.03125rem solid #ddd;
  45. position: relative;
  46. text-align: left;
  47. border-radius: 0;
  48. background-color: #fff;
  49. }
  50. .list .item::after {
  51. width: auto;
  52. height: auto;
  53. left: auto;
  54. border: none;
  55. }
  56. .list .item:first-child {
  57. border: none;
  58. }
  59. .list .item::after {
  60. right: 0.15625rem;
  61. }
  62. .list .arrow::after {
  63. content: "\e6c2";
  64. position: absolute;
  65. top: 50%;
  66. color: #ccc;
  67. font-family: "erabbit" !important;
  68. font-size: 1rem;
  69. transform: translateY(-50%);
  70. }
  71. /* 操作按钮 */
  72. .action {
  73. text-align: center;
  74. line-height: 2.8125rem;
  75. margin-top: 1.25rem;
  76. font-size: 1rem;
  77. color: #333;
  78. }
  79. .action .button {
  80. background-color: #fff;
  81. margin-bottom: 0.625rem;
  82. border-radius: 0.3125rem;
  83. }