Created
November 22, 2017 08:13
-
-
Save isu3ru/e236ea77ba81a5ffbec16c3c6827cdad to your computer and use it in GitHub Desktop.
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
<?php | |
function starsLineIcons($count = 1, $title = FALSE) { | |
echo '<span class="ratings ratings-golden"'; | |
if (empty($title)) { | |
echo " title='{$title}'"; | |
} | |
echo '>'; | |
for ($i=0; $i < $count; $i++) { | |
echo '<span class="fa fa-star"></span>'; | |
} | |
echo '</span>'; | |
# stylesheet | |
/* | |
.ratings .fa { | |
display: inline-block; | |
margin-right: 2px; | |
font-size: 1.2em | |
} | |
.ratings-golden { | |
color: gold; | |
text-shadow: 2px 2px 1px #e1c320; | |
} | |
*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment