Created
August 14, 2014 16:20
-
-
Save merqurio/7660b2df8310212fd445 to your computer and use it in GitHub Desktop.
Discourse Round Corners Theme + Green Bar
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
| .d-header .icons .icon { | |
| color: #FFF!important; | |
| } | |
| .d-header .icons .icon:hover { | |
| background-color: #4DB87F!important; | |
| border-radius: 5px; | |
| } | |
| .d-header .icons .active .icon:hover { | |
| background-color: #fff!important; | |
| border-bottom-left-radius: 0px; | |
| border-bottom-right-radius: 0px; | |
| } | |
| .d-header .icons .active .icon { | |
| color: #333!important; | |
| border-top-right-radius: 5px; | |
| border-top-left-radius: 5px; | |
| } | |
| .d-header .current-username a { | |
| color: #FFF; | |
| } | |
| .d-header { | |
| background-color: rgba(51, 208, 125, 0.95)!important; | |
| background-color: #33D07D; | |
| } | |
| .extra-info-wrapper .topic-link { | |
| color: #FFF; | |
| } | |
| .extra-info-wrapper .topic-statuses i { | |
| color: #FFF; | |
| } | |
| /* Round Corners */ | |
| .user-main .about .details .secondary { | |
| border-radius: 6px; | |
| } | |
| .nav-pills>li>a, .btn, a.badge-category { | |
| border-radius: 6px; | |
| } | |
| .list-controls a.badge-category.category-dropdown-button { | |
| margin-left: 3px; | |
| } | |
| img.avatar { | |
| border-radius: 5px; | |
| } | |
| .d-dropdown { | |
| border-radius: 5px; | |
| } | |
| .d-dropdown#user-dropdown { | |
| border-top-right-radius: 0px; | |
| width: 150px; | |
| } | |
| .badge-category-parent { | |
| padding: 3px 2px; | |
| width: 5px; | |
| margin-right: 2px; | |
| border-radius: 5px; | |
| height: 11px; | |
| } | |
| /* Menua */ | |
| .list-controls .category-dropdown-menu { | |
| min-width: 205px; | |
| border: none; | |
| padding-top: 5px; | |
| } | |
| .cat { | |
| margin-left: 4px; | |
| margin-right: 4px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment