30 lines
477 B
CSS
30 lines
477 B
CSS
@font-face {
|
|
font-family: "iconfont"; /* Project id */
|
|
src: url('./iconfont-ttf/iconfont.ttf') format('truetype');
|
|
}
|
|
|
|
.iconfont {
|
|
font-family: "iconfont" !important;
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.icon-weixiu:before {
|
|
content: "\e640";
|
|
}
|
|
|
|
.icon-gongdan:before {
|
|
content: "\e64d";
|
|
}
|
|
|
|
.icon-comment:before {
|
|
content: "\e643";
|
|
}
|
|
|
|
.icon-visible:before {
|
|
content: "\e644";
|
|
}
|
|
|