1
0
Fork 0

Add play/pause font

This commit is contained in:
Andrew Tomaka 2014-09-24 14:53:25 -04:00
parent ba705e4bb8
commit 673a6fc4b7
5 changed files with 43 additions and 0 deletions

BIN
fonts/icomoon.eot Executable file

Binary file not shown.

12
fonts/icomoon.svg Executable file
View file

@ -0,0 +1,12 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="icomoon" horiz-adv-x="512">
<font-face units-per-em="512" ascent="480" descent="-32" />
<missing-glyph horiz-adv-x="512" />
<glyph unicode="&#x20;" d="" horiz-adv-x="256" />
<glyph unicode="&#xe600;" d="M96 416l320-192-320-192z" />
<glyph unicode="&#xe601;" d="M64 416h160v-384h-160zM288 416h160v-384h-160z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 569 B

BIN
fonts/icomoon.ttf Executable file

Binary file not shown.

BIN
fonts/icomoon.woff Executable file

Binary file not shown.

31
styles/style.css Executable file
View file

@ -0,0 +1,31 @@
@font-face {
font-family: 'icomoon';
src:url('fonts/icomoon.eot?-l03f6i');
src:url('fonts/icomoon.eot?#iefix-l03f6i') format('embedded-opentype'),
url('fonts/icomoon.woff?-l03f6i') format('woff'),
url('fonts/icomoon.ttf?-l03f6i') format('truetype'),
url('fonts/icomoon.svg?-l03f6i#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
font-family: 'icomoon';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-play:before {
content: "\e600";
}
.icon-pause:before {
content: "\e601";
}