Files
atom/static/fontello-mixins.less
Ben Ogle 86d1990894 Add fontello icons.
Remove this when we have octicons for audio and video
2013-07-26 16:54:35 -07:00

20 lines
382 B
Plaintext

@fontello-video: "\e800";
@fontello-audio: "\e801";
.fontello-icon(@name, @size: 16px) {
&:before {
font-family: 'fontello';
font-weight: normal;
font-style: normal;
display: inline-block;
line-height: 1;
-webkit-font-smoothing: antialiased;
text-decoration: none;
font-size: @size;
width: @size;
height: @size;
content: @@name
}
}