34 lines
518 B
CSS
34 lines
518 B
CSS
@font-face {
|
|
font-family: "iconfont"; /* Project id */
|
|
src: url('tabbar.ttf?t=1780818759010') format('truetype');
|
|
}
|
|
|
|
.iconfont {
|
|
font-family: "iconfont" !important;
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.icon-home:before {
|
|
content: "\e666";
|
|
}
|
|
|
|
.icon-course:before {
|
|
content: "\e692";
|
|
}
|
|
|
|
.icon-train:before {
|
|
content: "\e8be";
|
|
}
|
|
|
|
.icon-discover:before {
|
|
content: "\e726";
|
|
}
|
|
|
|
.icon-profile:before {
|
|
content: "\e501";
|
|
}
|
|
|