Created
October 16, 2015 11:11
-
-
Save FabianPastor/92900ec178c6482e2ccb to your computer and use it in GitHub Desktop.
UserScript para Greasymonkey para modificar el CSS de Meneame
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Meneame CSS Edit | |
// @namespace FabianPastor | |
// @include https://www.meneame.net/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
$(".ads-interlinks").remove(); | |
$("#sidebar").remove(); | |
$(".news-shakeit").remove(); | |
$("#wrap").css("max-width","8000px").css("width","100%"); | |
$("#newswrap").css("margin","10px 4px 0px 4px"); | |
$(".news-body h1, .news-body h2").css("font-size","180%").css("font-weight","bold"); | |
$(".news-body").css("padding-left","5px"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment