大湾社区城市书房智慧大屏
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.

91 lines
1.4 KiB

2 days ago
  1. // 全局样式
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. list-style-type: none;
  6. box-sizing: border-box;
  7. outline: none;
  8. }
  9. html {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. body {
  14. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  15. background-color: #f1f1f1;
  16. margin: 0;
  17. padding: 0;
  18. }
  19. a {
  20. color: #343440;
  21. text-decoration: none;
  22. }
  23. ul{
  24. margin: 0;
  25. padding: 0;
  26. li{
  27. list-style: none;
  28. }
  29. }
  30. img[src=""],img:not([src]){
  31. opacity: 0;
  32. border:none;
  33. visibility: hidden;
  34. max-width: none;
  35. }
  36. .clearfix {
  37. &::after {
  38. content: "";
  39. display: table;
  40. height: 0;
  41. line-height: 0;
  42. visibility: hidden;
  43. clear: both;
  44. }
  45. }
  46. pre{
  47. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  48. word-wrap: break-word;
  49. white-space: pre-wrap;
  50. }
  51. /**滚动条的宽度*/
  52. ::-webkit-scrollbar {
  53. width: 4px;
  54. height: 4px;
  55. }
  56. //滚动条的滑块
  57. ::-webkit-scrollbar-thumb {
  58. background-color: #13439E;
  59. border-radius: 3px;
  60. }
  61. .icon {
  62. width: 1em;
  63. height: 1em;
  64. vertical-align: -0.15em;
  65. fill: currentColor;
  66. overflow: hidden;
  67. }
  68. //浮动
  69. .float-r {
  70. float: right;
  71. }
  72. //文章一行显示,多余省略号显示
  73. .title-item {
  74. display: -webkit-box;
  75. -webkit-box-orient: vertical;
  76. -webkit-line-clamp: 1;
  77. overflow: hidden;
  78. text-overflow: ellipsis;
  79. }