Advertisement
Guest User

4chan

a guest
May 5th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.62 KB | None | 0 0
  1. @namespace url(http://www.w3.org/1999/xhtml);
  2.  
  3. @-moz-document domain("4chan.org") {
  4.  
  5.   /*File Text appearing on hover*/
  6.   .fileText {
  7.      opacity: 0 !important;
  8.      max-height: 0px !important;
  9.      transition: .2s ease-out !important;
  10.     }
  11.    .file:hover .fileText,
  12.    .file.image-expanded .fileText {
  13.      opacity: 1 !important;
  14.      max-height: 22px !important;
  15.     }
  16.   .fileText {
  17.     font-size: 10px !important;
  18.   }  
  19.   span.file-info a {
  20.     color: #0392cf !important;
  21.   }
  22.  
  23.   /*Post Info appearing on hover*/
  24.   /*.info-on-hover:root .postNum {
  25.     font-size: 0px !important;
  26.     transition: .2s ease-out !important;
  27.   }*/
  28.  
  29.   /*Thread Subject*/
  30.   .subject {
  31.     margin-right: 0px !important;
  32.   }
  33.  
  34.   /*Normal post info*/
  35.   .name {
  36.     font-weight: normal !important;
  37.     margin-right: 6px !important;
  38.   }
  39.   .postertrip {
  40.     /*font-weight: bold !important;*/
  41.     margin-right: 6px !important;
  42.   }
  43.   .postNum {
  44.     /*font-weight: bold !important;*/
  45.     /*This is for equal space between the left and right side*/
  46.     margin-right: 6px !important;
  47.   }
  48.   a {
  49.     color: #fdc298 !important;
  50.   }
  51.   .dateTime {
  52.     /*font-weight: bold !important;*/
  53.     /*display: none !important;*/
  54.     color: #fd98a1 !important;
  55.     margin-right: 6px !important;
  56.   }
  57.  
  58.   /*Links*/
  59.   .linkify {
  60.     color: #999999 !important;
  61.   }
  62.   .embedder {
  63.     color: #999999 !important;
  64.   }
  65.  
  66.   /*Backlink (Icon version)*/
  67.   .backlink-icon:root .reply .backlink {
  68.     bottom: 5px !important;
  69.   }
  70.   .backlink {
  71.     margin-left: -1px !important;
  72.   }
  73.  
  74.   /*Op*/
  75.   .op {
  76.     background: #fbfbfb !important;
  77.     margin-left: 0px !important;
  78.     margin-top: 3px !important;
  79.     padding-top: 6px !important;
  80.     padding-bottom: 3px !important;
  81.     margin-bottom: 8px !important;
  82.   }
  83.   .postContainer.opContainer {
  84.     border-width: 0 0 0 0 !important;
  85.   }
  86.  
  87.   /*Normal posts (The container is like the second layer of the post)*/
  88.   .postContainer {
  89.     margin-top: -3px !important;
  90.     border-width: 1px 0px 0px 0px !important;
  91.     border-style: dashed !important;
  92.     border-color: #BEB4AA !important;
  93.   }
  94.  
  95.   /*Quick reply*/
  96.   #qr {
  97.     border-width: 3px !important;
  98.     border-color: #ffffff !important;
  99.     box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.2) !important;
  100.     margin-right: -1px !important;
  101.     margin-left: -1px !important;
  102.   }
  103.  
  104.   /*Board Title*/
  105.   .boardTitle {
  106.     margin-bottom: 20px !important;
  107.     margin-top: -5px !important;
  108.   }
  109.  
  110.   /*Header bar when autohidden*/
  111.   .fixed.top-header #header-bar.autohide:not(:hover) {
  112.     margin-top: -1px !important;
  113.   }
  114. }
  115.  
  116. /*CSS by Tabal*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement