Sleazy Fork is available in English.

Chub Venus responsive

Chub Venus website is more suitable for wide screens.

  1. /* ==UserStyle==
  2. @name Chub Venus responsive
  3. @version 1.0.1
  4. @description Chub Venus website is more suitable for wide screens.
  5. @author BreatFR (https://breat.fr)
  6. @namespace https://gitlab.com/breatfr
  7. @homepageURL https://gitlab.com/breatfr/chub-venus
  8. @supportURL https://discord.gg/Q8KSHzdBxs
  9. @license AGPL-3.0-or-later; https://www.gnu.org/licenses/agpl-3.0.txt
  10. @preprocessor stylus
  11.  
  12. @var checkbox unblurpictures "Unblur pictures" 1
  13. @var checkbox widemode "Wide mode" 1
  14. ==/UserStyle== */
  15.  
  16. /* === Credits ===
  17. Website https://breat.fr
  18. facebook https://www.facebook.com/breatfroff
  19. mastodon https://mastodon.social/@breat_fr
  20. telegram https://t.me/breatfr
  21. vk https://vk.com/breatfroff
  22. X (twitter) https://x.com/breatfroff
  23. === Credits === */
  24.  
  25. @-moz-document domain("venus.chub.ai") {
  26. if unblurpictures {
  27. .nsfw-pixels-xs,
  28. .nsfw-pixels-sm,
  29. .nsfw-pixels-md,
  30. .nsfw-pixels-lg {
  31. -webkit-filter: blur(0px);
  32. image-rendering: smooth;
  33. padding: 0;
  34. }
  35. }
  36. if widemode {
  37. .ant-col-lg-5 {
  38. max-width: .5em;
  39. }
  40. .ant-col-lg-14 {
  41. width: 100% !important;
  42. }
  43.  
  44. .ant-card-meta-title {
  45. white-space: wrap !important;
  46. }
  47. textarea::placeholder {
  48. color: #cbcbcb !important;
  49. }
  50. }
  51. }