Created
November 7, 2011 01:05
-
-
Save af/1343945 to your computer and use it in GitHub Desktop.
User stylesheet to undo egregious Google Reader UI changes
This file contains hidden or 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
/* | |
* This user stylesheet fixes most of my gripes with the new Google Reader UI. | |
* I'm activating it using the "Stylish" Chrome extension [1], which I believe is also available on Firefox. | |
* For other browsers, use any method that lets you assign custom styles for certain sites. | |
/* | |
/* Home page */ | |
#team-messages { | |
margin-top:5em; | |
} | |
#overview .overview-header { | |
margin-bottom:0.1em !important; | |
font-size:0.7em; | |
} | |
/* List view changes- add the old item borders back to make item boundaries more clear. */ | |
.card { | |
border:2px solid #eee; | |
border-radius:6px; | |
border-style:solid !important; | |
padding:0 1em 1em; | |
margin-bottom:1em; | |
} | |
.card-bottom.card-actions { | |
margin:-1em; | |
border:0; | |
border-top:1px solid #e5e5e5; | |
} | |
#entries.cards .card-content { | |
padding-top:10px; padding-left:0; | |
} | |
#current-entry .card { | |
box-shadow: 0 0px 10px #ccc; | |
border-color:#4D90F0; | |
} | |
/* put stars back at the left of item titles */ | |
.entry .entry-icons { | |
position:absolute; top:0; left:-4px; | |
margin-left:0 !important; | |
} | |
.entry-main { | |
padding-left:16px; | |
} | |
/* stop those new folder icons from being waaaay too dark */ | |
.folder-icon { opacity:0.15; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment