Guest User

Tweakers Custom CSS

a guest
Sep 21st, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.84 KB | None | 0 0
  1. @import "https://fonts.googleapis.com/css?family=Ubuntu";
  2.  
  3. * {
  4.     text-rendering: optimizeLegibility;
  5.     -webkit-font-smoothing: antialiased;
  6.     -moz-osx-font-smoothing: grayscale;
  7. }
  8.  
  9. body {
  10.     font-family: 'Ubuntu', serif;
  11. }
  12.  
  13. #menubottombar, #search #true, #tracker, #trackerStretch, .tracker, body.hasTracker #tracker, #searchbar, #jobs, #bottom, #tracker .fakeTop, .flagNL div {
  14.     visibility: hidden !important;
  15.     display: none !important;
  16. }
  17.  
  18. .article {
  19.     text-align: justify;
  20. }
  21.  
  22. body.hasTracker {
  23.     margin-left: 0;
  24. }
  25.  
  26. #top {
  27.     background-color: #00497c !important;
  28.     border-bottom: 0;
  29. }
  30.  
  31. #layout {
  32.     clear: both;
  33.     padding-bottom: 0;
  34.     background: white;
  35. }
  36.  
  37. #contentArea{
  38.     border: 0px solid;
  39.     margin: 0 auto;
  40. }
  41.  
  42. .ratingcount {
  43.     color: #fff !important;
  44.     border: 1px solid #bbbebe;
  45.     border-radius: 1px;
  46.     height: 22px;
  47.     text-align: center;
  48.     text-shadow: 1px 1px 1px rgba(0, 0, 0, .2), 0 0 2px rgba(0, 0, 0, .2);
  49.     background: #dcdfdf;
  50.     background-image: -webkit-linear-gradient(#dcdfdf, #c5c8c8);
  51.     background-image: -moz-linear-gradient(#dcdfdf, #c5c8c8);
  52.     background-image: linear-gradient(#dcdfdf, #c5c8c8);
  53. }
  54.  
  55. .can_be_rated .ratingcount {
  56.     background: #929494;
  57.     background-image: -webkit-linear-gradient(#929494, #7d8080);
  58.     background-image: -moz-linear-gradient(#929494, #7d8080);
  59.     background-image: linear-gradient(#929494, #7d8080);
  60.     border-color: #7c7e7e;
  61. }
  62.  
  63. .has_ratings .ratingcount {
  64.     background: #cbda30;
  65.     background-image: -webkit-linear-gradient(#cbda30, #c1d203);
  66.     background-image: -moz-linear-gradient(#cbda30, #c1d203);
  67.     background-image: linear-gradient(#cbda30, #c1d203);
  68.     border-color: #b6c600;
  69. }
  70.  
  71. #userbar li.icon.unread {
  72.     -webkit-animation-duration: 5s;
  73.     animation-duration: 5s;
  74.     -webkit-animation-fill-mode: both;
  75.     animation-fill-mode: both;
  76.     -webkit-animation-timing-function: linear;
  77.     animation-timing-function: linear;
  78.     animation-iteration-count: infinite;
  79.     -webkit-animation-iteration-count: infinite;
  80.     -webkit-animation-name: bounce;
  81.     animation-name: bounce;
  82.     -webkit-animation-delay: 2s;
  83.     animation-delay: 2s;
  84. }
  85. @-webkit-keyframes bounce {
  86.     0%, 10%, 100%, 25%, 40%, 50% {
  87.         -webkit-transform: translateY(0);
  88.     }
  89.  
  90.     20%, 30% {
  91.         -webkit-transform: translateY(-10px);
  92.     }
  93. }
  94. @keyframes bounce {
  95.     0%, 10%, 100%, 25%, 40%, 50% {
  96.         transform: translateY(0);
  97.     }
  98.  
  99.     20%, 30% {
  100.         transform: translateY(-10px);
  101.     }
  102. }
  103.  
  104. .fpaItem a:hover, h1, h1 a, h2, h2 a {
  105.     color: #00497c !important;
  106. }
  107.  
  108. #menubar, #tracker .fakeTop {
  109.     background: #00497c! important;
  110.     background-image: -webkit-linear-gradient(#00497c, #0B4884 68px) !important;
  111.     background-image: -moz-linear-gradient(#00497c, #0B4884 68px) !important;
  112.     background-image: linear-gradient(#00497c, #0B4884 68px) !important;
  113. }
  114.  
  115. #logo:hover, #menu > ul > li:hover {
  116.     background: #00497c;
  117.     height: 43px
  118. }
  119.  
  120. #menubar {
  121.     box-shadow: inset 0 -1px 0 #385C7F !important;
  122. }
  123.  
  124. #categoryBrowser li.active, #categoryBrowser li.active.more, #logo:hover, #menu .dropdown ul li:hover, #menu li:hover, .dropdown ul li:hover, .pageTabs .more>ul li:hover {
  125.     background: #158;
  126.     background-image: -webkit-linear-gradient(#158, #1D618E);
  127.     background-image: -moz-linear-gradient(#158, #1D618E);
  128.     background-image: linear-gradient(#158, #1D618E);
  129. }
  130.  
  131. #categoryBrowser li.active.more {
  132.     background: url(//tweakimg.net/g/if/categories/arrows.png) 252px -18px no-repeat, -webkit-linear-gradient(#158, #1D618E);
  133.     background: url(//tweakimg.net/g/if/categories/arrows.png) 252px -18px no-repeat, -moz-linear-gradient(#158, #1D618E);
  134.     background: url(//tweakimg.net/g/if/categories/arrows.png) 252px -18px no-repeat, linear-gradient(#158, #1D618E);
  135. }
Advertisement
Add Comment
Please, Sign In to add comment