Advertisement
etybgm

Untitled

Apr 19th, 2023
7,198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. // ==UserScript==
  2. // @name everia 5col
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description change the column count
  6. // @author Linniem
  7. // @match https://everia.club/*
  8.  
  9. // @grant GM_setValue
  10. // @grant GM_getValue
  11. // @grant GM_addStyle
  12. // ==/UserScript==
  13. GM_addStyle(`
  14. .archive-container.container {
  15. // border: none !important;
  16. // margin: 0 !important;
  17. // border-width: 0 !important;
  18. border: 3px solid white !important;
  19. padding: 0 !important;
  20. //min-width: 100%
  21. }
  22. .col.blog.nv-index-posts {
  23. // max-width: none;
  24. padding: 0;
  25. display: flex;
  26. flex-wrap: wrap;
  27. // justify-content: flex-start;
  28. margin-top: 0;
  29. margin-bottom: 0;
  30. min-width: 96%
  31. }
  32. .layout-grid .content > * {
  33. margin-bottom: 0 !important;
  34. }
  35. .blog-entry-title {
  36. font-size: 15px;
  37. line-height: 14px;
  38. //margin-bottom: 0px !important;
  39. //margin-top: 0px; !important;
  40. }
  41.  
  42. .posts-wrapper > * {
  43. flex-basis: 20%;
  44. height: unset !important;
  45. top: unset !important;
  46. object-fit: contain !important;
  47. max-height: 600px !important;
  48. // border: 10px !important;
  49. //border: none !important;
  50. margin: 0 !important;
  51. padding:0px 1px 0px 1px !important;
  52. }
  53. .columns-1.has-nested-images.wp-block-gallery.wp-block-gallery-1.is-layout-flex {
  54. // max-width: none;
  55. // padding: 0;
  56. display: grid;
  57. grid-template-columns: 1fr 1fr ;
  58. //min-width: 100%
  59. }
  60. ##.wrapper {
  61. min-width: 100%
  62. }
  63. .container {
  64. min-width: 100%
  65. }
  66. .nv-single-post-wrap{
  67. min-width: 100%
  68. }
  69. .litespeed-loaded {
  70. border: 0 !important;
  71. margin: 0 !important;
  72. margin-bottom: 3px !important;
  73. border-width: 0 !important;
  74. padding: 0 !important;
  75. }
  76. .tag-anjyu-kouzuki- >*{
  77.  
  78. margin: 0px !important;
  79. padding: 0 !important;
  80. }
  81. .header,footer,.entry-header,.blog-sidebar.nv-right.col-sm-12.nv-sidebar-wrap,.nv-sidebar-wrap {
  82. display: none;
  83. }
  84. div.row >*{
  85. margin-bottom: 0 !important;
  86. padding-bottom: 0 !important;
  87. //border: none !important;
  88. //margin: 0 !important;
  89. padding: 3px !important;
  90. }
  91.  
  92.  
  93.  
  94. `);
  95.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement