42 lines
604 B
CSS
42 lines
604 B
CSS
@font-face {
|
|
font-family: "iconfont";
|
|
src: url('/static/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-rotate:before {
|
|
content: "\e66e";
|
|
}
|
|
|
|
.icon-rotate-screen:before {
|
|
content: "\e648";
|
|
}
|
|
|
|
.icon-rotate-big:before {
|
|
content: "\e624";
|
|
}
|
|
|
|
.icon-linechat:before {
|
|
content: "\e79a";
|
|
}
|
|
|
|
.icon-mixchat-r:before {
|
|
content: "\e6d8";
|
|
}
|
|
|
|
.icon-mixchat-s:before {
|
|
content: "\e61a";
|
|
}
|
|
|
|
.icon-diogram:before {
|
|
content: "\e644";
|
|
}
|
|
|