Advertisement
Guest User

d3go forum display tweaks css

a guest
May 6th, 2017
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.34 KB | None | 0 0
  1. @-moz-document domain(forums.d3go.com) {
  2.     /*
  3.      * hide some stuff
  4.      */
  5.     h1.d3go-game__header img {
  6.         display: none !important;
  7.     }
  8.     div.promoted-content {
  9.         display: none !important;
  10.     }
  11.    
  12.     /*
  13.      * use more width
  14.      */
  15.     .container {
  16.         width: 100% !important;
  17.     }
  18.    
  19.     /*
  20.      * get rid of much unnecessary whitespace
  21.      */
  22.     tbody tr td {
  23.         padding: 4px !important;
  24.     }
  25.     body.Discussions .ItemDiscussion .DiscussionName .Wrap .Title {
  26.         padding-bottom: 0px !important
  27.     }
  28.     .DataList.Item, .DataList .Item {
  29.         padding: 3px !important;
  30.     }
  31.     .DataList.CategoryList .Item {
  32.         padding: 3px !important;
  33.         min-height: 0px !important
  34.     }
  35.     .DataList.CategoryList .Item .Number {
  36.         display: inline !important
  37.     }
  38.     .DiscussionsTable .Item .Title {
  39.         font-size: 1.5rem !important;
  40.     }
  41.     .BlockColumn .ProfilePhoto {
  42.         width: 0px !important;
  43.     }
  44.    
  45.     /*
  46.      * some fixes for profile page
  47.      */
  48.     .Item .Title a {
  49.         color: #333 !important;
  50.     }
  51.     div.Meta.Meta-Discussion span.MItem {
  52.         color: #888888 !important;
  53.     }
  54.     .DataList .Item .Meta a {
  55.         color: #333 !important;
  56.     }
  57.     .Item .Meta .MItem.Category a {
  58.         color: #fff !important;
  59.     }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement