Skip to content

Instantly share code, notes, and snippets.

@ryankinal
Last active October 14, 2015 00:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryankinal/4277738 to your computer and use it in GitHub Desktop.
Save ryankinal/4277738 to your computer and use it in GitHub Desktop.
My User Styles (for the Stylish Chrome plugin)
/*
Applies to: http://feedly.com/home*, http://www.feedly.com/home*
*/
body, #feedlyCenter
{
background-image: url(https://raw.github.com/ryankinal/mysubtlepatterns/master/debut_dark/debut_dark.png);
}
.area
{
border-radius: 10px;
background-image: url(https://raw.github.com/ryankinal/mysubtlepatterns/master/light_wool/light_wool.png);
}
#feedlyTabsHolder div.simpleunreadcount
{
padding-right: 10px !important;
}
/*
Applies to: mail.google.com
Removes the "important" notifications. I didn't find them helpful
*/
div.N92wfe
{
border: none;
margin-top: 8px;
}
.mq
{
display: none;
}
.WA
{
display: none;
}
/*
Applies to: https://www.google.com/reader/*
Makes the "original" link cover the whole entry, except the star, and an "expand" element on the right.
I wanted to view the original articles, but have the keeping-track capabilities of Reader.
*/
.entry .collapsed
{
background: transparent url(https://raw.github.com/ryankinal/GMScreen/master/themes/icons/monotone_arrow_down.png) right center no-repeat !important;
}
.entry.expanded .collapsed
{
background: transparent url(https://raw.github.com/ryankinal/GMScreen/master/themes/icons/monotone_arrow_up.png) right center no-repeat !important;
}
.entry-original
{
width: auto !important;
height: 37px !important;
margin-top: -18px !important;
margin-right: 20px !important;
left: 25px !important;
background-image: none !important;
}
* {
box-sizing: border-box !important;
}
#left, #right {
background: none !important;
padding: 10px;
}
#left {
border-right: solid #999 1px;
}
#right {
border-left: solid #999 1px;
}
#center {
box-shadow: none !important;
}
.message .user,
.message .content {
padding: 5px !important;
}
.message .user {
padding-left: 10px !important;
padding-right: 10px !important;
}

The [web]'s a mess, and I just have to rule it! Dr. Horrible (ish)

Some parts of the web are, really, a mess. The content might be something worth looking at, but the interface and/or design is just terrible (or maybe just not exactly what I want :cough:GoogleReader:cough:.

So, I change it. Using the Stylish plugin for Chrome.

And here's where I'll store my styles.

A quick note on !important

It's bad practice. It really is. But due to the way user styles are implemented with Stylish, it's sometimes necessary (or just far easier) to use !important

Latest:

Google Reader is being killed off. So I've started using Feedly, and have been customizing it.

/*
Applies to: http://www.wizards.com/dnd/Article*, http://www.wizards.com/DnD/Article*
Improved typography and margins for the Wizards D&D blog. It was seriously terrible.
*/
.Content .ModuleContent.ArticleContentWrapper
{
font-size: 1em;
width: 80%;
margin: 0 10%;
text-align: justify;
line-height: 1.2em;
}
/*
Applies to: http://www.wizards.com/DnD/*, http://www.wizards.com/dnd/*
Removed the stupid background. Improved positioning and style of navigation.
*/
html body
{
background: #666 url(http://subtlepatterns.subtlepatterns.netdna-cdn.com/patterns/nasty_fabric.png);
}
body .NavWrapper
{
border-bottom: solid black 2px;
}
.Container .MainHeader .MainHeaderLogo
{
margin-top: 5px;
}
body .LoginBoxRightTopContainer
{
clear: right;
margin-top: 8px;
margin-right: -82px;
}
/*
Applies to: youtube.com
*/
#feed-pyv-container
{
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment