hiller-ui
Version:
A personal Vue.js 3.0 UI Toolkit.
59 lines (46 loc) • 818 B
CSS
@font-face {
font-family: "iconfont"; /* Project id */
src: url('iconfont.ttf?t=1628693908698') format('truetype');
}
.iconfont {
font-family: "iconfont" ;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-wechat:before {
content: "\e6c7";
}
.icon-fenlei:before {
content: "\e6a7";
}
.icon-shouye:before {
content: "\e60b";
}
.icon-yonghu:before {
content: "\e667";
}
.icon-Close:before {
content: "\e623";
}
.icon-huaban5:before {
content: "\e6eb";
}
.icon-calendar:before {
content: "\e609";
}
.icon-loading:before {
content: "\e66d";
}
@keyframes rotating{
0%{
transform:rotate(0deg)
}
to{
transform:rotate(1turn)
}
}
.icon-loading {
animation: rotating 2s linear infinite;
}