Advertisement
Guest User

Smaller youtube thumbnails stylus css

a guest
May 20th, 2025
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.08 KB | None | 0 0
  1. #contents.ytd-rich-grid-renderer {
  2.     --ytd-rich-grid-items-per-row: 1;
  3. }
  4. /* Small devices (portrait tablets and large phones, 600px and up) */
  5. @media only screen and (min-width: 600px) {
  6.     #contents.ytd-rich-grid-renderer {
  7.         --ytd-rich-grid-items-per-row: 2;
  8.     }
  9. }
  10.  
  11. /* Medium devices (landscape tablets, 768px and up) */
  12. @media only screen and (min-width: 768px) {
  13.     #contents.ytd-rich-grid-renderer {
  14.         --ytd-rich-grid-items-per-row: 3;
  15.     }
  16. }
  17.  
  18. /* Large devices (laptops/desktops, 992px and up) */
  19. @media only screen and (min-width: 992px) {
  20.     #contents.ytd-rich-grid-renderer {
  21.         --ytd-rich-grid-items-per-row: 4;
  22.     }
  23. }
  24.  
  25. /* Extra large devices (large laptops and desktops, 1200px and up) */
  26. @media only screen and (min-width: 1200px) {
  27.     #contents.ytd-rich-grid-renderer {
  28.         --ytd-rich-grid-items-per-row: 5;
  29.     }
  30. }
  31.  
  32. /* Extra extra large devices (large laptops and desktops, 1800px and up) */
  33. @media only screen and (min-width: 1800px) {
  34.     #contents.ytd-rich-grid-renderer {
  35.         --ytd-rich-grid-items-per-row: 6;
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement