Advertisement
Guest User

KYMCSS

a guest
Jan 29th, 2019
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name     Override KYM CSS
  3. // @include  https://knowyourmeme.com/*
  4. // @grant    GM_addStyle
  5. // @run-at   document-start
  6. // ==/UserScript==
  7.  
  8. GM_addStyle ( `
  9.     #photo_gallery .item {
  10.         height: auto !important;
  11.         min-height: auto !important;
  12.     }
  13.     .combo-wrapper {
  14.     display:none !important;
  15.     }
  16.  
  17.  
  18.     .colorbox
  19.     {
  20.     flex-direction: column;
  21.     background: unset !important;
  22.     }
  23.  
  24.     .left-content
  25.     {
  26.     height: 80% !important;
  27.     }
  28.  
  29.     .right-sidebar
  30.     {
  31.     width: 100% !important;
  32.     height: 20% !important;
  33.     }
  34.  
  35.     .r-top-block
  36.     {
  37.     display:flex;
  38.     flex-direction: row;
  39.     justify-content: center;
  40.     margin-right: 20% !important;
  41.     margin-left: 20% !important;
  42.     }
  43.  
  44.     .enlargeNavigation
  45.     {
  46.     order: 2;
  47.     width: 20% !important;
  48.     }
  49.  
  50.     .cbox-img-ctrls
  51.     {
  52.     order: 1;
  53.     width: 20% !important;
  54.     height: 100% !important;
  55.     margin-top: 30px !important;
  56.     }
  57.  
  58.     .lightbox-top-name
  59.     {
  60.     width: 20% !important;
  61.     }
  62.  
  63.     .cbox-smedia
  64.     {
  65.     order: 4;
  66.     width: 20% !important;
  67.     height: 100% !important;
  68.     margin-top: 30px !important;
  69.     }
  70.  
  71.     .cbox-thumbs
  72.     {
  73.     order: 3;
  74.     width: 20% !important;
  75.     margin-top: 30px !important;
  76.     }
  77.  
  78.     #cboxOverlay
  79.     {
  80.     background: rgba(0, 0, 0, 0.75) !important;
  81.     }
  82. ` );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement