Bdsmlr - Large Posts

Makes Posts larger on bdsmlr.com

  1. /* ==UserStyle==
  2. @name Bdsmlr - Large Posts
  3. @description Makes Posts larger on bdsmlr.com
  4. @namespace Hentiedup
  5. @version 1.0.0
  6. @author Hentiedup
  7. @license unlicense
  8. @preprocessor stylus
  9.  
  10.  
  11. @var text postWidth "Post Width" 750px
  12. ==/UserStyle== */
  13.  
  14. @-moz-document domain("bdsmlr.com") {
  15. .main.container
  16. {
  17. width: 100%;
  18. }
  19.  
  20. .content .newsfeed
  21. {
  22. width: calc(100% - 320px);
  23. }
  24. .content .newsfeed .feed
  25. {
  26. width: intrinsic; /* Safari/WebKit uses a non-standard name */
  27. width: -moz-max-content; /* Firefox/Gecko */
  28. width: -webkit-max-content; /* Chrome */
  29. width: max-content;
  30. margin: auto;
  31. }
  32. .content .newsfeed .feed .news
  33. {
  34. float: none;
  35. display: inline-block;
  36. width: postWidth;
  37. }
  38. }