- 
      
 - 
        
Save pbroschwitz/1837482 to your computer and use it in GitHub Desktop.  
    Ratings Stars
  
        
  
    
      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
    
  
  
    
  | /* | |
| Ratings Stars | |
| (with as little code as possible) | |
| */ | |
| .rating { | |
| unicode-bidi: bidi-override; | |
| direction: rtl; | |
| text-align: center; | |
| } | |
| .rating > span { | |
| display: inline-block; | |
| position: relative; | |
| width: 1.1em; | |
| } | |
| .rating > span:hover, | |
| .rating > span:hover ~ span { | |
| color: transparent; | |
| } | |
| .rating > span:hover:before, | |
| .rating > span:hover ~ span:before { | |
| content: "\2605"; | |
| position: absolute; | |
| left: 0; | |
| color: gold; | |
| } | |
| body { padding: 100px; } | 
  
    
      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
    
  
  
    
  | <div class="rating"> | |
| <span>☆</span><span>☆</span><span>☆</span><span>☆</span><span>☆</span> | |
| </div> | 
  
    
      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
    
  
  
    
  | {"view":"split","prefixfree":"1","page":"css"} | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment