25 lines
432 B
CSS
25 lines
432 B
CSS
@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;
|
|
}
|
|
.i-edit:hover,
|
|
.i-del:hover {
|
|
cursor: pointer;
|
|
color: blue;
|
|
}
|
|
.i-edit:before {
|
|
content: '\e605';
|
|
}
|
|
.i-del:before {
|
|
content: '\e611';
|
|
}
|