Skip to content

CSS styles to _fix_ subjective styles issues in certain websites.

License

Notifications You must be signed in to change notification settings

mhasbini/subjective-styles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

CSS styles to fix subjective styles issues in certain websites.

I'm using Stylish extension to apply these styles in Google Chrome.


Fix Google Chrome links underline

Applies to: All websites.

/*
	Disable Google Chrome links underline skipping over some characters.
*/

a:link {
    text-decoration-skip-ink: none;
}
Before After

Hide twitter statistics

Applies to: twitter.com

/*
	Hide twitter statistics (number of tweets, folowers, following) from the twitter home page.
	Visiting a profile directly will show these stats.
*/ 

.ProfileCardStats {
	display: none;    
}

.DashboardProfileCard-userFields {
    top: 96px;
}

/* Hide recommended friends */

.dashboard .has-content.wtf-module {
    display: none;
}

/* Hide trends */

.dashboard .trends {
	display: none;
}
Before After

About

CSS styles to _fix_ subjective styles issues in certain websites.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published