demo.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* #ifndef APP-NVUE */
  2. view,
  3. text {
  4. box-sizing: border-box;
  5. }
  6. /* #endif */
  7. /* start--演示页面使用的统一样式--start */
  8. .u-demo {
  9. padding: 25px 20px;
  10. }
  11. .u-demo-wrap {
  12. border-width: 1px;
  13. border-color: #ddd;
  14. border-style: dashed;
  15. background-color: rgb(250, 250, 250);
  16. padding: 20px 10px;
  17. border-radius: 3px;
  18. }
  19. .u-demo-area {
  20. text-align: center;
  21. }
  22. .u-no-demo-here {
  23. color: $u-tips-color;
  24. font-size: 13px;
  25. }
  26. .u-demo-result-line {
  27. border-width: 1px;
  28. border-color: #ddd;
  29. border-style: dashed;
  30. padding: 5px 20px;
  31. margin-top: 30px;
  32. border-radius: 5px;
  33. background-color: rgb(240, 240, 240);
  34. color: $u-content-color;
  35. font-size: 16px;
  36. /* #ifndef APP-NVUE */
  37. word-break: break-word;
  38. display: inline-block;
  39. /* #endif */
  40. text-align: left;
  41. }
  42. .u-demo-title,
  43. .u-config-title {
  44. text-align: center;
  45. font-size: 16px;
  46. font-weight: bold;
  47. margin-bottom: 20px;
  48. }
  49. .u-config-item {
  50. margin-top: 25px;
  51. }
  52. .u-config-title {
  53. margin-top: 20px;
  54. padding-bottom: 5px;
  55. }
  56. .u-item-title {
  57. position: relative;
  58. font-size: 15px;
  59. padding-left: 8px;
  60. line-height: 1;
  61. margin-bottom: 11px;
  62. }
  63. .u-item-title:after {
  64. position: absolute;
  65. width: 4px;
  66. top: -1px;
  67. height: 16px;
  68. /* #ifndef APP-NVUE */
  69. content: '';
  70. /* #endif */
  71. left: 0;
  72. border-radius: 10px;
  73. background-color: $u-content-color;
  74. }
  75. /* end--演示页面使用的统一样式--end */