Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name 4 col
- // @namespace http://tampermonkey.net/
- // @version 0.2
- // @description change the column count
- // @author Linniem
- // @match https://everia.club/
- // @grant GM_setValue
- // @grant GM_getValue
- // @grant GM_addStyle
- // ==/UserScript==
- GM_addStyle(`
- .archive-container.container {
- border: none !important;
- margin: 0 !important;
- border-width: 0 !important;
- padding: 0 !important;
- min-width: 100%
- }
- ##.archive-container.container > .row {
- border: none !important;
- margin: 0 !important;
- border-width: 0 !important;
- padding: 0 !important;
- min-width: 100%
- }
- .col.blog.nv-index-posts {
- max-width: none;
- padding: 0;
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start;
- margin-top: 0;
- margin-bottom: 0;
- min-width: 96%
- }
- .blog-entry-title {
- font-size: 15px;
- line-height: 0px;
- margin-bottom: 0px !important;
- margin-top: 0; !important;
- }
- .posts-wrapper > * {
- flex-basis: 20%;
- height: unset !important;
- top: unset !important;
- object-fit: contain !important;
- border: 5px outset pink;
- max-height: 600px !important;
- border: none !important;
- margin: 0 !important;
- padding: 3px !important;
- }
- .blog-sidebar.nv-right.col-sm-12.nv-sidebar-wrap
- {
- display: none;
- }
- `);
Advertisement
Add Comment
Please, Sign In to add comment