Guest User

bunkerchan css

a guest
Sep 15th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.03 KB | None | 0 0
  1. /* Quick reply form no longer overlaps backlink previews */
  2. #quick-reply {
  3.     z-index: 0;
  4. }
  5.  
  6. /* Hide scroll bar in catalog */
  7. .catalogCell {
  8.    scrollbar-width: none;
  9. }
  10. .catalogCell:hover {
  11.     scrollbar-width: auto;
  12. }
  13.  
  14. /* Remove post background from the catalog */
  15. .catalogCell {
  16.   background: none;
  17. }
  18.  
  19.  
  20.  
  21. /* Differentiate file types */
  22. /* PDF */
  23. .imgLink[href$=".pdf"] , .imgLink[href$="epub+zip"] {
  24.   content: url(https://i.imgur.com/rg7UwwB.png);
  25. }
  26. /* MP3 */
  27. .uploadCell > span a[href$="-audiompeg"] {
  28.   content: url(https://i.imgur.com/nkr2xYk.png);
  29.   float: left;
  30.   width: 40%;
  31.   height: 40%;
  32. }
  33. /* MP4 */
  34. .uploadCell > span a[href$=".mp4"] {
  35.   content: url(https://i.imgur.com/7vcFToa.png);
  36.   float: left;
  37. }
  38. /* WEBM */
  39. .uploadCell > span a[href$=".webm"] {
  40.   content: url(https://i.imgur.com/AhlCItx.png);
  41.   float: left;
  42. }
  43. /* OGG */
  44. .uploadCell > span a[href$=".ogg"], .uploadCell > span a[href$=".ogv"] {
  45.   content: url(https://i.imgur.com/5nNi9ak.png);
  46.   float: left;
  47.   width: 40%;
  48.   height: 40%;
  49. }
  50.  
Add Comment
Please, Sign In to add comment