25 lines
697 B
CSS
25 lines
697 B
CSS
/**
|
|
* @file icon.css
|
|
*/
|
|
|
|
@font-face {
|
|
font-family: "fonteditor";
|
|
src: url("fonteditor.eot"); /* IE9 */
|
|
src: url("fonteditor.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
|
|
url("fonteditor.woff") format("woff"), /* chrome、firefox */
|
|
url("fonteditor.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+ */
|
|
url("fonteditor.svg#uxfonteditor") format("svg"); /* iOS 4.1- */
|
|
}
|
|
|
|
.icon {
|
|
font-family: "fonteditor";
|
|
speak: none;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-variant: normal;
|
|
text-transform: none;
|
|
line-height: 1;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|