page1.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. @body-bg:#2382ff;
  2. .body{
  3. margin-top: 90px;
  4. .color{
  5. color: @body-bg;
  6. }
  7. h3{
  8. margin-top: 0;
  9. }
  10. #content{
  11. text-align: justify;
  12. p{
  13. text-indent: 30px;
  14. }
  15. &>p:last-child{
  16. padding: 10px 0px;
  17. }
  18. }
  19. #read{
  20. margin-top: 20px;
  21. text-align: center;
  22. .good{
  23. border-radius:5px;
  24. border: 1px solid #e6e6e6;
  25. display: inline-block;
  26. padding: 5px 30px;
  27. margin-bottom: 10px;
  28. }
  29. }
  30. .articles{
  31. ul{
  32. width: 100%;
  33. border-top: 1px solid #e6e6e6;
  34. padding: 10px 20px;
  35. list-style: square;
  36. color: #777;
  37. overflow: hidden;
  38. li{
  39. overflow: hidden;
  40. text-overflow: ellipsis;
  41. white-space: nowrap;
  42. width: 100%;
  43. padding: 5px 0px;
  44. }
  45. }
  46. }
  47. #comment{
  48. .h5{
  49. display: flex;justify-content: space-between;align-content: center;
  50. }
  51. .remind{
  52. text-align: center;
  53. background-color: #e6e6e6;
  54. padding: 5px;
  55. border-radius: 5px;
  56. margin: 10px 0px;
  57. }
  58. .comment{
  59. border-top: 1px solid #e6e6e6;
  60. padding-top: 10px;
  61. .nocomment,.loading,.nodata{
  62. display: none;
  63. text-align: center;
  64. margin: 10px;
  65. }
  66. .nocomment{
  67. display: block;
  68. padding-bottom: 10px;
  69. &:hover{
  70. color: @body-bg;
  71. }
  72. }
  73. .user{
  74. width: 100%;
  75. padding: 20px 0;
  76. border-bottom: 1px solid #e6e6e6;
  77. display: grid;
  78. grid-template-columns: 10% 90%;
  79. .u-img{
  80. width: 100%;
  81. text-align: center;
  82. .img{
  83. width: 100%;
  84. max-width: 64px;
  85. }
  86. }
  87. .u-content{
  88. margin-left: 10px;
  89. text-align: justify;
  90. .u-name{
  91. font-size: 16px;
  92. }
  93. .u-detail{
  94. padding: 5px 0px;
  95. }
  96. .u-flex{display: flex;justify-content: space-between;align-items: center;
  97. }
  98. }
  99. }
  100. }
  101. }
  102. }
  103. // 交互板
  104. #toast{
  105. #report{
  106. display: none;
  107. text-align: start;
  108. ul{list-style: none;padding: 0;
  109. li{
  110. padding: 5px;
  111. border-bottom: 1px solid #e6e6e6;
  112. }
  113. }
  114. }
  115. #ping{
  116. display: none;
  117. .alert{
  118. display: none;
  119. padding: 5px;margin-bottom: 5px;
  120. }
  121. }
  122. }