Last active
September 14, 2018 10:13
-
-
Save parthibx24/2eb76bc8f8e24d4888d8af752a4c5219 to your computer and use it in GitHub Desktop.
Blue Themed Custom CSS for Refined Github
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
| /* Custom CSS */ | |
| .social-count { | |
| border: 0px; | |
| } | |
| .shelf-dismiss .close-button:hover { | |
| color: blue; | |
| border: 0px solid white; | |
| background-color: white; | |
| } | |
| .btn { | |
| border: 0px; | |
| border-redius: 0em; | |
| } | |
| .shelf-dismiss .close-button { | |
| color: white; | |
| border: 0px solid white; | |
| } | |
| .btn-primary { | |
| background-color: #00000000; | |
| color: #000; | |
| border: 0px; | |
| border-redius: 0em; | |
| background-image: linear-gradient(-180deg, #00000000 0%, #00000000 100%); | |
| } | |
| .btn-primary:hover, .btn-primary.hover { | |
| background-image: linear-gradient(-180deg, blue 0%, blue 100%); | |
| color: white; | |
| border: 0px; | |
| border-redius: 0em; | |
| } | |
| .shelf-lead { | |
| color: white; | |
| filter: saturate(0%) ; | |
| } | |
| .header-search-key-slash { | |
| filter: saturate(5000%) ; | |
| } | |
| .shelf-title { | |
| color: white; | |
| } | |
| .Header { | |
| background-color: blue; | |
| } | |
| .intro-shelf { | |
| background-image: linear-gradient(180deg, rgba(255,255,253,0) 1%, #fff),linear-gradient(70deg, blue,22%, blue); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment