Advertisement
Guest User

Tweakers Custom Style Cameleon73

a guest
Apr 23rd, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.29 KB | None | 0 0
  1. /* remove stuff from frontpage */
  2. div#jobs, div#newsletter, div#categoryDropdown, div#sponsored {
  3.   display: none;
  4. }
  5.  
  6. /* no rounded corners at bottom */
  7. #bottom div.hr {
  8.   border-radius: 0;
  9. }
  10.  
  11. /* no rounded corners at top */
  12. div#searchbar {
  13.   border-radius: 0;
  14. }
  15.  
  16. /* remove rounded corners on tracker show/hide button */
  17. #tracker .fakeTop > div {
  18.   background: transparent;
  19. }
  20.  
  21. /* smaller font for frontpage photo items */
  22. .fpaItem .textContainer {
  23.   top: -45px;
  24.   height: 37px;
  25.   font-size: 12px;
  26.   line-height: 18px;
  27. }
  28.  
  29. /* more pronounced top menu */
  30. #menu li a {
  31.   color: #EDEEE;
  32.   font-size: 13px;
  33. }
  34.  
  35. #menu .more > span {
  36.   font-size: 13px;
  37. }
  38.  
  39. #menu li.active a {
  40.   font-weight: bold;
  41. }
  42.  
  43. /* custom comment layout */
  44. .reactie {
  45.   border-left: 0px dashed #F8F8F8;
  46.   padding-left: 24px;
  47. }
  48.  
  49. .reactieBody {
  50.   background-color: #F8F8F8;
  51.   margin-left: -20px;
  52.   padding-left: 19px;
  53.   border-left: 4px solid #EDEEEE !important;
  54. }
  55.  
  56. .reactieFooter {
  57.   background-color: #EDEEEE;
  58.   margin-left: -19px;
  59.   padding-left: 19px;
  60. }
  61.  
  62. .topBorder {
  63.   display: none;
  64. }
  65.  
  66. .reactieBody.hidden, .reactieBody.informative, .reactieBody.spotlight {
  67.   border: 0px;
  68. }
  69.  
  70. /* +2 comment */
  71. .reactieBody.informative {
  72.   background-color: #E6FCE1;
  73. }
  74.  
  75. /* +3 comment */
  76. .reactieBody.spotlight {
  77.   background-color: #D7FCE4;
  78. }
  79.  
  80. /* hidden comment */
  81. .reactieBody.hidden {
  82.   background-color: #F9F9F9;
  83. }
  84.  
  85. /* comment form at the bottom */
  86. #reactieFormContainer .reactieBody {
  87.   padding-top: 3px;
  88.   padding-bottom: 3px;
  89.   background-color: #EDEEEE;
  90.   border-left-color: #DEDDDD !important;
  91. }
  92.  
  93. .reactieCancelButton {
  94.   padding-left: 3px;
  95.   padding-top: 6px;
  96.   display: block;
  97. }
  98.  
  99. #reactieForm .submit .fancyButton {
  100.   float: right;
  101.   margin-right: 0px;
  102. }
  103.  
  104. /* make all score buttons rounded */
  105. .reactieHeader .scoreButton {
  106.   border-radius: 2px;
  107. }
  108.  
  109. .reactieBody.hidden .scoreButton {
  110.   margin-right: 18px;
  111. }
  112.  
  113. .reactieBody.hidden > .reactieHeader a:not(.scoreButton) {
  114.   color: #8F8F8F;
  115. }
  116.  
  117. /* space between comments (-3px margin = 2px space) */
  118. .reactieBody.informative > .reactieFooter,
  119. .reactieBody.spotlight > .reactieFooter,
  120. .reactieBody.hidden > .reactieFooter,
  121. .reactieHeader.collapsed,
  122. .reactieFooter {
  123.   margin-bottom: -3px;
  124. }
  125.  
  126. /* slightly tricky way to layout "can't comment anymore"-msg */
  127. .reacties p {
  128.   margin-top: 15px;
  129. }
  130.  
  131. /* more pronounced headers */
  132. h1:not(.sitename) {
  133.   background-color: #313232;
  134.   color: #D9FF26;
  135.   padding-left: 4px;
  136.   font-size: 25px;
  137. }
  138.  
  139. h1 a, h1 a:hover {
  140.   color: #D9FF26;
  141. }
  142.  
  143. a.titleLink:hover {
  144.   color: #D9FF26;
  145. }
  146.  
  147. /* reposition news submit to better fit new H1 style */
  148. .newsSubmitButton {
  149.   margin-top: 2px;
  150.   margin-right: 3px;
  151. }
  152.  
  153. /* minor tweak to hidden mail addresses on profile page */
  154. div.communication {
  155.   background-color: #EDEEEE;
  156. }
  157.  
  158. div.communication > img {
  159.   visibility: hidden;
  160. }
  161.  
  162. /* other small profile page tweaks */
  163. .galleryHeading .karma {
  164.   padding-top: 5px;
  165. }
  166.  
  167. .galleryHeading .karmaCount {
  168.   font-family: "HelveticaNeue-CondensedBold","Helvetica Neue Bold Condensed","Roboto Bold Condensed","Arial Bold","Helvetica Bold","Liberation Sans Bold",arial,helvetica,sans-serif;
  169.   font-size: 25px;
  170.   margin-bottom: 11px;
  171.   background-color: #5A5A5A;
  172.   color: #EDEEEE;
  173.   padding-left: 3px;
  174.   padding-right: 3px;
  175. }
  176.  
  177. .galleryHeading .memberInfo {
  178.   width: 800px;
  179. }
  180.  
  181. /* pricewatch tweaks */
  182. .thumb {
  183.   border-radius: 0px;
  184. }
  185.  
  186. .tweakbaseHeader .inventory span, .tweakbaseHeader .wishlist span {
  187.   color: #E4E5E5;
  188. }
  189.  
  190. span[itemprop=lowPrice] {
  191.   color: #D9FF26;
  192. }
  193.  
  194. .subInfo {
  195.   padding-top: 6px;
  196.   padding-right: 4px;
  197. }
  198.  
  199. .subInfo br {
  200.   line-height: 29px;
  201. }
  202.  
  203. /* *** forum tweaks *** */
  204. #title p.mods {
  205.   text-align: right;
  206.   padding-right: 4px;
  207.   line-height: 15px;
  208.   color: #E4E5E5;
  209. }
  210.  
  211. #title p.mods a {
  212.   color: #D9FF26;
  213. }
  214.  
  215. form div.formsubmit {
  216.   padding-top: 2px;
  217. }
  218.  
  219. form .formsubmit .fancyButton {
  220.   float: right;
  221.   margin-right: 22px;
  222. }
  223.  
  224. form .formsubmit .forumlink {
  225.   padding-left: 0px;
  226.   padding-top: 4px;
  227. }
  228.  
  229. /* *** meuktracker tweaks *** */
  230. #header a.fancyButton {
  231.   margin-left: 865px;
  232.   margin-top: 2px;
  233.   position: absolute;
  234. }
  235.  
  236. /* *** profile page tweaks *** */
  237. .galleryHeading .memberInfo h1 {
  238.   padding-right: 4px;
  239.   margin-right: 6px;
  240. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement