xiaoyu.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .flexStar {
  2. display: flex;
  3. justify-content: flex-start;
  4. }
  5. .flexEnd {
  6. display: flex;
  7. justify-content: flex-end;
  8. }
  9. .flexCenter {
  10. display: flex;
  11. justify-content: center;
  12. }
  13. .flexBetween {
  14. display: flex;
  15. justify-content: space-between;
  16. }
  17. .flexColumn {
  18. display: flex;
  19. flex-direction: column;
  20. }
  21. .flexItemsC {
  22. display: flex;
  23. align-items: center;
  24. }
  25. .martop5 {
  26. margin-top: 5px;
  27. }
  28. .martop10 {
  29. margin-top: 10px;
  30. }
  31. .martop15 {
  32. margin-top: 15px;
  33. }
  34. .martop20 {
  35. margin-top: 20px;
  36. }
  37. .martop25 {
  38. margin-top: 25px;
  39. }
  40. .martop40 {
  41. margin-top: 40px;
  42. }
  43. .marbottom5 {
  44. margin-bottom: 5px;
  45. }
  46. .marbottom10 {
  47. margin-bottom: 10px;
  48. }
  49. .marbottom15 {
  50. margin-bottom: 15px;
  51. }
  52. .marbottom20 {
  53. margin-bottom: 20px;
  54. }
  55. .marbottom25 {
  56. margin-bottom: 25px;
  57. }
  58. .marright5 {
  59. margin-right: 5px;
  60. }
  61. .marright10 {
  62. margin-right: 10px;
  63. }
  64. .marright15 {
  65. margin-right: 15px;
  66. }
  67. .marright20 {
  68. margin-right: 20px;
  69. }
  70. .marright25 {
  71. margin-right: 25px;
  72. }
  73. .marright30 {
  74. margin-right: 30px;
  75. }
  76. .marleft5 {
  77. margin-left: 5px;
  78. }
  79. .marleft10 {
  80. margin-left: 10px;
  81. }
  82. .marleft15 {
  83. margin-left: 15px;
  84. }
  85. .marleft20 {
  86. margin-left: 20px;
  87. }
  88. .marleft25 {
  89. margin-left: 25px;
  90. }
  91. .marleft30 {
  92. margin-left: 30px;
  93. }