index.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. @import url(./variables.less);
  2. @import url(./mixins.less);
  3. html,body{
  4. font-family: Avenir, Helvetica, Arial, sans-serif;
  5. -webkit-font-smoothing: antialiased;
  6. -moz-osx-font-smoothing: grayscale;
  7. height: 100%;
  8. overflow-y: hidden;
  9. -webkit-overflow-scrolling: touch;
  10. color: @text-common-color;
  11. background-color: @bg-gary;
  12. }
  13. #app {
  14. height: 100%;
  15. overflow-y: auto;
  16. -webkit-overflow-scrolling: touch;
  17. position: relative;
  18. }
  19. // reset base.
  20. .container {
  21. padding: 0 6px;
  22. }
  23. .p-h-12 {
  24. padding-left: 12px;
  25. padding-right: 12px;
  26. }
  27. .btnbox {
  28. width: 100%;
  29. font-size: @text-common-size;
  30. line-height: 40px;
  31. text-align: center;
  32. border-radius: 9px;
  33. background-color: @main-color;
  34. color: @white;
  35. }
  36. .fajc () {
  37. &-aic {
  38. align-items: center;
  39. }
  40. &-acc {
  41. align-content: center;
  42. }
  43. &-jic {
  44. justify-items: center;
  45. }
  46. &-jcc {
  47. justify-content: center;
  48. }
  49. }
  50. .flex {
  51. display: flex;
  52. &-row {
  53. flex-direction: row;
  54. .fajc()
  55. }
  56. &-col {
  57. flex-direction: column;
  58. .fajc()
  59. }
  60. &-0shrink {
  61. flex-shrink: 0;
  62. }
  63. }
  64. // 单行省略号
  65. .ellipsis {
  66. overflow: hidden;
  67. text-overflow: ellipsis;
  68. white-space: nowrap;
  69. }
  70. // 双行省略号
  71. .ellipsis-2rows {
  72. text-overflow: -o-ellipsis-lastline;
  73. .ellipsis;
  74. display: -webkit-box;
  75. -webkit-line-clamp: 2;
  76. white-space: initial;
  77. line-clamp: 2;
  78. -webkit-box-orient: vertical;
  79. }