@font-face {
font-family: "iconfont";
src: url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAA.....AAAA=') format('woff2'),
}
.iconfont {
font-family: "iconfont" !important;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.iconfont:before {
margin: 0 .25em 0 0;
}
.iconfont.tags:before {
content: "\e880";
}
.iconmask{
// 垂直居中
display: inline-flex;
align-items: center;
}
@circle: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiByPSI1MCIvPjwvc3ZnPg==");
.iconmask::before {
content: '1';
color: transparent;
// Content可以使block中的内容和其它文字baseline对齐。
// 没有conent的话,是block底部与其它文字baseline对齐。
// 和上面的flex垂直居中可以择一使用。
display: inline-block;
width: 3em;
height: 3em;
// if no height, the default height is line-height.
margin-right: .25em;
-webkit-mask: @circle no-repeat center /contain;
background: #888;
}
.iconmask.instagram::before {
-webkit-mask-image: url('assets/instagram.png')
}
1
cheese 2020-06-13 00:40:16 +08:00
自己 AI 作图,导成 svg,然后去 iconfont.cn 上传一下,直接下代码就行了
|
2
JCZ2MkKb5S8ZX9pq OP @cheese 原来可以上传的啊……一直白嫖来着……
|
3
designer 2020-06-13 08:43:32 +08:00 via iPhone
|