common.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. .flex-row-reverse {
  30. display: flex;
  31. flex-direction: row-reverse;
  32. }
  33. .bord{
  34. border: 1px solid red;
  35. }
  36. .justify-start {
  37. display: flex;
  38. justify-content: flex-start;
  39. }
  40. .justify-center {
  41. display: flex;
  42. justify-content: center;
  43. }
  44. .justify-end {
  45. display: flex;
  46. justify-content: flex-end;
  47. }
  48. .justify-evenly {
  49. display: flex;
  50. justify-content: space-evenly;
  51. }
  52. .justify-around {
  53. display: flex;
  54. justify-content: space-around;
  55. }
  56. .justify-between {
  57. display: flex;
  58. justify-content: space-between;
  59. }
  60. .align-start {
  61. display: flex;
  62. align-items: flex-start;
  63. }
  64. .align-center {
  65. display: flex;
  66. align-items: center;
  67. }
  68. .align-end {
  69. display: flex;
  70. align-items: flex-end;
  71. }
  72. .sticky {
  73. /* #ifndef APP-PLUS-NVUE */
  74. display: flex;
  75. position: -webkit-sticky;
  76. /* #endif */
  77. position: sticky;
  78. top: 0rpx;
  79. z-index: 99;
  80. }
  81. .bord{
  82. border: 1px solid red;
  83. }