app.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /**app.wxss**/
  2. page {
  3. width: 100%;
  4. height: 100%;
  5. overflow-x: hidden;
  6. color: #444;
  7. font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei;
  8. background: #eee;
  9. }
  10. view {
  11. font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei;
  12. }
  13. text {
  14. font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei;
  15. }
  16. .container {
  17. height: auto;
  18. box-sizing: border-box;
  19. padding-top: 80rpx;
  20. /* color: #444; */
  21. font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei;
  22. }
  23. ::-webkit-scrollbar {
  24. display: none;
  25. width: 0;
  26. height: 0;
  27. color: transparent;
  28. }
  29. .textOver {
  30. white-space: nowrap;
  31. overflow: hidden;
  32. text-overflow: ellipsis;
  33. }
  34. .resetBtn {
  35. padding: 0px;
  36. margin: 0;
  37. line-height: normal;
  38. background-color: transparent;
  39. }
  40. .resetBtn::after {
  41. border: none;
  42. }
  43. #share {
  44. width: 375px;
  45. height: 300px;
  46. position: absolute;
  47. left: -9999rpx;
  48. top: -9999rpx;
  49. }
  50. /* 转圈动画 */
  51. @keyframes identifier {
  52. 0% {
  53. transform: rotate(0deg);
  54. }
  55. 50% {
  56. transform: rotate(180deg);
  57. }
  58. 100% {
  59. transform: rotate(360deg);
  60. }
  61. }