Created
January 9, 2017 13:50
-
-
Save iamarcel/878df6ec396e66f27251be94306d08ad to your computer and use it in GitHub Desktop.
Quiet Facebook
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
/* Hide the stream */ | |
#stream_pagelet { | |
display: none; | |
} | |
/* Hide the sidebar */ | |
#rightCol { | |
display: none; | |
} | |
/* Hide notification count */ | |
#fbNotificationsJewel .jewelCount { | |
display: none; | |
} | |
/* Hide shortcut counters */ | |
.sideNavItem .countValue { | |
display: none !important; | |
} | |
/* Don't make notification icon white */ | |
#fbNotificationsJewel a.jewelButton > div { | |
background-position: 0 -188px !important; | |
} | |
/* Show a nice message */ | |
#contentCol::before { | |
display: block; | |
content: 'Nice, so calm :) Feel free to take some time and feel bored.'; | |
margin: 24px auto; | |
text-align: center; | |
font-size: 1.25em; | |
color: rgba(0,0,0,.5); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment