index.ttss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. page view {
  2. box-sizing: border-box;
  3. flex-shrink: 0;
  4. }
  5. page {
  6. font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
  7. Arial, PingFang SC-Light, Microsoft YaHei;
  8. margin: 0;
  9. }
  10. button {
  11. margin: 0;
  12. padding: 0;
  13. border: 1px solid transparent;
  14. outline: none;
  15. background-color: transparent;
  16. }
  17. button:active {
  18. opacity: 0.6;
  19. }
  20. .flex-col {
  21. display: flex;
  22. flex-direction: column;
  23. }
  24. .flex-row {
  25. display: flex;
  26. flex-direction: row;
  27. }
  28. .flex-row-reverse {
  29. display: flex;
  30. flex-direction: row-reverse;
  31. }
  32. .bord{
  33. border: 1px solid red;
  34. }
  35. .justify-start {
  36. display: flex;
  37. justify-content: flex-start;
  38. }
  39. .justify-center {
  40. display: flex;
  41. justify-content: center;
  42. }
  43. .justify-end {
  44. display: flex;
  45. justify-content: flex-end;
  46. }
  47. .justify-evenly {
  48. display: flex;
  49. justify-content: space-evenly;
  50. }
  51. .justify-around {
  52. display: flex;
  53. justify-content: space-around;
  54. }
  55. .justify-between {
  56. display: flex;
  57. justify-content: space-between;
  58. }
  59. .align-start {
  60. display: flex;
  61. align-items: flex-start;
  62. }
  63. .align-center {
  64. display: flex;
  65. align-items: center;
  66. }
  67. .align-end {
  68. display: flex;
  69. align-items: flex-end;
  70. }
  71. .sticky {
  72. display: flex;
  73. position: -webkit-sticky;
  74. position: sticky;
  75. top: 0rpx;
  76. z-index: 99;
  77. }
  78. .bord{
  79. border: 1px solid red;
  80. }