common.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. body *,
  2. page view {
  3. box-sizing: border-box;
  4. flex-shrink: 0;
  5. }
  6. body {
  7. font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
  8. Arial, PingFang SC-Light, Microsoft YaHei;
  9. margin: 0;
  10. }
  11. button {
  12. margin: 0;
  13. padding: 0;
  14. border: 1px solid transparent;
  15. outline: none;
  16. background-color: transparent;
  17. }
  18. button:active {
  19. opacity: 0.6;
  20. }
  21. .flex-col {
  22. display: flex;
  23. flex-direction: column;
  24. }
  25. .flex-row {
  26. display: flex;
  27. flex-direction: row;
  28. }
  29. .justify-start {
  30. display: flex;
  31. justify-content: flex-start;
  32. }
  33. .justify-center {
  34. display: flex;
  35. justify-content: center;
  36. }
  37. .justify-end {
  38. display: flex;
  39. justify-content: flex-end;
  40. }
  41. .justify-evenly {
  42. display: flex;
  43. justify-content: space-evenly;
  44. }
  45. .justify-around {
  46. display: flex;
  47. justify-content: space-around;
  48. }
  49. .justify-between {
  50. display: flex;
  51. justify-content: space-between;
  52. }
  53. .align-start {
  54. display: flex;
  55. align-items: flex-start;
  56. }
  57. .align-center {
  58. display: flex;
  59. align-items: center;
  60. }
  61. .align-end {
  62. display: flex;
  63. align-items: flex-end;
  64. }