Advertisement
Guest User

baraag.net stylesheet override

a guest
Dec 5th, 2018
595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.09 KB | None | 0 0
  1.  
  2. /**
  3.  
  4.     Stylesheet override for baraag.net
  5.     Makes baraag.net look better on desktop displays, favors images on the feed
  6.     version 1.0.0
  7.     by @excitostudios
  8.  
  9.  
  10.     How to Install:
  11.  
  12.     1. Get Stylish browser extension: https://chrome.google.com/webstore/detail/stylish-custom-themes-for/fjnbnpbmkenffdnngjfgmeleoegfcffe?hl=en
  13.  
  14.     2. Click the Stylish button and the 3 dot menu button on the top right, then Create New Style
  15.  
  16.     3. Change "Applies to" option with "URLs starting with" and "https://baraag.net" (don't include the quotes)
  17.  
  18.     4. Choose a name for the script and click Save to the left
  19.  
  20.     5. Navigate to or reload the page
  21.  
  22. */
  23.  
  24.  
  25. /* column: user submit */
  26. .column:first-of-type, .drawer:first-of-type {
  27.     width: 15%;
  28. }
  29.  
  30. /* column: feed */
  31. .column:nth-of-type(2), .drawer:nth-of-type(2) {
  32.     width: 50%;
  33. }
  34.  
  35. /* column: notifications */
  36. .column:nth-of-type(3), .drawer:nth-of-type(3) {
  37.     width: 15%;
  38. }
  39.  
  40. /* column: info */
  41. .column:last-of-type, .drawer:last-of-type {
  42.     width: 20%;
  43. }
  44.  
  45. /* enlarge image previews */
  46. .media-gallery, .media-gallery img {
  47.     height: 600px!important;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement