mixue

ib iobi

Feb 15th, 2023 (edited)
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. * PLEASE CREDIT IOBI WHEN REMAKING *
  2.  
  3. --- LEFT SCROLLBOX ---
  4. overflow: auto;
  5. height: 6em;
  6.  
  7. (mobile)
  8. padding-top: 3px;
  9.  
  10. (Text: Highlight)
  11. font-family: winkle;
  12. border: 1px solid #000;
  13. border-radius: 5px;
  14. padding: 2px;
  15.  
  16. --- RIGHT SCROLLBOX ---
  17. overflow: auto;
  18. height: 12em;
  19. border: 1px solid white;
  20. border-radius: 5px;
  21. padding: 5px;
  22. background: #FFFCFD;
  23.  
  24.  
  25. --- WINKLE FONT ---
  26. <style>
  27. @font-face {
  28. src: url(https://dl.dropbox.com/s/mes7b666uvig5wc/Winkle-Regular.otf);
  29. font-family: winkle;
  30. }
  31. </style>
  32.  
  33. --- HIDE SCROLLBAR ---
  34. <style>
  35. html {
  36. overflow: scroll;
  37. overflow-x: hidden;
  38. }
  39. ::-webkit-scrollbar {
  40. width: 0; /* Remove scrollbar space */
  41. background: transparent; /* Optional: just make scrollbar invisible */
  42. }
  43. /* Optional: show position indicator in red */
  44. ::-webkit-scrollbar-thumb {
  45. background: #FF0000;
  46. }
  47. </style>
Advertisement
Add Comment
Please, Sign In to add comment