base.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .row {
  2. display: flex;
  3. display: -webkit-flex;
  4. flex-direction: row;
  5. -webkit-flex-direction: row;
  6. }
  7. .row-center {
  8. @extend .row;
  9. align-items: center;
  10. -webkit-align-items: center;
  11. }
  12. .row-between {
  13. @extend .row;
  14. justify-content: space-between;
  15. -webkit-justify-content: space-between;
  16. }
  17. .row-around {
  18. @extend .row;
  19. justify-content: space-around;
  20. -webkit-justify-content: space-around;
  21. }
  22. .row-end {
  23. @extend .row;
  24. justify-content: flex-end;
  25. -webkit-justify-content: flex-end;
  26. }
  27. .row-wrap {
  28. @extend .row;
  29. flex-wrap: wrap;
  30. -webkit-flex-wrap: wrap;
  31. }
  32. .row-nowrap {
  33. @extend .row;
  34. flex-wrap: nowrap;
  35. -webkit-flex-wrap: nowrap;
  36. }
  37. .column {
  38. display: flex;
  39. display: -webkit-flex;
  40. flex-direction: column;
  41. -webkit-flex-direction: column;
  42. }
  43. .column-center {
  44. @extend .column;
  45. justify-content: center;
  46. -webkit-justify-content: center;
  47. }
  48. .column-around {
  49. @extend .column;
  50. justify-content: space-around;
  51. -webkit-justify-content: space-around;
  52. }
  53. .column-between {
  54. @extend .column;
  55. justify-content: space-between;
  56. -webkit-justify-content: space-between;
  57. }
  58. .flex-center {
  59. @extend .row;
  60. align-items: center;
  61. -webkit-align-items: center;
  62. justify-content: center;
  63. -webkit-justify-content: center;
  64. }
  65. .scroll {
  66. position: absolute;
  67. top: 0;
  68. left: 0;
  69. width: 100%;
  70. height: 100%;
  71. }
  72. .png {
  73. width: 80upx;
  74. height: 80upx;
  75. }
  76. button::after {
  77. border: 0;
  78. }
  79. .w100 {
  80. width: 100%;
  81. }
  82. a {
  83. text-decoration: none;
  84. }