Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.97 KB | None | 0 0
  1. /* Control Thumbnail Size */
  2. .gl3t a img
  3. {
  4.     max-height: 255px !important;
  5. }
  6.  
  7. /* Push Gallery Info Down */
  8. .gl3t
  9. {
  10.     min-height: 255px !important;
  11. }
  12.  
  13. /* Wrap */
  14. .ido
  15. {
  16.     max-width: 1170px !important;
  17. }
  18.  
  19. .gld
  20. {
  21.     border-left: none !important;
  22.     display: grid !important;
  23.     grid-template-columns: repeat(5,1fr) !important;
  24. }
  25.  
  26. /* Tiles */
  27. .gl1t
  28. {
  29.     min-width: 0 !important;
  30.     min-height: 0 !important;
  31.     margin: 3px !important;
  32.     background: #43464e !important;
  33.     border: 1px solid #34353b !important;
  34.     border-radius: 10px;
  35. }
  36.  
  37. /* Gallery Title */
  38. .gl4t
  39. {
  40.     font-weight: bold !important;
  41.     font-size: 9pt !important;
  42.     margin-top: 3px !important;
  43. }
  44.  
  45. /* Image Container */
  46. .gl3t
  47. {
  48.     width: auto !important;
  49.     height: auto !important;
  50.     border-radius: 0px !important;
  51.     border: none !important;
  52. }
  53.  
  54. /* Image Thumbnails */
  55. .gl3t a img
  56. {
  57.     display: block !important;
  58.     position: static !important;
  59.  
  60.     width: auto !important;
  61.     height: auto !important;
  62.    
  63.     max-width: 188px !important;
  64.     margin: 0 auto !important;
  65. }
  66.  
  67. /* Gallery Info */
  68. .gl5t
  69. {
  70.     height: 24px !important;
  71.     width: 200px !important;
  72.     margin-top: 0 !important;
  73. }
  74.  
  75. /* Category Resize */
  76. .gl5t .cs
  77. {
  78.     width: 15px !important;
  79.     height: 15px !important;
  80.     border: none !important;
  81.     text-indent: -9999px; /* Hide Text */
  82. }
  83.  
  84. /* Category */
  85. .gl5t > div:nth-child(1) > div:nth-child(1)
  86. {
  87.     top: 5px !important;
  88.     left: 5px !important;
  89. }
  90.  
  91. /* Date */
  92. .gl5t > div:nth-child(1) > div:nth-child(2)
  93. {
  94.     display: none !important; /* Hide Date */
  95. }
  96.  
  97. /* Pages */
  98. .gl5t > div:nth-child(2) > div:nth-child(2)
  99. {
  100.     top: 6px !important;
  101.     left: -95px !important;
  102. }
  103.  
  104. /* Stars */
  105. .gl5t > div:nth-child(2) > div:nth-child(1)
  106. {
  107.     top: 5px !important;
  108.     left: -27px !important;
  109. }
  110.  
  111. /* Download */
  112. .gl5t > div:nth-child(2) > div:nth-child(3)
  113. {
  114.     top: 6px !important;
  115.     left: 61px !important;
  116. }
  117.  
  118. /* Watched Tags */
  119. .gl6t
  120. {
  121.     padding-top: 2px !important;
  122. }
  123.  
  124. .gl6t .gt
  125. {
  126.     margin-bottom: 3px !important;
  127. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement