Skip to content

Instantly share code, notes, and snippets.

@rogierslag
Last active December 27, 2015 07:29
Show Gist options
  • Save rogierslag/7289160 to your computer and use it in GitHub Desktop.
Save rogierslag/7289160 to your computer and use it in GitHub Desktop.
I was not that satisfied with how tweakers.net looked on my retina Macbook. Blurry logo (still after a year they did not manage to update it!). So I wanted to find out how I could improve this myself. I came across this forum thread [http://gathering.tweakers.net/forum/list_messages/1521568], which I used to make the site look better.When I was …
/**
Tweak voor tweakers.net
Safari User CSS
It enables a retina logo for the site
It removes the user icon for the currently loggedin user
It removes the annoying "collapse" buttons at every comment
It removes the blurry "hosted by true" ad (make it retina and it'll enable it!)
It removes a quite annoying promo text
It scales the comment scores down to a desktop friendly size (since the rating system is flawed anyway)
It does not remove any ads from the site. They need this revenue to operate the website. Take a subscription of you want to get rid of these advertisements!
Include the following URLs
- http://tweakers.net/*
- http://*.tweakers.net/*
*/
#logo a img {
visibility: hidden;
}
#logo a {
position:absolute;
width:auto;
height:85px;
background-image:url('http://tweakers.net/ext/f/dIGCIbm561cvqkb873nnMoCv/full.png');
background-size: 213px 85px;
background-position: 0px -85px;
}
#logo::after {
background-image: none !important;
}
#userbar .thumb {
background: transparent !important;
}
.thumb.usericonsmall.empty {
border-width: 0px !important;
}
.thumb.empty::before {
background: none !important;
}
.reactieBody #collapseButtons {
display: none !important;
}
#true {
display: none !important;
}
.reactieHeader .scoreButton.large {
width:14px !important;
height: 14px !important;
line-height: 14px !important;
font-size: 9px !important;
}
#promo {
display: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment