球星卡微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
1.1 KiB

  1. html {
  2. font-size: 16px;
  3. }
  4. body {
  5. margin: 0;
  6. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
  7. -webkit-font-smoothing: antialiased;
  8. -moz-osx-font-smoothing: grayscale;
  9. }
  10. view,
  11. image,
  12. text {
  13. box-sizing: border-box;
  14. flex-shrink: 0;
  15. }
  16. #app {
  17. width: 100vw;
  18. height: 100vh;
  19. }
  20. .flex-row {
  21. display: flex;
  22. flex-direction: row;
  23. }
  24. .flex-col {
  25. display: flex;
  26. flex-direction: column;
  27. }
  28. .justify-start {
  29. display: flex;
  30. justify-content: flex-start;
  31. }
  32. .justify-center {
  33. display: flex;
  34. justify-content: center;
  35. }
  36. .justify-end {
  37. display: flex;
  38. justify-content: flex-end;
  39. }
  40. .justify-evenly {
  41. display: flex;
  42. justify-content: space-evenly;
  43. }
  44. .justify-around {
  45. display: flex;
  46. justify-content: space-around;
  47. }
  48. .justify-between {
  49. display: flex;
  50. justify-content: space-between;
  51. }
  52. .items-start {
  53. display: flex;
  54. align-items: flex-start;
  55. }
  56. .items-center {
  57. display: flex;
  58. align-items: center;
  59. }
  60. .items-end {
  61. display: flex;
  62. align-items: flex-end;
  63. }