5.css 829 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #NoteText
  2. {
  3. border:0px solid #787878;
  4. font-size: 14px;
  5. line-height: 22px;
  6. height: 90%;
  7. color: #535353;
  8. overflow-y: auto;
  9. overflow-x: hidden;
  10. margin: 10mm 30mm;
  11. }
  12. #NoteText h
  13. {
  14. font-size:22px;
  15. line-height: 32px;
  16. }
  17. #NoteText::-webkit-scrollbar {/*滚动条整体样式*/
  18. width: 5px; /*高宽分别对应横竖滚动条的尺寸*/
  19. height: 1px;
  20. }
  21. #NoteText::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
  22. border-radius: 10px;
  23. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  24. box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  25. background-color: #AAAAAA;
  26. }
  27. #NoteText::-webkit-scrollbar-track {/*滚动条里面轨道*/
  28. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  29. box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  30. border-radius: 10px;
  31. background: #EDEDED;
  32. }