Last active
May 22, 2018 17:39
-
-
Save goenning/c99f67489f103a86e6d2d239dffe0800 to your computer and use it in GitHub Desktop.
Custom CSS of demo.fider.io
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
a { | |
color: #ff9232; | |
} | |
.c-support-counter button.m-supported, | |
.c-support-counter button:hover { | |
color: #ff9232 !important; | |
} | |
.c-support-counter button.m-supported i.icon, | |
.c-support-counter button:hover i.icon, | |
.c-support-counter button.no-touch:hover i.icon { | |
color: #ffa14f !important; | |
} | |
.c-username.m-staff { | |
color: #c97327; | |
} | |
.c-avatar.m-staff { | |
border-color: #c97327; | |
} | |
.c-idea-list .c-list-item .c-list-item-title:hover { | |
color: #c97327; | |
} | |
.c-menu { | |
background-color: rgba(255, 153, 5, 0.22); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use
body.is-staff .c-menu { ... }
to apply the rule to staff users only.