fonteditor/css/ico.less
2014-10-07 02:34:38 +08:00

30 lines
468 B
Plaintext

// fontface
@font-face {
font-family: 'fonteditor';
src: url('../font/iconfont.ttf') format('truetype');
}
.i-edit,
.i-del {
display: inline-block;
font-family: 'fonteditor';
font-size: 12px;
font-style:normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.1px;
&:hover {
cursor: pointer;
color: blue;
}
}
.i-edit:before {
content: '\e605';
}
.i-del:before {
content: '\e611';
}