Last active
January 3, 2016 17:19
-
-
Save codemasher/8494800 to your computer and use it in GitHub Desktop.
Some little tweaks for the new Twitter web layout... (WIP)
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
.global-nav-inner { | |
background: rgba(0,0,0,0.75); | |
} | |
.modal-overlay, .profile-header-mask, .grid-overlay, .gallery-overlay { | |
background: rgba(0,0,0,0.8); | |
} | |
.home-tweet-box { | |
background: rgba(255,255,255,1.0); | |
} | |
.content-main .conversations-enabled .expansion-container .inline-reply-tweetbox { | |
background: #f5f5f5; | |
} | |
.conversations-enabled .inline-reply-caret .caret-inner { | |
border-bottom-color: #f5f5f5; | |
} | |
/* cange colors to your preferences */ | |
.nav > li > a:not(.settings) { | |
color: #ff9b31; | |
border-bottom: 2px solid #ff9b31; | |
transition-property: all; | |
transition-duration: 0.5s; | |
} | |
.nav > li > a:not(.settings):hover { | |
color: #ffe500; | |
border-bottom: 2px solid #ffe500; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment