2014.8.3 Share and Find
Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.-- fontawesome.io
@font-face {
font-family: 'seedIcon';
src:url('../fonts/seedIcon.eot');/* IE9*/
src:url('../fonts/seedIcon.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('../fonts/seedIcon.ttf') format('truetype'), /* chrome、firefox */
url('../fonts/seedIcon.woff') format('woff'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
url('../fonts/seedIcon.svg#seedIcon') format('svg'); /* iOS 4.1- */
font-weight: normal;
font-style: normal;
}
[class^="sicon-"], [class*=" sicon-"] {
font-family: 'seedIcon';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
.sicon-chart-line:before {
content: "\e640";
}
.sicon-chart-bar:before {
content: "\e641";
}
.sicon-chart-area:before {
content: "\e642";
}
<i class="sicon-chart-line"></i>
<i class="sicon-chart-bar"></i>
<i class="sicon-chart-area"></i>
[class^="sicon-"]:hover {
color: #000000;
}
.sicon-spin {
display: inline-block;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
}
.sicon-rotate-90:before {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}