website: our own custom icon font set, created from http://icomoon.io/app

This commit is contained in:
Jon Atkins 2013-12-23 17:59:26 +00:00
parent 08b9b339de
commit e6daffddf8
11 changed files with 995 additions and 12 deletions

View File

@ -0,0 +1,5 @@
Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures.
You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects.
You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu > Manage Projects) to retrieve your icon selection.

View File

@ -0,0 +1,154 @@
body {
padding: 0;
margin: 0;
font-family: sans-serif;
font-size: 1em;
line-height: 1.5;
color: #555;
background: #fff;
}
h1 {
font-size: 1.5em;
font-weight: normal;
}
small {
font-size: .66666667em;
}
a {
color: #e74c3c;
text-decoration: none;
}
a:hover, a:focus {
box-shadow: 0 1px #e74c3c;
}
.bshadow0, input {
box-shadow: inset 0 -2px #e7e7e7;
}
input:hover {
box-shadow: inset 0 -2px #ccc;
}
input, fieldset {
font-size: 1em;
margin: 0;
padding: 0;
border: 0;
}
input {
color: inherit;
line-height: 1.5;
height: 1.5em;
padding: .25em 0;
}
input:focus {
outline: none;
box-shadow: inset 0 -2px #449fdb;
}
.glyph {
font-size: 16px;
width: 15em;
padding-bottom: 1em;
margin-right: 4em;
margin-bottom: 1em;
float: left;
overflow: hidden;
}
.liga {
width: 80%;
width: calc(100% - 2.5em);
}
.talign-right {
text-align: right;
}
.talign-center {
text-align: center;
}
.bgc1 {
background: #f1f1f1;
}
.fgc1 {
color: #999;
}
.fgc0 {
color: #000;
}
p {
margin-top: 1em;
margin-bottom: 1em;
}
.mvm {
margin-top: .75em;
margin-bottom: .75em;
}
.mtn {
margin-top: 0;
}
.mtl, .mal {
margin-top: 1.5em;
}
.mbl, .mal {
margin-bottom: 1.5em;
}
.mal, .mhl {
margin-left: 1.5em;
margin-right: 1.5em;
}
.mhmm {
margin-left: 1em;
margin-right: 1em;
}
.mls {
margin-left: .25em;
}
.ptl {
padding-top: 1.5em;
}
.pbs, .pvs {
padding-bottom: .25em;
}
.pvs, .pts {
padding-top: .25em;
}
.clearfix {
zoom: 1;
}
.unit {
float: left;
}
.unitRight {
float: right;
}
.size1of2 {
width: 50%;
}
.size1of1 {
width: 100%;
}
.clearfix:before, .clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.noLiga-true {
display: none;
}
.textbox0 {
width: 3em;
background: #f1f1f1;
padding: .25em .5em;
line-height: 1.5;
height: 1.5em;
}
#testDrive {
padding-top: 24px;
}
.fs0 {
font-size: 16px;
}
.fs1 {
font-size: 20px;
}
.fs2 {
font-size: 32px;
}

View File

@ -0,0 +1,30 @@
if (!('boxShadow' in document.body.style)) {
document.body.setAttribute('class', 'noBoxShadow');
}
document.body.addEventListener("click", function(e) {
var target = e.target;
if (target.tagName === "INPUT" &&
target.getAttribute('class').indexOf('liga') === -1) {
target.select();
}
});
(function() {
var fontSize = document.getElementById('fontSize'),
testDrive = document.getElementById('testDrive'),
testText = document.getElementById('testText');
function updateTest() {
testDrive.innerHTML = testText.value || String.fromCharCode(160);
if (window.icomoonLiga) {
window.icomoonLiga(testDrive);
}
}
function updateSize() {
testDrive.style.fontSize = fontSize.value + 'px';
}
fontSize.addEventListener('change', updateSize, false);
testText.addEventListener('input', updateTest, false);
testText.addEventListener('change', updateTest, false);
updateSize();
}());

View File

@ -0,0 +1,276 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>IcoMoon Demo</title>
<meta name="description" content="An Icon Font Generated By IcoMoon.io">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="demo-files/demo.css">
<link rel="stylesheet" href="style.css"></head>
<body>
<div class="bgc1 clearfix">
<h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> icomoon <small class="fgc1">(Glyphs:&nbsp;18)</small></h1>
</div>
<div class="clearfix mhl ptl">
<h1 class="mvm mtn bshadow fgc1">Grid Size: 20</h1>
<div class="glyph fs1">
<div class="clearfix bshadow0 pbs">
<span class="icon-house"></span><span class="mls"> icon-house</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e600" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe600;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs1">
<div class="clearfix bshadow0 pbs">
<span class="icon-newspaper"></span><span class="mls"> icon-newspaper</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e601" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe601;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs1">
<div class="clearfix bshadow0 pbs">
<span class="icon-help"></span><span class="mls"> icon-help</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e602" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe602;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs1">
<div class="clearfix bshadow0 pbs">
<span class="icon-screen"></span><span class="mls"> icon-screen</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e603" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe603;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs1">
<div class="clearfix bshadow0 pbs">
<span class="icon-mobile"></span><span class="mls"> icon-mobile</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e604" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe604;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs1">
<div class="clearfix bshadow0 pbs">
<span class="icon-tools"></span><span class="mls"> icon-tools</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e605" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe605;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs1">
<div class="clearfix bshadow0 pbs">
<span class="icon-cog"></span><span class="mls"> icon-cog</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e606" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe606;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs1">
<div class="clearfix bshadow0 pbs">
<span class="icon-info"></span><span class="mls"> icon-info</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e607" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe607;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs1">
<div class="clearfix bshadow0 pbs">
<span class="icon-warning"></span><span class="mls"> icon-warning</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e608" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe608;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs1">
<div class="clearfix bshadow0 pbs">
<span class="icon-arrow-right"></span><span class="mls"> icon-arrow-right</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e609" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe609;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs1">
<div class="clearfix bshadow0 pbs">
<span class="icon-arrow-right2"></span><span class="mls"> icon-arrow-right2</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e60a" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe60a;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
</div>
<div class="clearfix mhl ptl">
<h1 class="mvm mtn bshadow fgc1">Grid Size: 16</h1>
<div class="glyph fs2">
<div class="clearfix bshadow0 pbs">
<span class="icon-github"></span><span class="mls"> icon-github</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e60b" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe60b;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs2">
<div class="clearfix bshadow0 pbs">
<span class="icon-chrome"></span><span class="mls"> icon-chrome</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e60c" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe60c;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs2">
<div class="clearfix bshadow0 pbs">
<span class="icon-firefox"></span><span class="mls"> icon-firefox</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e60d" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe60d;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs2">
<div class="clearfix bshadow0 pbs">
<span class="icon-IE"></span><span class="mls"> icon-IE</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e60e" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe60e;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs2">
<div class="clearfix bshadow0 pbs">
<span class="icon-opera"></span><span class="mls"> icon-opera</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e60f" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe60f;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs2">
<div class="clearfix bshadow0 pbs">
<span class="icon-google-plus"></span><span class="mls"> icon-google-plus</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e610" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe610;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
<div class="glyph fs2">
<div class="clearfix bshadow0 pbs">
<span class="icon-twitter"></span><span class="mls"> icon-twitter</span>
</div>
<fieldset class="fs0 size1of1 clearfix">
<input type="text" readonly value="e611" class="unit size1of2" />
<input type="text" maxlength="1" readonly value="&#xe611;" class="unitRight size1of2 talign-right" />
</fieldset>
<div class="fs0 bshadow0 clearfix noLiga-true">
<span class="unit pvs fgc1">liga: </span>
<input type="text" readonly value="" class="liga unitRight" />
</div>
</div>
</div>
<!--[if gt IE 8]><!-->
<div class="mhl clearfix mbl">
<h1>Font Test Drive</h1>
<label>
Font Size: <input id="fontSize" type="number" class="textbox0 mbm"
min="8" value="48" />
px
</label>
<input id="testText" type="text" class="phl size1of1 mvl"
placeholder="Type some text to test..."/>
</label>
<div id="testDrive" class="icon-">&nbsp;
</div>
</div>
<!--<![endif]-->
<div class="bgc1 clearfix">
<p class="mhl">Generated by <a href="http://icomoon.io/app">IcoMoon</a></p>
</div>
<script src="demo-files/demo.js"></script>
</body>
</html>

Binary file not shown.

View File

@ -0,0 +1,28 @@
<?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="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" d="" horiz-adv-x="512" />
<glyph unicode="&#xe600;" d="M961.024 445.44l-410.829 411.187c-20.992 21.811-55.347 21.811-76.339 0l-410.88-411.187c-21.043-21.76-13.21-39.629 17.408-39.629h85.658v-315.802c0-22.784 0.973-41.421 42.189-41.421h199.424v316.826h208.64v-316.826h209.357c31.437 0 32.307 18.586 32.307 41.421v315.802h85.606c30.566 0 38.451 17.818 17.459 39.629z" />
<glyph unicode="&#xe601;" d="M819.2 921.6h-614.4c-56.32 0-102.4-46.080-102.4-102.4v-716.8c0-56.32 46.080-102.4 102.4-102.4h614.4c56.371 0 102.4 46.080 102.4 102.4v716.8c0 56.32-46.029 102.4-102.4 102.4zM819.2 102.4h-614.4v716.8h614.4v-716.8zM563.2 358.4h-256v-51.2h256v51.2zM716.8 563.2h-204.8v-51.2h204.8v51.2zM512 614.4h204.8v102.4h-204.8v-102.4zM460.8 716.8h-153.6v-204.8h153.6v204.8zM409.6 460.8h-102.4v-51.2h102.4v51.2zM460.8 409.6h256v51.2h-256v-51.2zM716.8 256h-409.6v-51.2h409.6v51.2zM614.4 307.2h102.4v51.2h-102.4v-51.2z" />
<glyph unicode="&#xe602;" d="M505.754 931.789c-260.147-3.482-468.224-217.19-464.742-477.338 3.482-259.994 217.19-468.122 477.338-464.64 260.045 3.482 468.173 217.19 464.64 477.338-3.43 260.045-217.139 468.122-477.235 464.64zM504.371 174.080h-2.611c-40.038 1.178-68.301 30.72-67.174 70.195 1.126 38.758 30.054 66.97 68.813 66.97l2.355-0.051c41.165-1.229 69.12-30.464 67.891-71.066-1.126-38.861-29.645-66.048-69.274-66.048zM672.87 508.518c-9.472-13.363-30.157-30.003-56.269-50.33l-28.774-19.866c-15.77-12.288-25.293-23.808-28.826-35.123-2.867-9.011-4.198-11.315-4.454-29.491l-0.051-4.659h-109.722l0.307 9.318c1.331 38.195 2.304 60.621 18.125 79.206 24.832 29.133 79.616 64.41 81.92 65.894 7.834 5.939 14.438 12.646 19.405 19.814 11.52 15.872 16.589 28.416 16.589 40.653 0 17.050-5.069 32.819-15.053 46.848-9.626 13.568-27.904 20.429-54.323 20.429-26.214 0-44.134-8.346-54.886-25.395-11.11-17.562-16.64-35.942-16.64-54.784v-4.71h-113.152l0.205 4.915c2.918 69.325 27.648 119.194 73.523 148.326 28.774 18.586 64.614 27.955 106.394 27.955 54.733 0 101.018-13.312 137.37-39.526 36.864-26.573 55.552-66.406 55.552-118.323 0-29.082-9.165-56.371-27.238-81.152z" />
<glyph unicode="&#xe603;" d="M921.6 911.36h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-563.2c0-56.32 45.158-111.462 100.403-122.522l223.846-44.749c0 0-192.666-68.25-68.25-68.25h512c124.416 0-68.25 68.25-68.25 68.25l223.846 44.749c55.194 11.059 100.403 66.202 100.403 122.522v563.2c0 56.32-46.080 102.4-102.4 102.4zM921.6 250.88h-819.2v568.32h819.2v-568.32z" />
<glyph unicode="&#xe604;" d="M710.502 972.8h-397.005c-57.498 0-104.499-47.002-104.499-104.499v-815.002c0-57.446 47.002-104.499 104.499-104.499h397.005c57.498 0 104.499 47.053 104.499 104.499v815.002c0 57.498-47.002 104.499-104.499 104.499zM512-9.421c-40.346 0-73.114 23.398-73.114 52.275s32.768 52.275 73.114 52.275c40.397 0 73.114-23.398 73.114-52.275s-32.717-52.275-73.114-52.275zM731.392 147.354h-438.835v689.613h438.835v-689.613z" />
<glyph unicode="&#xe605;" d="M160.461 620.032c47.821 37.12 87.45 11.571 140.339-49.664 5.99-6.861 13.978 1.178 18.483 5.12 4.506 3.994 74.342 66.765 77.722 69.683 3.43 3.021 7.526 8.653 2.099 14.95s-25.293 32-38.042 48.64c-92.57 121.088 253.235 203.213 200.090 204.493-26.982 0.717-135.475 1.946-151.654 0.256-65.69-6.963-148.173-68.352-189.696-96.922-54.272-37.325-74.598-58.982-77.926-62.003-15.36-13.466-2.458-44.39-30.31-68.813-29.44-25.805-47.77-6.298-64.819-21.248-8.499-7.475-32.102-25.139-38.912-31.13-6.758-5.939-7.987-16.026-1.075-24.115 0 0 64.666-71.475 70.144-77.773 5.427-6.298 20.019-11.622 29.082-3.635 9.062 7.936 32.307 28.365 36.25 31.846 3.994 3.43-2.56 44.186 18.227 60.314zM452.762 593.613c-6.144 7.117-13.722 7.27-20.326 1.434l-73.472-64.051c-5.734-5.12-6.502-14.541-1.331-20.48l424.653-483.226c9.882-11.469 27.085-12.646 38.502-2.714l49.715 41.574c11.315 9.933 12.493 27.341 2.611 38.758l-420.352 488.704zM1018.982 799.283c-3.789 25.293-16.896 19.968-23.706 9.216-6.707-10.701-36.915-56.371-49.306-77.005-12.288-20.582-42.496-60.979-99.021-21.094-58.778 41.574-38.298 70.605-28.109 90.112 10.291 19.61 41.882 74.496 46.49 81.408 4.506 6.912-0.819 26.982-18.995 18.586-18.278-8.448-129.178-52.531-144.589-115.712-15.718-64.358 13.21-121.805-43.52-178.893l-68.71-71.68 69.018-80.282 84.685 80.435c20.224 20.275 63.283 39.987 102.298 31.13 83.61-18.944 129.178 12.493 156.723 64.358 24.678 46.438 20.582 144.128 16.742 169.421zM140.288 99.789c-10.65-10.752-10.65-28.16 0-38.861l48.691-47.616c10.65-10.701 27.546-6.195 38.195 4.506l251.238 247.040-77.005 87.706-261.12-252.774z" />
<glyph unicode="&#xe606;" d="M859.392 460.8c0 53.658 33.024 96 82.688 125.082-9.011 29.901-20.787 58.624-35.379 85.606-55.808-14.592-100.915 7.27-138.803 45.158-37.99 37.939-49.613 83.098-35.021 138.803-26.982 14.592-55.603 26.522-85.606 35.43-29.082-49.715-81.664-82.739-135.27-82.739-53.606 0-106.138 33.024-135.27 82.739-30.003-8.909-58.624-20.838-85.606-35.379 14.541-55.757 2.97-100.915-34.97-138.854-37.939-37.888-83.098-59.75-138.803-45.21-14.592-26.931-26.47-55.654-35.43-85.555 49.715-29.082 82.739-71.424 82.739-125.082 0-53.606-33.024-106.189-82.739-135.322 8.96-29.952 20.838-58.624 35.43-85.606 55.757 14.592 100.864 2.97 138.803-34.97 37.939-37.939 49.51-83.046 34.97-138.803 26.982-14.592 55.654-26.522 85.606-35.43 29.133 49.766 81.664 82.739 135.27 82.739 53.606 0 106.24-33.024 135.322-82.739 30.003 8.96 58.624 20.838 85.606 35.43-14.592 55.757-3.021 100.864 35.021 138.803 37.888 37.888 82.995 59.75 138.803 45.21 14.592 26.982 26.419 55.654 35.379 85.606-49.715 29.133-82.739 71.475-82.739 125.082zM512 273.766c-103.27 0-186.982 83.763-186.982 187.034s83.712 187.034 186.982 187.034c103.322 0 187.034-83.763 187.034-187.034s-83.712-187.034-187.034-187.034z" />
<glyph unicode="&#xe607;" d="M505.702 931.789c-260.096-3.482-468.173-217.19-464.691-477.338 3.482-259.994 217.19-468.122 477.286-464.64 260.096 3.482 468.173 217.19 464.691 477.338-3.43 260.045-217.19 468.122-477.286 464.64zM557.926 774.81c47.872 0 62.003-27.75 62.003-59.546 0-39.68-31.795-76.39-86.016-76.39-45.363 0-66.918 22.835-65.638 60.518 0 31.795 26.624 75.418 89.651 75.418zM435.149 166.4c-32.717 0-56.678 19.866-33.792 107.213l37.53 154.829c6.502 24.832 7.578 34.765 0 34.765-9.779 0-52.275-17.152-77.414-34.048l-16.333 26.778c79.616 66.458 171.162 105.472 210.381 105.472 32.717 0 38.144-38.707 21.811-98.253l-43.008-162.816c-7.578-28.774-4.301-38.707 3.277-38.707 9.779 0 41.984 11.878 73.626 36.762l18.483-24.832c-77.363-77.363-161.792-107.162-194.56-107.162z" />
<glyph unicode="&#xe608;" d="M999.014 52.122l-456.090 800.307c-6.298 11.059-18.125 17.869-30.925 17.869s-24.576-6.81-30.925-17.869l-456.038-800.307c-6.195-10.854-6.093-24.115 0.256-34.867s18.022-17.357 30.618-17.357h912.128c12.493 0 24.218 6.605 30.618 17.357 6.349 10.752 6.451 24.013 0.358 34.867zM568.32 102.298h-112.64v102.4h112.64v-102.4zM568.32 281.498h-112.64v307.2h112.64v-307.2z" />
<glyph unicode="&#xe609;" d="M389.171 285.798c-13.722-13.875-13.722-36.301 0-50.125 13.67-13.875 35.891-13.875 49.613 0l196.096 200.038c13.722 13.875 13.722 36.301 0 50.125l-196.096 200.090c-13.722 13.875-35.891 13.875-49.613 0s-13.722-36.25-0.051-50.074l160.819-175.053-160.768-175.002z" />
<glyph unicode="&#xe60a;" d="M307.251 696.32l-0.051-471.040 409.6 235.52z" />
<glyph unicode="&#xe60b;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM816.056 143.944c-39.518-39.516-85.512-70.532-136.708-92.186-13.006-5.5-26.214-10.328-39.6-14.492v76.734c0 40.334-13.834 70-41.5 89 17.334 1.666 33.25 4 47.75 7s29.834 7.334 46 13 30.666 12.416 43.5 20.25 25.166 18 37 30.5 21.75 26.666 29.75 42.5 14.334 34.834 19 57 7 46.584 7 73.25c0 51.666-16.834 95.666-50.5 132 15.334 40 13.666 83.5-5 130.5l-12.5 1.5c-8.666 1-24.25-2.666-46.75-11s-47.75-22-75.75-41c-39.666 11-80.834 16.5-123.5 16.5-43 0-84-5.5-123-16.5-17.666 12-34.416 21.916-50.25 29.75-15.834 7.834-28.5 13.166-38 16s-18.334 4.584-26.5 5.25-13.416 0.834-15.75 0.5-4-0.666-5-1c-18.666-47.334-20.334-90.834-5-130.5-33.666-36.334-50.5-80.334-50.5-132 0-26.666 2.334-51.084 7-73.25s11-41.166 19-57 17.916-30 29.75-42.5 24.166-22.666 37-30.5 27.334-14.584 43.5-20.25 31.5-10 46-13 30.416-5.334 47.75-7c-27.334-18.666-41-48.334-41-89v-78.23c-15.098 4.494-29.98 9.804-44.6 15.988-51.194 21.654-97.188 52.67-136.706 92.186-39.516 39.518-70.534 85.512-92.186 136.708-22.398 52.958-33.756 109.262-33.756 167.348s11.358 114.39 33.758 167.35c21.654 51.194 52.67 97.188 92.186 136.706s85.512 70.534 136.706 92.186c52.96 22.4 109.264 33.758 167.35 33.758s114.39-11.358 167.35-33.758c51.196-21.654 97.19-52.67 136.708-92.186 39.516-39.516 70.532-85.512 92.186-136.706 22.398-52.96 33.756-109.264 33.756-167.35s-11.358-114.39-33.758-167.35c-21.654-51.194-52.67-97.19-92.186-136.706z" />
<glyph unicode="&#xe60c;" d="M258.278 513.458l-146.532 253.802c93.818 117.464 238.234 192.74 400.254 192.74 187.432 0 351.31-100.736 440.532-251h-417.77c-7.504 0.65-15.092 1-22.762 1-121.874 0-224.578-83.644-253.722-196.542zM695.306 635h293.46c22.74-57.93 35.234-121.004 35.234-187 0-280.826-226.1-508.804-506.186-511.926l209.394 362.678c29.48 42.378 46.792 93.826 46.792 149.248 0 73.17-30.164 139.42-78.694 187zM326 448c0 102.56 83.44 186 186 186s186-83.44 186-186c0-102.56-83.44-186-186-186-102.56 0-186 83.44-186 186zM582.182 195.558l-146.578-253.878c-246.532 36.884-435.604 249.516-435.604 506.32 0 91.218 23.884 176.846 65.696 251.024l209.030-362.054c41.868-89.112 132.476-150.97 237.274-150.97 24.3 0 47.836 3.34 70.182 9.558z" />
<glyph unicode="&#xe60d;" d="M1022.526 625.86l-11.86-76.080c0 0-16.954 140.856-37.732 193.514-31.846 80.688-46.014 80.040-46.108 79.922 21.33-54.204 17.462-83.324 17.462-83.324s-37.792 102.998-137.712 135.768c-110.686 36.282-170.57 26.364-177.488 24.486-1.050 0.008-2.064 0.010-3.030 0.010 0.818-0.062 1.612-0.146 2.426-0.212-0.034-0.020-0.090-0.042-0.082-0.052 0.45-0.548 122.306-21.302 143.916-50.996 0 0-51.76 0-103.272-14.842-2.328-0.666 189.524-23.964 228.746-215.674 0 0-21.030 43.876-47.040 51.328 17.106-52.036 12.714-150.776-3.576-199.85-2.096-6.312-4.24 27.282-36.328 41.75 10.28-73.646-0.616-190.456-51.708-222.632-3.982-2.504 32.030 115.31 7.242 69.762-142.708-218.802-311.404-100.972-387.248-49.11 38.866-8.462 112.654 1.318 145.314 25.612 0.042 0.030 0.078 0.056 0.118 0.086 35.468 24.252 56.472 41.964 75.334 37.772 18.874-4.214 31.438 14.726 16.78 31.53-14.676 16.838-50.314 39.978-98.524 27.366-34-8.904-76.134-46.522-140.448-8.432-49.364 29.25-54.012 53.546-54.45 70.376 1.218 5.966 2.754 11.536 4.576 16.624 5.682 15.87 22.912 20.658 32.494 24.438 16.256-2.792 30.262-7.862 44.968-15.406 0.19 4.894 0.252 11.39-0.018 18.76 1.41 2.802 0.538 11.252-1.722 21.58-1.302 10.308-3.42 20.974-6.752 30.692 0.012 0.002 0.020 0.010 0.030 0.014 0.056 0.018 0.108 0.040 0.156 0.070 0.078 0.044 0.146 0.112 0.208 0.19 0.012 0.020 0.030 0.034 0.044 0.052 0.082 0.124 0.154 0.272 0.198 0.466 1.020 4.618 12.022 13.524 25.718 23.1 12.272 8.58 26.702 17.696 38.068 24.752 10.060 6.248 17.72 10.882 19.346 12.098 0.618 0.466 1.358 1.012 2.164 1.636 0.15 0.116 0.3 0.232 0.454 0.354 0.094 0.074 0.19 0.148 0.286 0.226 5.41 4.308 13.484 12.448 15.178 29.578 0.004 0.042 0.010 0.080 0.012 0.122 0.050 0.504 0.092 1.014 0.13 1.534 0.028 0.362 0.050 0.726 0.072 1.096 0.014 0.284 0.032 0.566 0.044 0.856 0.030 0.674 0.050 1.364 0.060 2.064 0 0.040 0.002 0.076 0.004 0.116 0.022 1.658-0.006 3.386-0.104 5.202-0.054 1.014-0.126 1.93-0.298 2.762-0.008 0.044-0.018 0.092-0.028 0.136-0.018 0.082-0.036 0.164-0.058 0.244-0.036 0.146-0.076 0.292-0.122 0.43-0.006 0.018-0.010 0.032-0.016 0.046-0.052 0.16-0.112 0.314-0.174 0.464-0.004 0.006-0.004 0.010-0.006 0.016-1.754 4.108-8.32 5.658-35.442 6.118-0.026 0.002-0.050 0.002-0.076 0.002v0c-11.066 0.188-25.538 0.194-44.502 0.118-33.25-0.134-51.628 32.504-57.494 45.132 8.040 44.46 31.276 76.142 69.45 97.626 0.722 0.406 0.58 0.742-0.274 0.978 7.464 4.514-90.246 0.124-135.186-57.036-39.888 9.914-74.654 9.246-104.616 2.214-5.754 0.162-12.924 0.88-21.434 2.652-19.924 18.056-48.448 51.402-49.976 91.208 0 0-0.092-0.072-0.252-0.204-0.020 0.382-0.056 0.76-0.072 1.142 0 0-60.716-46.664-51.628-173.882-0.022-2.036-0.064-3.986-0.12-5.874-16.432-22.288-24.586-41.020-25.192-45.156-14.56-29.644-29.334-74.254-41.356-141.98 0 0 8.408 26.666 25.284 56.866-12.412-38.022-22.164-97.156-16.436-185.856 0 0 1.514 19.666 6.874 47.994 4.186-55.010 22.518-122.924 68.858-202.788 88.948-153.32 225.67-230.74 376.792-242.616 26.836-2.212 54.050-2.264 81.424-0.186 2.516 0.178 5.032 0.364 7.55 0.574 30.964 2.174 62.134 6.852 93.238 14.366 425.172 102.798 378.942 616.198 378.942 616.198z" />
<glyph unicode="&#xe60e;" d="M734.202 331.17h236.050c1.82 16.37 2.548 33.098 2.548 50.196 0 80.224-21.534 155.468-59.124 220.266 38.88 103.308 37.492 190.988-14.556 243.39-49.496 49.28-182.29 41.28-332.412-25.198-11.104 0.84-22.318 1.272-33.638 1.272-206.048 0-378.926-141.794-426.708-332.85 64.638 82.754 132.638 142.754 223.478 186.448-8.26-7.74-56.454-55.652-64.56-63.764-239.548-239.478-315.090-552.306-233.806-633.604 61.786-61.774 173.758-51.342 302.376 11.648 59.806-30.458 127.5-47.63 199.218-47.63 193.134 0 356.804 124.316 416.090 297.448h-237.868c-32.734-60.382-96.748-101.48-170.218-101.48-73.468 0-137.484 41.098-170.216 101.48-14.55 27.274-22.914 58.554-22.914 91.656v0.722h386.26zM348.302 447.196c5.456 97.11 86.2 174.584 184.766 174.584s179.312-77.472 184.766-174.584h-369.532zM896.966 796.192c33.526-33.88 32.688-96.214 4.012-174.022-49.136 74.908-120.518 133.936-204.792 167.64 90.106 38.638 163.406 43.756 200.78 6.382zM93.482-7.256c-42.782 42.796-29.884 132.618 25.23 240.832 34.308-96.27 101.156-177.090 187.336-229.154-95.43-43.318-173.536-50.674-212.566-11.678z" />
<glyph unicode="&#xe60f;" d="M510.046 960c-279.724 0-480.748-202.896-480.748-507.224 0-270.818 195.502-516.776 480.784-516.776 288.078 0 484.62 245.886 484.62 516.776 0 306.76-207.446 507.224-484.656 507.224zM688.358 461.458c-0.068-169.352-9.098-410.482-178.276-410.482v-0.034c-166.784 0-173.432 241.266-173.432 410.308 0 198.38 18.56 388.568 173.432 388.568 154.874 0 178.276-192.584 178.276-388.36z" />
<glyph unicode="&#xe610;" d="M0.806 90.336c-0.244 2.532-0.452 5.070-0.584 7.63 0.13-2.56 0.34-5.098 0.584-7.63zM235.908 394.852c92.010-2.738 153.734 92.698 137.862 213.198-15.894 120.48-103.396 217.168-195.408 219.922-92.026 2.73-153.74-89.482-137.852-210 15.882-120.468 103.352-220.374 195.398-223.12zM1024 704v85.31c0 93.88-76.782 170.69-170.658 170.69h-682.656c-92.276 0-168.012-74.232-170.564-165.926 58.362 51.386 139.324 94.316 222.874 94.316 89.304 0 357.244 0 357.244 0l-79.948-67.618h-113.268c75.13-28.804 115.156-116.124 115.156-205.722 0-75.248-41.81-139.954-100.888-185.968-57.644-44.902-68.572-63.708-68.572-101.878 0-32.578 61.746-88 94.032-110.788 94.382-66.538 124.916-128.312 124.916-231.456 0-16.428-2.042-32.83-6.066-48.96h307.742c93.874 0 170.656 76.75 170.656 170.69v533.308h-192v-191.998h-64v192h-191.998v64h191.998v192h64v-192h192zM185.886 194.064c21.614 0 41.422 0.59 61.936 0.59-27.146 26.334-48.626 58.6-48.626 98.38 0 23.608 7.564 46.336 18.134 66.52-10.782-0.77-21.79-0.994-33.126-0.994-74.356 0-137.506 24.076-184.204 63.854v-67.242l0.006-201.73c53.44 25.374 116.888 40.622 185.88 40.622zM3.42 72.742c-1.112 5.458-1.966 11.006-2.542 16.634 0.574-5.628 1.43-11.176 2.542-16.634zM455.45 7.154c-15.058 58.806-68.454 87.964-142.888 139.568-27.072 8.732-56.894 13.874-88.894 14.208-89.618 0.964-173.108-34.942-220.216-88.372 15.92-77.706 85.034-136.558 167.234-136.558h286.444c1.816 11.128 2.696 22.632 2.696 34.432 0 12.534-1.534 24.792-4.376 36.722z" />
<glyph unicode="&#xe611;" d="M1024 765.582c-37.676-16.708-78.164-28.002-120.66-33.080 43.372 26 76.686 67.17 92.372 116.23-40.596-24.078-85.556-41.56-133.41-50.98-38.32 40.83-92.922 66.34-153.346 66.34-116.022 0-210.088-94.058-210.088-210.078 0-16.466 1.858-32.5 5.44-47.878-174.6 8.764-329.402 92.4-433.018 219.506-18.084-31.028-28.446-67.116-28.446-105.618 0-72.888 37.088-137.192 93.46-174.866-34.438 1.092-66.832 10.542-95.154 26.278-0.020-0.876-0.020-1.756-0.020-2.642 0-101.788 72.418-186.696 168.522-206-17.626-4.8-36.188-7.372-55.348-7.372-13.538 0-26.698 1.32-39.528 3.772 26.736-83.46 104.32-144.206 196.252-145.896-71.9-56.35-162.486-89.934-260.916-89.934-16.958 0-33.68 0.994-50.116 2.94 92.972-59.61 203.402-94.394 322.042-94.394 386.422 0 597.736 320.124 597.736 597.744 0 9.108-0.206 18.168-0.61 27.18 41.056 29.62 76.672 66.62 104.836 108.748z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,409 @@
{
"IcoMoonType": "selection",
"icons": [
{
"icon": {
"paths": [
"M961.024 527.36l-410.829-411.187c-20.992-21.811-55.347-21.811-76.339 0l-410.88 411.187c-21.043 21.76-13.21 39.629 17.408 39.629h85.658v315.802c0 22.784 0.973 41.421 42.189 41.421h199.424v-316.826h208.64v316.826h209.357c31.437 0 32.307-18.586 32.307-41.421v-315.802h85.606c30.566 0 38.451-17.818 17.459-39.629z"
],
"tags": [
"house",
"home",
"building"
],
"grid": 20
},
"properties": {
"order": 1,
"id": 35,
"prevSize": 20,
"code": 58880,
"name": "house",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M819.2 51.2h-614.4c-56.32 0-102.4 46.080-102.4 102.4v716.8c0 56.32 46.080 102.4 102.4 102.4h614.4c56.371 0 102.4-46.080 102.4-102.4v-716.8c0-56.32-46.029-102.4-102.4-102.4zM819.2 870.4h-614.4v-716.8h614.4v716.8zM563.2 614.4h-256v51.2h256v-51.2zM716.8 409.6h-204.8v51.2h204.8v-51.2zM512 358.4h204.8v-102.4h-204.8v102.4zM460.8 256h-153.6v204.8h153.6v-204.8zM409.6 512h-102.4v51.2h102.4v-51.2zM460.8 563.2h256v-51.2h-256v51.2zM716.8 716.8h-409.6v51.2h409.6v-51.2zM614.4 665.6h102.4v-51.2h-102.4v51.2z"
],
"tags": [
"newspaper",
"document",
"file"
],
"grid": 20
},
"properties": {
"order": 2,
"id": 57,
"prevSize": 20,
"code": 58881,
"name": "newspaper",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M505.754 41.011c-260.147 3.482-468.224 217.19-464.742 477.338 3.482 259.994 217.19 468.122 477.338 464.64 260.045-3.482 468.173-217.19 464.64-477.338-3.43-260.045-217.139-468.122-477.235-464.64zM504.371 798.72h-2.611c-40.038-1.178-68.301-30.72-67.174-70.195 1.126-38.758 30.054-66.97 68.813-66.97l2.355 0.051c41.165 1.229 69.12 30.464 67.891 71.066-1.126 38.861-29.645 66.048-69.274 66.048zM672.87 464.282c-9.472 13.363-30.157 30.003-56.269 50.33l-28.774 19.866c-15.77 12.288-25.293 23.808-28.826 35.123-2.867 9.011-4.198 11.315-4.454 29.491l-0.051 4.659-109.722 0 0.307-9.318c1.331-38.195 2.304-60.621 18.125-79.206 24.832-29.133 79.616-64.41 81.92-65.894 7.834-5.939 14.438-12.646 19.405-19.814 11.52-15.872 16.589-28.416 16.589-40.653 0-17.050-5.069-32.819-15.053-46.848-9.626-13.568-27.904-20.429-54.323-20.429-26.214 0-44.134 8.346-54.886 25.395-11.11 17.562-16.64 35.942-16.64 54.784v4.71h-113.152l0.205-4.915c2.918-69.325 27.648-119.194 73.523-148.326 28.774-18.586 64.614-27.955 106.394-27.955 54.733 0 101.018 13.312 137.37 39.526 36.864 26.573 55.552 66.406 55.552 118.323 0 29.082-9.165 56.371-27.238 81.152z"
],
"tags": [
"help",
"question"
],
"grid": 20
},
"properties": {
"order": 3,
"id": 135,
"prevSize": 20,
"code": 58882,
"name": "help",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M921.6 61.44h-819.2c-56.32 0-102.4 46.080-102.4 102.4v563.2c0 56.32 45.158 111.462 100.403 122.522l223.846 44.749c0 0-192.666 68.25-68.25 68.25h512c124.416 0-68.25-68.25-68.25-68.25l223.846-44.749c55.194-11.059 100.403-66.202 100.403-122.522v-563.2c0-56.32-46.080-102.4-102.4-102.4zM921.6 721.92h-819.2v-568.32h819.2v568.32z"
],
"tags": [
"screen",
"desktop",
"computer",
"monitor",
"pc"
],
"grid": 20
},
"properties": {
"order": 4,
"id": 97,
"prevSize": 20,
"code": 58883,
"name": "screen",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M710.502 0h-397.005c-57.498 0-104.499 47.002-104.499 104.499v815.002c0 57.446 47.002 104.499 104.499 104.499h397.005c57.498 0 104.499-47.053 104.499-104.499l0-815.002c0-57.498-47.002-104.499-104.499-104.499zM512 982.221c-40.346 0-73.114-23.398-73.114-52.275s32.768-52.275 73.114-52.275c40.397 0 73.114 23.398 73.114 52.275s-32.717 52.275-73.114 52.275zM731.392 825.446h-438.835v-689.613h438.835v689.613z"
],
"tags": [
"mobile",
"phone",
"contact"
],
"grid": 20
},
"properties": {
"order": 5,
"id": 2,
"prevSize": 20,
"code": 58884,
"name": "mobile",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M160.461 352.768c47.821-37.12 87.45-11.571 140.339 49.664 5.99 6.861 13.978-1.178 18.483-5.12 4.506-3.994 74.342-66.765 77.722-69.683 3.43-3.021 7.526-8.653 2.099-14.95s-25.293-32-38.042-48.64c-92.57-121.088 253.235-203.213 200.090-204.493-26.982-0.717-135.475-1.946-151.654-0.256-65.69 6.963-148.173 68.352-189.696 96.922-54.272 37.325-74.598 58.982-77.926 62.003-15.36 13.466-2.458 44.39-30.31 68.813-29.44 25.805-47.77 6.298-64.819 21.248-8.499 7.475-32.102 25.139-38.912 31.13-6.758 5.939-7.987 16.026-1.075 24.115 0 0 64.666 71.475 70.144 77.773 5.427 6.298 20.019 11.622 29.082 3.635 9.062-7.936 32.307-28.365 36.25-31.846 3.994-3.43-2.56-44.186 18.227-60.314zM452.762 379.187c-6.144-7.117-13.722-7.27-20.326-1.434l-73.472 64.051c-5.734 5.12-6.502 14.541-1.331 20.48l424.653 483.226c9.882 11.469 27.085 12.646 38.502 2.714l49.715-41.574c11.315-9.933 12.493-27.341 2.611-38.758l-420.352-488.704zM1018.982 173.517c-3.789-25.293-16.896-19.968-23.706-9.216-6.707 10.701-36.915 56.371-49.306 77.005-12.288 20.582-42.496 60.979-99.021 21.094-58.778-41.574-38.298-70.605-28.109-90.112 10.291-19.61 41.882-74.496 46.49-81.408 4.506-6.912-0.819-26.982-18.995-18.586-18.278 8.448-129.178 52.531-144.589 115.712-15.718 64.358 13.21 121.805-43.52 178.893l-68.71 71.68 69.018 80.282 84.685-80.435c20.224-20.275 63.283-39.987 102.298-31.13 83.61 18.944 129.178-12.493 156.723-64.358 24.678-46.438 20.582-144.128 16.742-169.421zM140.288 873.011c-10.65 10.752-10.65 28.16 0 38.861l48.691 47.616c10.65 10.701 27.546 6.195 38.195-4.506l251.238-247.040-77.005-87.706-261.12 252.774z"
],
"tags": [
"tools",
"hammer",
"generate",
"fix",
"settings",
"wrench",
"build",
"factory"
],
"grid": 20
},
"properties": {
"order": 6,
"id": 44,
"prevSize": 20,
"code": 58885,
"name": "tools",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M859.392 512c0-53.658 33.024-96 82.688-125.082-9.011-29.901-20.787-58.624-35.379-85.606-55.808 14.592-100.915-7.27-138.803-45.158-37.99-37.939-49.613-83.098-35.021-138.803-26.982-14.592-55.603-26.522-85.606-35.43-29.082 49.715-81.664 82.739-135.27 82.739-53.606 0-106.138-33.024-135.27-82.739-30.003 8.909-58.624 20.838-85.606 35.379 14.541 55.757 2.97 100.915-34.97 138.854-37.939 37.888-83.098 59.75-138.803 45.21-14.592 26.931-26.47 55.654-35.43 85.555 49.715 29.082 82.739 71.424 82.739 125.082 0 53.606-33.024 106.189-82.739 135.322 8.96 29.952 20.838 58.624 35.43 85.606 55.757-14.592 100.864-2.97 138.803 34.97 37.939 37.939 49.51 83.046 34.97 138.803 26.982 14.592 55.654 26.522 85.606 35.43 29.133-49.766 81.664-82.739 135.27-82.739 53.606 0 106.24 33.024 135.322 82.739 30.003-8.96 58.624-20.838 85.606-35.43-14.592-55.757-3.021-100.864 35.021-138.803 37.888-37.888 82.995-59.75 138.803-45.21 14.592-26.982 26.419-55.654 35.379-85.606-49.715-29.133-82.739-71.475-82.739-125.082zM512 699.034c-103.27 0-186.982-83.763-186.982-187.034s83.712-187.034 186.982-187.034c103.322 0 187.034 83.763 187.034 187.034s-83.712 187.034-187.034 187.034z"
],
"tags": [
"cog",
"settings",
"preferences",
"options"
],
"grid": 20
},
"properties": {
"order": 7,
"id": 43,
"prevSize": 20,
"code": 58886,
"name": "cog",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M505.702 41.011c-260.096 3.482-468.173 217.19-464.691 477.338 3.482 259.994 217.19 468.122 477.286 464.64 260.096-3.482 468.173-217.19 464.691-477.338-3.43-260.045-217.19-468.122-477.286-464.64zM557.926 197.99c47.872 0 62.003 27.75 62.003 59.546 0 39.68-31.795 76.39-86.016 76.39-45.363 0-66.918-22.835-65.638-60.518 0-31.795 26.624-75.418 89.651-75.418zM435.149 806.4c-32.717 0-56.678-19.866-33.792-107.213l37.53-154.829c6.502-24.832 7.578-34.765 0-34.765-9.779 0-52.275 17.152-77.414 34.048l-16.333-26.778c79.616-66.458 171.162-105.472 210.381-105.472 32.717 0 38.144 38.707 21.811 98.253l-43.008 162.816c-7.578 28.774-4.301 38.707 3.277 38.707 9.779 0 41.984-11.878 73.626-36.762l18.483 24.832c-77.363 77.363-161.792 107.162-194.56 107.162z"
],
"tags": [
"info",
"about"
],
"grid": 20
},
"properties": {
"order": 8,
"id": 133,
"prevSize": 20,
"code": 58887,
"name": "info",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M999.014 920.678l-456.090-800.307c-6.298-11.059-18.125-17.869-30.925-17.869-12.8 0-24.576 6.81-30.925 17.869l-456.038 800.307c-6.195 10.854-6.093 24.115 0.256 34.867s18.022 17.357 30.618 17.357h912.128c12.493 0 24.218-6.605 30.618-17.357 6.349-10.752 6.451-24.013 0.358-34.867zM568.32 870.502h-112.64v-102.4h112.64v102.4zM568.32 691.302h-112.64v-307.2h112.64v307.2z"
],
"tags": [
"warning",
"alert",
"exclamation"
],
"grid": 20
},
"properties": {
"order": 9,
"id": 136,
"prevSize": 20,
"code": 58888,
"name": "warning",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM816.056 816.056c-39.518 39.516-85.512 70.532-136.708 92.186-13.006 5.5-26.214 10.328-39.6 14.492v-76.734c0-40.334-13.834-70-41.5-89 17.334-1.666 33.25-4 47.75-7s29.834-7.334 46-13 30.666-12.416 43.5-20.25 25.166-18 37-30.5 21.75-26.666 29.75-42.5 14.334-34.834 19-57 7-46.584 7-73.25c0-51.666-16.834-95.666-50.5-132 15.334-40 13.666-83.5-5-130.5l-12.5-1.5c-8.666-1-24.25 2.666-46.75 11s-47.75 22-75.75 41c-39.666-11-80.834-16.5-123.5-16.5-43 0-84 5.5-123 16.5-17.666-12-34.416-21.916-50.25-29.75-15.834-7.834-28.5-13.166-38-16s-18.334-4.584-26.5-5.25-13.416-0.834-15.75-0.5-4 0.666-5 1c-18.666 47.334-20.334 90.834-5 130.5-33.666 36.334-50.5 80.334-50.5 132 0 26.666 2.334 51.084 7 73.25s11 41.166 19 57 17.916 30 29.75 42.5 24.166 22.666 37 30.5 27.334 14.584 43.5 20.25 31.5 10 46 13 30.416 5.334 47.75 7c-27.334 18.666-41 48.334-41 89v78.23c-15.098-4.494-29.98-9.804-44.6-15.988-51.194-21.654-97.188-52.67-136.706-92.186-39.516-39.518-70.534-85.512-92.186-136.708-22.398-52.958-33.756-109.262-33.756-167.348s11.358-114.39 33.758-167.35c21.654-51.194 52.67-97.188 92.186-136.706s85.512-70.534 136.706-92.186c52.96-22.4 109.264-33.758 167.35-33.758s114.39 11.358 167.35 33.758c51.196 21.654 97.19 52.67 136.708 92.186 39.516 39.516 70.532 85.512 92.186 136.706 22.398 52.96 33.756 109.264 33.756 167.35s-11.358 114.39-33.758 167.35c-21.654 51.194-52.67 97.19-92.186 136.706z"
],
"tags": [
"github",
"octacat",
"social"
],
"grid": 16
},
"properties": {
"order": 10,
"id": 395,
"prevSize": 32,
"code": 58891,
"name": "github",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M258.278 446.542l-146.532-253.802c93.818-117.464 238.234-192.74 400.254-192.74 187.432 0 351.31 100.736 440.532 251h-417.77c-7.504-0.65-15.092-1-22.762-1-121.874 0-224.578 83.644-253.722 196.542zM695.306 325h293.46c22.74 57.93 35.234 121.004 35.234 187 0 280.826-226.1 508.804-506.186 511.926l209.394-362.678c29.48-42.378 46.792-93.826 46.792-149.248 0-73.17-30.164-139.42-78.694-187zM326 512c0-102.56 83.44-186 186-186s186 83.44 186 186c0 102.56-83.44 186-186 186-102.56 0-186-83.44-186-186zM582.182 764.442l-146.578 253.878c-246.532-36.884-435.604-249.516-435.604-506.32 0-91.218 23.884-176.846 65.696-251.024l209.030 362.054c41.868 89.112 132.476 150.97 237.274 150.97 24.3 0 47.836-3.34 70.182-9.558z"
],
"tags": [
"chrome",
"browser",
"internet"
],
"grid": 16
},
"properties": {
"order": 11,
"id": 446,
"prevSize": 32,
"code": 58892,
"name": "chrome",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M1022.526 334.14l-11.86 76.080c0 0-16.954-140.856-37.732-193.514-31.846-80.688-46.014-80.040-46.108-79.922 21.33 54.204 17.462 83.324 17.462 83.324s-37.792-102.998-137.712-135.768c-110.686-36.282-170.57-26.364-177.488-24.486-1.050-0.008-2.064-0.010-3.030-0.010 0.818 0.062 1.612 0.146 2.426 0.212-0.034 0.020-0.090 0.042-0.082 0.052 0.45 0.548 122.306 21.302 143.916 50.996 0 0-51.76 0-103.272 14.842-2.328 0.666 189.524 23.964 228.746 215.674 0 0-21.030-43.876-47.040-51.328 17.106 52.036 12.714 150.776-3.576 199.85-2.096 6.312-4.24-27.282-36.328-41.75 10.28 73.646-0.616 190.456-51.708 222.632-3.982 2.504 32.030-115.31 7.242-69.762-142.708 218.802-311.404 100.972-387.248 49.11 38.866 8.462 112.654-1.318 145.314-25.612 0.042-0.030 0.078-0.056 0.118-0.086 35.468-24.252 56.472-41.964 75.334-37.772 18.874 4.214 31.438-14.726 16.78-31.53-14.676-16.838-50.314-39.978-98.524-27.366-34 8.904-76.134 46.522-140.448 8.432-49.364-29.25-54.012-53.546-54.45-70.376 1.218-5.966 2.754-11.536 4.576-16.624 5.682-15.87 22.912-20.658 32.494-24.438 16.256 2.792 30.262 7.862 44.968 15.406 0.19-4.894 0.252-11.39-0.018-18.76 1.41-2.802 0.538-11.252-1.722-21.58-1.302-10.308-3.42-20.974-6.752-30.692 0.012-0.002 0.020-0.010 0.030-0.014 0.056-0.018 0.108-0.040 0.156-0.070 0.078-0.044 0.146-0.112 0.208-0.19 0.012-0.020 0.030-0.034 0.044-0.052 0.082-0.124 0.154-0.272 0.198-0.466 1.020-4.618 12.022-13.524 25.718-23.1 12.272-8.58 26.702-17.696 38.068-24.752 10.060-6.248 17.72-10.882 19.346-12.098 0.618-0.466 1.358-1.012 2.164-1.636 0.15-0.116 0.3-0.232 0.454-0.354 0.094-0.074 0.19-0.148 0.286-0.226 5.41-4.308 13.484-12.448 15.178-29.578 0.004-0.042 0.010-0.080 0.012-0.122 0.050-0.504 0.092-1.014 0.13-1.534 0.028-0.362 0.050-0.726 0.072-1.096 0.014-0.284 0.032-0.566 0.044-0.856 0.030-0.674 0.050-1.364 0.060-2.064 0-0.040 0.002-0.076 0.004-0.116 0.022-1.658-0.006-3.386-0.104-5.202-0.054-1.014-0.126-1.93-0.298-2.762-0.008-0.044-0.018-0.092-0.028-0.136-0.018-0.082-0.036-0.164-0.058-0.244-0.036-0.146-0.076-0.292-0.122-0.43-0.006-0.018-0.010-0.032-0.016-0.046-0.052-0.16-0.112-0.314-0.174-0.464-0.004-0.006-0.004-0.010-0.006-0.016-1.754-4.108-8.32-5.658-35.442-6.118-0.026-0.002-0.050-0.002-0.076-0.002v0c-11.066-0.188-25.538-0.194-44.502-0.118-33.25 0.134-51.628-32.504-57.494-45.132 8.040-44.46 31.276-76.142 69.45-97.626 0.722-0.406 0.58-0.742-0.274-0.978 7.464-4.514-90.246-0.124-135.186 57.036-39.888-9.914-74.654-9.246-104.616-2.214-5.754-0.162-12.924-0.88-21.434-2.652-19.924-18.056-48.448-51.402-49.976-91.208 0 0-0.092 0.072-0.252 0.204-0.020-0.382-0.056-0.76-0.072-1.142 0 0-60.716 46.664-51.628 173.882-0.022 2.036-0.064 3.986-0.12 5.874-16.432 22.288-24.586 41.020-25.192 45.156-14.56 29.644-29.334 74.254-41.356 141.98 0 0 8.408-26.666 25.284-56.866-12.412 38.022-22.164 97.156-16.436 185.856 0 0 1.514-19.666 6.874-47.994 4.186 55.010 22.518 122.924 68.858 202.788 88.948 153.32 225.67 230.74 376.792 242.616 26.836 2.212 54.050 2.264 81.424 0.186 2.516-0.178 5.032-0.364 7.55-0.574 30.964-2.174 62.134-6.852 93.238-14.366 425.172-102.798 378.942-616.198 378.942-616.198z"
],
"tags": [
"firefox",
"browser",
"internet"
],
"grid": 16
},
"properties": {
"order": 12,
"id": 447,
"prevSize": 32,
"code": 58893,
"name": "firefox",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M734.202 628.83h236.050c1.82-16.37 2.548-33.098 2.548-50.196 0-80.224-21.534-155.468-59.124-220.266 38.88-103.308 37.492-190.988-14.556-243.39-49.496-49.28-182.29-41.28-332.412 25.198-11.104-0.84-22.318-1.272-33.638-1.272-206.048 0-378.926 141.794-426.708 332.85 64.638-82.754 132.638-142.754 223.478-186.448-8.26 7.74-56.454 55.652-64.56 63.764-239.548 239.478-315.090 552.306-233.806 633.604 61.786 61.774 173.758 51.342 302.376-11.648 59.806 30.458 127.5 47.63 199.218 47.63 193.134 0 356.804-124.316 416.090-297.448l-237.868-0c-32.734 60.382-96.748 101.48-170.218 101.48-73.468 0-137.484-41.098-170.216-101.48-14.55-27.274-22.914-58.554-22.914-91.656v-0.722h386.26zM348.302 512.804c5.456-97.11 86.2-174.584 184.766-174.584s179.312 77.472 184.766 174.584l-369.532-0zM896.966 163.808c33.526 33.88 32.688 96.214 4.012 174.022-49.136-74.908-120.518-133.936-204.792-167.64 90.106-38.638 163.406-43.756 200.78-6.382zM93.482 967.256c-42.782-42.796-29.884-132.618 25.23-240.832 34.308 96.27 101.156 177.090 187.336 229.154-95.43 43.318-173.536 50.674-212.566 11.678z"
],
"tags": [
"IE",
"browser",
"internet explorer"
],
"grid": 16
},
"properties": {
"order": 13,
"id": 448,
"prevSize": 32,
"code": 58894,
"name": "IE",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M510.046 0c-279.724 0-480.748 202.896-480.748 507.224 0 270.818 195.502 516.776 480.784 516.776 288.078 0 484.62-245.886 484.62-516.776 0-306.76-207.446-507.224-484.656-507.224zM688.358 498.542c-0.068 169.352-9.098 410.482-178.276 410.482v0.034c-166.784 0-173.432-241.266-173.432-410.308 0-198.38 18.56-388.568 173.432-388.568 154.874 0 178.276 192.584 178.276 388.36z"
],
"tags": [
"opera",
"browser",
"internet"
],
"grid": 16
},
"properties": {
"order": 14,
"id": 449,
"prevSize": 32,
"code": 58895,
"name": "opera",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M0.806 869.664c-0.244-2.532-0.452-5.070-0.584-7.63 0.13 2.56 0.34 5.098 0.584 7.63zM235.908 565.148c92.010 2.738 153.734-92.698 137.862-213.198-15.894-120.48-103.396-217.168-195.408-219.922-92.026-2.73-153.74 89.482-137.852 210 15.882 120.468 103.352 220.374 195.398 223.12zM1024 256v-85.31c0-93.88-76.782-170.69-170.658-170.69h-682.656c-92.276 0-168.012 74.232-170.564 165.926 58.362-51.386 139.324-94.316 222.874-94.316 89.304 0 357.244 0 357.244 0l-79.948 67.618h-113.268c75.13 28.804 115.156 116.124 115.156 205.722 0 75.248-41.81 139.954-100.888 185.968-57.644 44.902-68.572 63.708-68.572 101.878 0 32.578 61.746 88 94.032 110.788 94.382 66.538 124.916 128.312 124.916 231.456 0 16.428-2.042 32.83-6.066 48.96h307.742c93.874 0 170.656-76.75 170.656-170.69v-533.308h-192v191.998h-64v-192h-191.998v-64h191.998v-192h64v192h192zM185.886 765.936c21.614 0 41.422-0.59 61.936-0.59-27.146-26.334-48.626-58.6-48.626-98.38 0-23.608 7.564-46.336 18.134-66.52-10.782 0.77-21.79 0.994-33.126 0.994-74.356 0-137.506-24.076-184.204-63.854v67.242l0.006 201.73c53.44-25.374 116.888-40.622 185.88-40.622zM3.42 887.258c-1.112-5.458-1.966-11.006-2.542-16.634 0.574 5.628 1.43 11.176 2.542 16.634zM455.45 952.846c-15.058-58.806-68.454-87.964-142.888-139.568-27.072-8.732-56.894-13.874-88.894-14.208-89.618-0.964-173.108 34.942-220.216 88.372 15.92 77.706 85.034 136.558 167.234 136.558h286.444c1.816-11.128 2.696-22.632 2.696-34.432 0-12.534-1.534-24.792-4.376-36.722z"
],
"tags": [
"google plus",
"social"
],
"grid": 16
},
"properties": {
"order": 15,
"id": 359,
"prevSize": 32,
"code": 58896,
"name": "google-plus",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M1024 194.418c-37.676 16.708-78.164 28.002-120.66 33.080 43.372-26 76.686-67.17 92.372-116.23-40.596 24.078-85.556 41.56-133.41 50.98-38.32-40.83-92.922-66.34-153.346-66.34-116.022 0-210.088 94.058-210.088 210.078 0 16.466 1.858 32.5 5.44 47.878-174.6-8.764-329.402-92.4-433.018-219.506-18.084 31.028-28.446 67.116-28.446 105.618 0 72.888 37.088 137.192 93.46 174.866-34.438-1.092-66.832-10.542-95.154-26.278-0.020 0.876-0.020 1.756-0.020 2.642 0 101.788 72.418 186.696 168.522 206-17.626 4.8-36.188 7.372-55.348 7.372-13.538 0-26.698-1.32-39.528-3.772 26.736 83.46 104.32 144.206 196.252 145.896-71.9 56.35-162.486 89.934-260.916 89.934-16.958 0-33.68-0.994-50.116-2.94 92.972 59.61 203.402 94.394 322.042 94.394 386.422 0 597.736-320.124 597.736-597.744 0-9.108-0.206-18.168-0.61-27.18 41.056-29.62 76.672-66.62 104.836-108.748z"
],
"tags": [
"twitter",
"tweet",
"social"
],
"grid": 16
},
"properties": {
"order": 16,
"id": 366,
"prevSize": 32,
"code": 58897,
"name": "twitter",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M389.171 687.002c-13.722 13.875-13.722 36.301 0 50.125 13.67 13.875 35.891 13.875 49.613 0l196.096-200.038c13.722-13.875 13.722-36.301 0-50.125l-196.096-200.090c-13.722-13.875-35.891-13.875-49.613 0s-13.722 36.25-0.051 50.074l160.819 175.053-160.768 175.002z"
],
"tags": [
"arrow-right",
"right",
"next"
],
"grid": 20
},
"properties": {
"order": 17,
"id": 213,
"prevSize": 20,
"code": 58889,
"name": "arrow-right",
"ligatures": ""
}
},
{
"icon": {
"paths": [
"M307.251 276.48l-0.051 471.040 409.6-235.52z"
],
"tags": [
"arrow-right",
"triangle",
"right",
"next"
],
"grid": 20
},
"properties": {
"order": 18,
"id": 205,
"prevSize": 20,
"code": 58890,
"name": "arrow-right2",
"ligatures": ""
}
}
],
"height": 1024,
"metadata": {},
"preferences": {
"showGlyphs": true,
"showQuickUse": true,
"fontPref": {
"prefix": "icon-",
"metadata": {},
"metrics": {
"emSize": 1024,
"baseline": 6.25,
"whitespace": 50
},
"resetPoint": 58880
},
"imagePref": {},
"historySize": 100,
"showCodes": true,
"gridSize": 16
}
}

View File

@ -0,0 +1,79 @@
@font-face {
font-family: 'icomoon';
src:url('fonts/icomoon.eot');
src:url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf') format('truetype'),
url('fonts/icomoon.woff') format('woff'),
url('fonts/icomoon.svg#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-house:before {
content: "\e600";
}
.icon-newspaper:before {
content: "\e601";
}
.icon-help:before {
content: "\e602";
}
.icon-screen:before {
content: "\e603";
}
.icon-mobile:before {
content: "\e604";
}
.icon-tools:before {
content: "\e605";
}
.icon-cog:before {
content: "\e606";
}
.icon-info:before {
content: "\e607";
}
.icon-warning:before {
content: "\e608";
}
.icon-arrow-right:before {
content: "\e609";
}
.icon-arrow-right2:before {
content: "\e60a";
}
.icon-github:before {
content: "\e60b";
}
.icon-chrome:before {
content: "\e60c";
}
.icon-firefox:before {
content: "\e60d";
}
.icon-IE:before {
content: "\e60e";
}
.icon-opera:before {
content: "\e60f";
}
.icon-google-plus:before {
content: "\e610";
}
.icon-twitter:before {
content: "\e611";
}

View File

@ -13,6 +13,7 @@
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/icomoon/style.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
@ -59,10 +60,10 @@ if ( file_exists ( 'tracking.php' ) )
<!-- **** top alert box **** -->
<div class="alert alert-block alert-info">
Follow the
<b><a href="https://plus.google.com/105383756361375410867">IITC <img src="//ssl.gstatic.com/images/icons/gplus-16.png" alt="Google+" style="border:0;width:16px;height:16px;"/> page</a></b>
<b><a href="https://plus.google.com/105383756361375410867"><span class="icon-google-plus"></span> IITC page</a></b>
for release announcements.
Join the
<b><a href="https://plus.google.com/communities/105647403088015055797">IITC <img src="//ssl.gstatic.com/images/icons/gplus-16.png" alt="Google+" style="border:0;width:16px;height:16px;"/> Community</a></b>
<b><a href="https://plus.google.com/communities/105647403088015055797"><span class="icon-google-plus"></span> IITC Community</a></b>
- a place to ask for help and discuss with other users.
</div>
@ -97,15 +98,15 @@ if ( file_exists ( 'tracking.php' ) )
<?php
$pages = Array (
'home' => '<span class="glyphicon glyphicon-home"></span> Home',
'news' => '<span class="glyphicon glyphicon-list"></span> News',
'faq' => '<span class="glyphicon glyphicon-question-sign"></span> FAQ',
'desktop' => '<span class="glyphicon glyphicon-chevron-right"></span> Desktop',
'mobile' => '<span class="glyphicon glyphicon-phone"></span> Mobile',
'test' => '<span class="glyphicon glyphicon-wrench"></span> Test Builds',
'developer' => '<span class="glyphicon glyphicon-cog"></span> Developers',
'about' => '<span class="glyphicon glyphicon-info-sign"></span> About',
'donate' => '<span class="glyphicon glyphicon-gift"></span> Donate',
'home' => '<span class="icon-house"></span> Home',
'news' => '<span class="icon-newspaper"></span> News',
'faq' => '<span class="icon-help"></span> FAQ',
'desktop' => '<span class="icon-screen"></span> Desktop',
'mobile' => '<span class="icon-mobile"></span> Mobile',
'test' => '<span class="icon-tools"></span> Test Builds',
'developer' => '<span class="icon-cog"></span> Developers',
'about' => '<span class="icon-info"></span> About',
'donate' => '<span class="icon-arrow-right"></span> Donate',
);
$page = 'home';
@ -119,7 +120,7 @@ foreach ( $pages as $key => $name )
{
# before 'desktop', start a sub-list for the download links
if ( $key == 'desktop' )
print "<div class=\"list-group-item\"><div class=\"text-muted\"><span class=\"glyphicon glyphicon-download\"></span> Downloads</div><div class=\"list-group\">";
print "<div class=\"list-group-item\"><div class=\"text-muted\"><span class=\"icon-arrow-right\"></span> Downloads</div><div class=\"list-group\">";
if ( $key == "home" )
$url = "./";
@ -158,6 +159,7 @@ include "page/$page.php";
<!-- **** footer **** -->
<div class="alert alert-block alert-danger">
<span class="icon-warning"></span>
This site and the scripts are not officially affiliated with Ingress or Niantic Labs at Google.
Using these scripts is likely to be considered against the Ingress Terms of Service. Any use is at your own risk.
</div>