/*
 * Qype - design of the feedback-buttons
 *
 * Author      : RegineH
 * Updated     : February 15th, 2008
 * Website     : http://www.qype.com/people/RegineH
 * Description : changes typo-color and background-color of the feedback-buttons
 * Usage       : use with Stylish Firefox extension (http://userstyles.org/) or copy to your Firefox userContent.css file
 */

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("www.qype.com") {

/* Color is for the color of the typo, background determines the color of the background. So feel free to design your own: simply put in the hex-values of the color you like. Alternatively you may also use something like "color: red;". See http://en.wikipedia.org/wiki/Web_colors or in German http://de.wikipedia.org/wiki/Webfarben for either the name or the hex-number of the color you like. */



/* no yet given feedback */
.ContentPlaceKudoButton a,
.ContentPlaceKudoButton span
    {
	color: #5e6d32 !important;
	background: #e3eac7 !important;
    }



/* feedback given */
.ContentPlaceKudoButton a:hover,
.ContentPlaceKudoButton a.voted,
.ContentPlaceKudoButton span.disabled
    {
	color: #f36218 !important;
	background: #ecf3d1 !important;	
    }

}