Advertisement
Guest User

Lemmy - Better UI

a guest
Jun 14th, 2023
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.67 KB | Source Code | 0 0
  1. @-moz-document domain("lemmy.ca"), domain("lemmy.ml"), domain("lemmy.one") {
  2. .container,
  3. .container-lg,
  4. .container-md,
  5. .container-sm,
  6. .container-xl {
  7.     max-width: 90% !important;
  8. }
  9.  
  10. body {
  11.     background-color: #fafafa;
  12. }
  13.  
  14. html {
  15.     font-size: 90%;
  16. }
  17.  
  18. h5, .h5 {
  19.     font-size: 18px;
  20. }
  21.  
  22. .card-body h3 {
  23.     font-size: 19px;    
  24. }
  25.  
  26. .details, comment-node, py-2 {
  27.     padding: 0px;
  28.     margin: 0px;
  29. }
  30.  
  31. .col-sm-2, pr-0 {
  32.     max-width: 120px;
  33. }
  34.  
  35. .col-md-8 {
  36.     flex: 0 0 75% !important;
  37.     max-width: 75% !important;
  38. }
  39.  
  40. .col-md-4 {
  41.     flex: 0 0 25% !important;
  42.     max-width: 25% !important;
  43. }
  44.  
  45. .thumbnail{
  46.     width: 90px;
  47. }
  48.    
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement