34 lines
521 B
CSS
34 lines
521 B
CSS
@font-face {
|
|
font-family: "iconfont"; /* Project id */
|
|
src: url('iconfont.ttf?t=1698401253645') 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-edit:before {
|
|
content: "\e64e";
|
|
}
|
|
|
|
.icon-gongdan:before {
|
|
content: "\e64d";
|
|
}
|
|
|
|
.icon-comment:before {
|
|
content: "\e643";
|
|
}
|
|
|
|
.icon-visible:before {
|
|
content: "\e644";
|
|
}
|
|
|