Compare commits
5 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
253f5547f2 | ||
![]() |
50e84662d9 | ||
![]() |
226c0e92c2 | ||
![]() |
b820fa4c3e | ||
![]() |
284e5ae3ca |
18 changed files with 1577 additions and 251 deletions
4
Makefile
4
Makefile
|
@ -4,8 +4,6 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@echo "Running jshint..."
|
|
||||||
@./node_modules/.bin/jshint lib/ComicBook.js --config lib/.jshintrc
|
|
||||||
@echo "Compiling Handlebars templates..."
|
@echo "Compiling Handlebars templates..."
|
||||||
@./node_modules/.bin/handlebars templates/*.handlebars -f lib/templates.js
|
@./node_modules/.bin/handlebars templates/*.handlebars -f lib/templates.js
|
||||||
@echo "Compiling and minifying javascript..."
|
@echo "Compiling and minifying javascript..."
|
||||||
|
@ -19,7 +17,7 @@ build:
|
||||||
@cp lib/vendor/pixastic/license-mpl.txt comicbook/js/pixastic
|
@cp lib/vendor/pixastic/license-mpl.txt comicbook/js/pixastic
|
||||||
@./node_modules/.bin/uglifyjs -nc comicbook/js/comicbook.js > comicbook/js/comicbook.min.js
|
@./node_modules/.bin/uglifyjs -nc comicbook/js/comicbook.js > comicbook/js/comicbook.min.js
|
||||||
@echo "Compiling CSS..."
|
@echo "Compiling CSS..."
|
||||||
@cat fonts/icomoon-toolbar/style.css css/reset.css css/styles.css css/toolbar.css > comicbook/comicbook.css
|
@cat fonts/icomoon-toolbar/style.css css/reset.css css/styles.css css/toolbar.css css/thumbnails.css > comicbook/comicbook.css
|
||||||
@echo "Copying assets..."
|
@echo "Copying assets..."
|
||||||
@cp -r css/img comicbook/img
|
@cp -r css/img comicbook/img
|
||||||
@cp -r icons/1_Desktop_Icons/icon_128.png comicbook/img
|
@cp -r icons/1_Desktop_Icons/icon_128.png comicbook/img
|
||||||
|
|
21
css/thumbnails.css
Normal file
21
css/thumbnails.css
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
|
||||||
|
.thumbnails {
|
||||||
|
position: absolute;
|
||||||
|
color: white;
|
||||||
|
background-color: black;
|
||||||
|
background-image: linear-gradient(to bottom, rgb(80, 80, 80), rgb(17, 17, 17));
|
||||||
|
padding: 0.5em;
|
||||||
|
border-radius: 0.2em;
|
||||||
|
margin: 5em;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
top: 0;
|
||||||
|
display: none;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumbnails img {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0.5em;
|
||||||
|
}
|
|
@ -20,6 +20,7 @@
|
||||||
<link rel="stylesheet" href="../fonts/icomoon-toolbar/style.css">
|
<link rel="stylesheet" href="../fonts/icomoon-toolbar/style.css">
|
||||||
<link rel="stylesheet" href="../css/styles.css">
|
<link rel="stylesheet" href="../css/styles.css">
|
||||||
<link rel="stylesheet" href="../css/toolbar.css">
|
<link rel="stylesheet" href="../css/toolbar.css">
|
||||||
|
<link rel="stylesheet" href="../css/thumbnails.css">
|
||||||
<link rel="shortcut icon" sizes="196x196" href="../icons/1_Desktop_icons/icon_196.png">
|
<link rel="shortcut icon" sizes="196x196" href="../icons/1_Desktop_icons/icon_196.png">
|
||||||
<link rel="apple-touch-icon" sizes="196x196" href="../icons/1_Desktop_icons/icon_196.png">
|
<link rel="apple-touch-icon" sizes="196x196" href="../icons/1_Desktop_icons/icon_196.png">
|
||||||
<link rel="apple-touch-icon-precomposed" sizes="196x196" href="../icons/1_Desktop_icons/icon_196.png">
|
<link rel="apple-touch-icon-precomposed" sizes="196x196" href="../icons/1_Desktop_icons/icon_196.png">
|
||||||
|
|
6
fonts/icomoon-toolbar/Read Me.txt
Normal file → Executable file
6
fonts/icomoon-toolbar/Read Me.txt
Normal file → Executable file
|
@ -1,3 +1,5 @@
|
||||||
To modify your generated font, use the *dev.svg* file, located in the *fonts* folder in this package. You can import this dev.svg file to the IcoMoon app. All the tags (class names) and the Unicode points of your glyphs are saved in this file.
|
Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures.
|
||||||
|
|
||||||
See the documentation for more info on how to use this package: http://icomoon.io/#docs/font-face
|
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.
|
||||||
|
|
157
fonts/icomoon-toolbar/demo-files/demo.css
Executable file
157
fonts/icomoon-toolbar/demo-files/demo.css
Executable file
|
@ -0,0 +1,157 @@
|
||||||
|
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: 32px;
|
||||||
|
}
|
||||||
|
.fs2 {
|
||||||
|
font-size: 32px;
|
||||||
|
}
|
||||||
|
.fs3 {
|
||||||
|
font-size: 28px;
|
||||||
|
}
|
30
fonts/icomoon-toolbar/demo-files/demo.js
Executable file
30
fonts/icomoon-toolbar/demo-files/demo.js
Executable 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();
|
||||||
|
}());
|
474
fonts/icomoon-toolbar/demo.html
Executable file
474
fonts/icomoon-toolbar/demo.html
Executable file
|
@ -0,0 +1,474 @@
|
||||||
|
<!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> toolbar <small class="fgc1">(Glyphs: 33)</small></h1>
|
||||||
|
</div>
|
||||||
|
<div class="clearfix mhl ptl">
|
||||||
|
<h1 class="mvm mtn bshadow fgc1">Grid Size: 16</h1>
|
||||||
|
<div class="glyph fs1">
|
||||||
|
<div class="clearfix bshadow0 pbs">
|
||||||
|
<span class="icon-thumbnails"></span><span class="mls"> icon-thumbnails</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e600" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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: Unknown</h1>
|
||||||
|
<div class="glyph fs2">
|
||||||
|
<div class="clearfix bshadow0 pbs">
|
||||||
|
<span class="icon-uniF000"></span><span class="mls"> icon-uniF000</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="f000" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-file"></span><span class="mls"> icon-file</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e000" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-image"></span><span class="mls"> icon-image</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e001" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-zoom-out"></span><span class="mls"> icon-zoom-out</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e002" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-zoom-in"></span><span class="mls"> icon-zoom-in</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e003" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-expand"></span><span class="mls"> icon-expand</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e004" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-expand2"></span><span class="mls"> icon-expand2</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e005" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-folder-open"></span><span class="mls"> icon-folder-open</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e006" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-folder"></span><span class="mls"> icon-folder</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e007" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-cog"></span><span class="mls"> icon-cog</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e008" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-menu"></span><span class="mls"> icon-menu</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e009" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-wrench"></span><span class="mls"> icon-wrench</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e00a" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-settings"></span><span class="mls"> icon-settings</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e00b" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-loop"></span><span class="mls"> icon-loop</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e00c" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-pin"></span><span class="mls"> icon-pin</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e00d" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-first"></span><span class="mls"> icon-first</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e00e" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-last"></span><span class="mls"> icon-last</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e00f" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-arrow-left"></span><span class="mls"> icon-arrow-left</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e011" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-arrow-right"></span><span class="mls"> icon-arrow-right</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e010" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-arrow-left2"></span><span class="mls"> icon-arrow-left2</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e012" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-arrow-right2"></span><span class="mls"> icon-arrow-right2</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e013" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-arrow-left3"></span><span class="mls"> icon-arrow-left3</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e014" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-arrow-right3"></span><span class="mls"> icon-arrow-right3</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e015" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-previous"></span><span class="mls"> icon-previous</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e016" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-next"></span><span class="mls"> icon-next</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e017" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-droplet"></span><span class="mls"> icon-droplet</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e01a" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-adjust"></span><span class="mls"> icon-adjust</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="f042" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-sun"></span><span class="mls"> icon-sun</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e018" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-remove-sign"></span><span class="mls"> icon-remove-sign</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="f057" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-remove"></span><span class="mls"> icon-remove</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="f00d" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-copy"></span><span class="mls"> icon-copy</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e037" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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: 14</h1>
|
||||||
|
<div class="glyph fs3">
|
||||||
|
<div class="clearfix bshadow0 pbs">
|
||||||
|
<span class="icon-th"></span><span class="mls"> icon-th</span>
|
||||||
|
</div>
|
||||||
|
<fieldset class="fs0 size1of1 clearfix">
|
||||||
|
<input type="text" readonly value="e603" class="unit size1of2" />
|
||||||
|
<input type="text" maxlength="1" readonly value="" 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-">
|
||||||
|
</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>
|
|
@ -1,110 +0,0 @@
|
||||||
<?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>
|
|
||||||
This is a custom SVG font generated by IcoMoon.
|
|
||||||
<iconset grid="20"></iconset>
|
|
||||||
</metadata>
|
|
||||||
<defs>
|
|
||||||
<font id="toolbar" horiz-adv-x="640" >
|
|
||||||
<font-face units-per-em="640" ascent="608" descent="-32" />
|
|
||||||
<missing-glyph horiz-adv-x="640" />
|
|
||||||
<glyph class="hidden" unicode="" d="M0,608L 640 -32L0 -32 z" horiz-adv-x="0" />
|
|
||||||
<glyph unicode="" d="M 557.574,490.426l-75.146,75.148C 459.091,588.909, 413,608, 380,608L 100,608 C 67,608, 40,581, 40,548l0-520 c0-33, 27-60, 60-60l 440,0
|
|
||||||
c 33,0, 60,27, 60,60L 600,388 C 600,421, 580.909,467.091, 557.574,490.426z M 400,523.274c 1.373-0.503, 2.782-1.050, 4.224-1.647
|
|
||||||
c 11.287-4.676, 19.124-10.11, 21.635-12.621l 75.148-75.149c 2.511-2.511, 7.945-10.346, 12.621-21.634c 0.597-1.441, 1.145-2.851, 1.647-4.223
|
|
||||||
L 400,408 L 400,523.274 z M 520,48L 120,48 L 120,528 l 240,0 l0-160 l 160,0 L 520,48 z" data-tags="file, paper, page, new, empty, blank, document" />
|
|
||||||
<glyph unicode="" d="M 560,488 L 80,488 L 80,88 L 560,88 L 560,488 Z M 640,568 L 640,568 L 640,8 L 0,8 L 0,568 L 640,568 ZM 520,128 L 120,128 L 120,208 L 240,408 L 404.375,208 L 520,288 L 520,248 ZM 400,388A60,60 3060 1 1 520,388A60,60 3060 1 1 400,388z" data-tags="image, picture, photo, graphic" />
|
|
||||||
<glyph unicode="" d="M 620.164,63.378L 468.569,192.311c-15.671,14.104-32.431,20.579-45.97,19.954C 458.384,254.183, 480,308.564, 480,368
|
|
||||||
C 480,500.549, 372.549,608, 240,608C 107.453,608,0,500.549,0,368c0-132.549, 107.451-240, 240-240c 59.436,0, 113.817,21.616, 155.735,57.402
|
|
||||||
c-0.625-13.539, 5.85-30.299, 19.954-45.97l 128.934-151.595c 22.076-24.529, 58.139-26.596, 80.138-4.598S 644.692,41.301, 620.164,63.378
|
|
||||||
z M 240,208c-88.365,0-160,71.635-160,160S 151.635,528, 240,528s 160-71.635, 160-160S 328.366,208, 240,208zM 120,408L 360,408L 360,328L 120,328z" data-tags="zoom out, smaller, scale, reduce" />
|
|
||||||
<glyph unicode="" d="M 620.164,63.378L 468.569,192.311c-15.671,14.104-32.431,20.579-45.97,19.954C 458.384,254.183, 480,308.564, 480,368
|
|
||||||
C 480,500.549, 372.549,608, 240,608C 107.453,608,0,500.549,0,368c0-132.549, 107.451-240, 240-240c 59.436,0, 113.817,21.616, 155.735,57.402
|
|
||||||
c-0.625-13.539, 5.85-30.299, 19.954-45.97l 128.934-151.595c 22.076-24.529, 58.139-26.596, 80.138-4.598S 644.692,41.301, 620.164,63.378
|
|
||||||
z M 240,208c-88.365,0-160,71.635-160,160S 151.635,528, 240,528s 160-71.635, 160-160S 328.366,208, 240,208zM 280,488L 200,488L 200,408L 120,408L 120,328L 200,328L 200,248L 280,248L 280,328L 360,328L 360,408L 280,408 z" data-tags="zoom in, enlarge, scale" />
|
|
||||||
<glyph unicode="" d="M 640,608 L 640,348 L 540,448 L 420,328 L 360,388 L 480,508 L 380,608 ZM 280,188 L 160,68 L 260-32 L 0-32 L 0,228 L 100,128 L 220,248 Z" data-tags="expand, enlarge, maximize, fullscreen" />
|
|
||||||
<glyph unicode="" d="M 640,608 L 640,368 L 553.587,454.412 L 421.087,321.913 L 353.913,389.088 L 486.413,521.588 L 400,608 ZM 153.588,521.588 L 286.087,389.088 L 218.912,321.913 L 86.412,454.412 L 0,368 L 0,608 L 240,608 ZM 553.587,121.587 L 640,208 L 640-32 L 400-32 L 486.413,54.413 L 353.913,186.913 L 421.087,254.087 ZM 286.087,186.913 L 153.588,54.413 L 240-32 L 0-32 L 0,208 L 86.412,121.587 L 218.912,254.087 Z" data-tags="expand, enlarge, maximize, fullscreen" />
|
|
||||||
<glyph unicode="" d="M 520,8L 640,328L 120,328L0,8 zM 80,368 L 0,8 L 0,528 L 180,528 L 260,448 L 520,448 L 520,368 Z" data-tags="folder-open, directory, category, browse" />
|
|
||||||
<glyph unicode="" d="M 0,408 L 640,408 L 600,8 L 40,8 L 0,408 Z M 580,488 L 600,448 L 40,448 L 80,528 L 300,528 L 320,488 L 580,488 Z" data-tags="folder, directory, category, browse" />
|
|
||||||
<glyph unicode="" d="M 583.619,226.594c-33.579,58.159-13.385,132.69, 45.095,166.555l-62.891,108.933c-17.969-10.534-38.86-16.574-61.154-16.574
|
|
||||||
c-67.21,0-121.692,54.841-121.692,122.494L 257.19,608.001 c 0.166-20.881-5.046-42.051-16.224-61.407
|
|
||||||
c-33.578-58.16-108.222-77.939-166.789-44.224L 11.287,393.437c 18.106-10.295, 33.781-25.367, 44.929-44.674
|
|
||||||
c 33.524-58.068, 13.445-132.45-44.817-166.39l 62.891-108.933c 17.906,10.435, 38.697,16.409, 60.875,16.409
|
|
||||||
c 66.998,0, 121.34-54.495, 121.688-121.849l 125.784,0 c-0.054,20.671, 5.17,41.606, 16.229,60.761
|
|
||||||
c 33.523,58.066, 107.985,77.871, 166.509,44.383l 62.891,108.931C 610.277,192.368, 594.707,207.387, 583.619,226.594z M 320,158.418
|
|
||||||
c-71.567,0-129.585,58.015-129.585,129.584c0,71.567, 58.016,129.584, 129.585,129.584c 71.567,0, 129.582-58.016, 129.582-129.584
|
|
||||||
C 449.581,216.433, 391.567,158.418, 320,158.418z" data-tags="cog, preferences, settings, gear, generate, control, options" />
|
|
||||||
<glyph unicode="" d="M 40,488L 600,488L 600,368L 40,368zM 40,328L 600,328L 600,208L 40,208zM 40,168L 600,168L 600,48L 40,48z" data-tags="menu, list, items, lines, options" />
|
|
||||||
<glyph unicode="" d="M 626.834,96.827l-287.845,246.725C 352.394,368.739, 360,397.479, 360,428C 360,527.411, 279.411,608, 180,608
|
|
||||||
c-18.184,0-35.733-2.708-52.279-7.721l 103.994-103.994c 15.556-15.556, 15.556-41.013,0-56.569l-63.431-63.431
|
|
||||||
c-15.556-15.556-41.013-15.556-56.569,0L 7.721,480.279C 2.708,463.732,0,446.184,0,428c0-99.411, 80.589-180, 180-180
|
|
||||||
c 30.521,0, 59.261,7.606, 84.448,21.012l 246.725-287.845c 14.318-16.703, 38.76-17.641, 54.315-2.086l 63.433,63.433
|
|
||||||
C 644.475,58.069, 643.536,82.51, 626.834,96.827z" data-tags="wrench, settings, control, tool, options, preferences, fix" />
|
|
||||||
<glyph unicode="" d="M 280,528l0,10 c0,16.5-13.5,30-30,30l-100,0 c-16.5,0-30-13.5-30-30l0-10 L0,528 l0-80 l 120,0 l0-10 c0-16.5, 13.5-30, 30-30l 100,0 c 16.5,0, 30,13.5, 30,30l0,10
|
|
||||||
l 360,0 L 640,528 L 280,528 z M 160,448L 160,528 l 80,0 l0-80 L 160,448 zM 520,338c0,16.5-13.5,30-30,30l-100,0 c-16.5,0-30-13.5-30-30l0-10 L0,328 l0-80 l 360,0 l0-10 c0-16.5, 13.5-30, 30-30l 100,0 c 16.5,0, 30,13.5, 30,30l0,10
|
|
||||||
l 120,0 l0,80 l-120,0 L 520,338 z M 400,248l0,80 l 80,0 l0-80 L 400,248 zM 280,138c0,16.5-13.5,30-30,30l-100,0 c-16.5,0-30-13.5-30-30l0-10 L0,128 l0-80 l 120,0 l0-10 c0-16.5, 13.5-30, 30-30l 100,0 c 16.5,0, 30,13.5, 30,30l0,10
|
|
||||||
l 360,0 l0,80 L 280,128 L 280,138 z M 160,48l0,80 l 80,0 l0-80 L 160,48 z" data-tags="settings, preferences, options" />
|
|
||||||
<glyph unicode="" d="M 546.264,514.263C 488.356,572.172, 408.366,608, 320,608C 182.82,608, 65.819,521.67, 20.314,400.382l 74.922-28.096
|
|
||||||
C 129.364,463.252, 217.115,528, 320,528c 66.275,0, 126.263-26.875, 169.691-70.309L 400,368l 240,0 L 640,608 L 546.264,514.263zM 320,48c-66.275,0-126.266,26.87-169.695,70.305L 240,208L0,208 l0-240 l 93.746,93.746C 151.65,3.832, 231.633-32, 320-32
|
|
||||||
c 137.181,0, 254.183,86.33, 299.688,207.618l-74.922,28.096C 510.637,112.748, 422.886,48, 320,48z" data-tags="loop, repeat, reload, refresh, update, upgrade, synchronize, media control, arrows" />
|
|
||||||
<glyph unicode="" d="M 640,448c0,88.32-71.72,160-160,160c-59.68,0-111.24-33.16-138.76-81.72c0,0.040, 0.080,0.080, 0.080,0.12
|
|
||||||
c-7.34,0.7-14.46,2.22-21.96,2.22c-132.58,0-240-107.42-240-240c0-50.54, 15.78-97.34, 42.42-135.94L0-32l 185.78,121.24
|
|
||||||
c 38.2-25.62, 84.14-40.62, 133.6-40.62c 132.58,0, 240,107.42, 240,240c0,6.92-1.4,13.4-2.040,20.16C 606.4,336.12, 640,387.88, 640,448z
|
|
||||||
M 319.38,128.62c-88.28,0-160,71.72-160,160c0,88.24, 71.72,160, 160,160c 0.24,0, 0.46-0.080, 0.62-0.080c0,0.16, 0.080,0.28, 0.080,0.4
|
|
||||||
C 320.080,448.62, 320,448.32, 320,448c0-13.9, 2.34-27.1, 5.62-39.96l-63.44-63.48c-31.24-31.24-31.24-81.88,0-113.12s 81.88-31.24, 113.12,0
|
|
||||||
l 62.82,62.82c 13.2-3.6, 26.88-6.1, 41.18-6.18C 478.98,200.040, 407.42,128.62, 319.38,128.62z M 480,368c-44.060,0-80,35.9-80,80
|
|
||||||
s 35.94,80, 80,80s 80-35.9, 80-80S 524.060,368, 480,368z" data-tags="pin, location" />
|
|
||||||
<glyph unicode="" d="M 239.52,288c0-8.256, 8.384-14.144, 8.384-14.144l 232.8-146.208C 497.952,116.352, 512,124.672, 512,146.048L 512,429.952
|
|
||||||
c0,21.408-14.048,29.728-31.296,18.432l-232.8-146.24C 247.904,302.112, 239.52,296.256, 239.52,288z M 128,436.576l0-297.152 c0-28.416, 19.584-37.12, 48-37.12
|
|
||||||
S 224,111.008, 224,139.392L 224,436.576 c0,28.448-19.584,37.152-48,37.152S 128,464.992, 128,436.576z" data-tags="first, start, media control" />
|
|
||||||
<glyph unicode="" d="M 392.096,302.144l-232.8,146.24C 142.080,459.648, 128,451.36, 128,429.92l0-283.872 c0-21.44, 14.080-29.696, 31.296-18.432l 232.8,146.208
|
|
||||||
c0,0, 8.416,5.92, 8.416,14.144S 392.096,302.144, 392.096,302.144z M 464,473.728c-28.416,0-48-8.736-48-37.152l0-297.152
|
|
||||||
c0-28.448, 19.584-37.184, 48-37.184s 48,8.736, 48,37.184L 512,436.576 C 512,464.992, 492.416,473.728, 464,473.728z" data-tags="last, end, media control" />
|
|
||||||
<glyph unicode="" d="M 614.4,288c0,162.592-131.808,294.4-294.4,294.4S 25.6,450.592, 25.6,288c0-162.624, 131.808-294.432, 294.4-294.432S 614.4,125.408, 614.4,288z M 89.6,288
|
|
||||||
c0,127.232, 103.168,230.4, 230.4,230.4s 230.4-103.168, 230.4-230.4c0-127.264-103.168-230.432-230.4-230.432S 89.6,160.736, 89.6,288z M 443.2,230.4L 443.2,345.6 L 312.32,345.6 L 312.32,417.6
|
|
||||||
L 190.4,288l 121.92-129.6L 312.32,230.4 L 443.2,230.4 z" data-tags="arrow-left, left, previous" />
|
|
||||||
<glyph unicode="" d="M 25.6,288c0-162.592, 131.84-294.4, 294.4-294.4c 162.592,0, 294.4,131.808, 294.4,294.4C 614.4,450.592, 482.592,582.4, 320,582.4C 157.408,582.4, 25.6,450.592, 25.6,288z
|
|
||||||
M 550.4,288c0-127.232-103.168-230.4-230.4-230.4S 89.6,160.736, 89.6,288C 89.6,415.264, 192.736,518.4, 320,518.4S 550.4,415.264, 550.4,288z M 196.8,345.6l0-115.2 l 130.88,0 l0-72
|
|
||||||
L 449.6,288l-121.92,129.6L 327.68,345.6 L 196.8,345.6 z" data-tags="arrow-right, right, next" />
|
|
||||||
<glyph unicode="" d="M 447.968,435.2L 448,140.8L 192,288 z" data-tags="arrow-left, left, triangle, previous" />
|
|
||||||
<glyph unicode="" d="M 192.032,435.2L 192,140.8L 448,288 z" data-tags="arrow-right, triangle, right, next" />
|
|
||||||
<glyph unicode="" d="M 319.52,531.2L 319.52,408.704L 544.064,408.736L 544.064,167.072L 319.52,167.072L 319.52,44.8L 76.864,288 z" data-tags="arrow-left, left, previous" />
|
|
||||||
<glyph unicode="" d="M 320.48,531.2L 320.48,408.704L 95.936,408.736L 95.936,167.072L 320.48,167.072L 320.48,44.8L 563.136,288 z" data-tags="arrow-right, right, next" />
|
|
||||||
<glyph unicode="" d="M 44.768,288c0-8.928, 8.928-15.328, 8.928-15.328l 238.816-158.368c 18.304-12.256, 33.344-3.264, 33.344,19.968L 325.856,441.76
|
|
||||||
c0,23.232-15.040,32.192-33.344,20l-238.816-158.4C 53.728,303.328, 44.768,296.928, 44.768,288z M 335.2,288c0-8.928, 8.928-15.328, 8.928-15.328
|
|
||||||
l 230.496-158.368c 18.336-12.256, 33.344-3.264, 33.344,19.968L 607.968,441.76 c0,23.232-15.008,32.192-33.344,20l-230.496-158.4
|
|
||||||
C 344.128,303.328, 335.2,296.928, 335.2,288z" data-tags="previous, media control" />
|
|
||||||
<glyph unicode="" d="M 586.272,303.328l-238.784,158.4C 329.152,473.952, 314.112,464.96, 314.112,441.76l0-307.488 c0-23.232, 15.040-32.224, 33.376-19.968l 238.784,158.368
|
|
||||||
c0,0, 8.928,6.4, 8.928,15.328S 586.272,303.328, 586.272,303.328z M 295.872,303.328L 65.344,461.76C 47.040,473.952, 32.032,464.96, 32.032,441.76l0-307.488
|
|
||||||
c0-23.232, 15.008-32.224, 33.344-19.968l 230.528,158.368c0,0, 8.928,6.4, 8.928,15.328S 295.872,303.328, 295.872,303.328z" data-tags="next, media control" />
|
|
||||||
<glyph unicode="" d="M 559.963,212.061c-0.007,0.441-0.019,0.876-0.026,1.316c-0.020,0.892-0.044,1.784-0.074,2.675C 553.594,413.332, 320,608, 320,608
|
|
||||||
S 86.404,413.332, 80.138,216.049c-0.027-0.894-0.055-1.782-0.075-2.676c-0.009-0.44-0.019-0.876-0.026-1.316
|
|
||||||
c-0.022-1.35-0.035-2.702-0.035-4.060c0-1.48, 0.018-2.951, 0.044-4.424c 0.003-0.122, 0.004-0.244, 0.009-0.366
|
|
||||||
C 82.602,72.874, 189.051-32, 320-32c 130.947,0, 237.395,104.874, 239.949,235.21c 0.003,0.122, 0.005,0.245, 0.006,0.366
|
|
||||||
c 0.026,1.472, 0.045,2.946, 0.045,4.424C 560,209.358, 559.985,210.71, 559.963,212.061z M 479.969,205.038l-0.005-0.254
|
|
||||||
c-0.824-42.054-17.832-81.459-47.891-110.968C 401.984,64.271, 362.179,48, 320,48c-7.789,0-15.496,0.559-23.078,1.649
|
|
||||||
c 86.91,51.779, 145.135,146.69, 145.135,255.201c0,12.16-0.737,24.146-2.157,35.925c 25.17-46.212, 38.79-89.25, 40.001-127.266
|
|
||||||
l 0.003-0.090c 0.020-0.593, 0.033-1.182, 0.049-1.777l 0.018-0.905C 479.988,209.826, 480,208.913, 480,208
|
|
||||||
C 480,207.010, 479.988,206.024, 479.969,205.038z" data-tags="droplet, colors, water" />
|
|
||||||
<glyph unicode="" d="M 274,562.286q 74.643,0 137.679-36.786t 99.821-99.821t 36.786-137.679t-36.786-137.679t-99.821-99.821t-137.679-36.786t-137.679,36.786t-99.821,99.821t-36.786,137.679t 36.786,137.679t 99.821,99.821t 137.679,36.786zM 91.143,288q0-37.143 14.464-70.893t 39.107-58.393t 58.393-39.107t 70.893-14.464l0,365.714 q-37.143,0 -70.893-14.464 t-58.393-39.107t-39.107-58.393t-14.464-70.893z" horiz-adv-x="548" data-tags="adjust, contrast" />
|
|
||||||
<glyph unicode="" d="M 608,313.6c-5.824,0-25.568,0-31.36,0c-17.664,0-32-11.456-32-25.6s 14.336-25.6, 32-25.6c 5.824,0, 25.568,0, 31.36,0c 17.696,0, 32,11.456, 32,25.6
|
|
||||||
S 625.696,313.6, 608,313.6z M 320,464C 222.4,464, 144,385.6, 144,288c0-97.632, 78.4-176, 176-176c 97.632,0, 176,78.368, 176,176
|
|
||||||
C 496,385.6, 417.632,464, 320,464z M 320,160c-70.72,0-128,57.28-128,128c0,70.688, 57.28,128, 128,128s 128-57.312, 128-128C 448,217.28, 390.72,160, 320,160z M 95.328,288
|
|
||||||
c0,14.144-13.664,25.6-31.328,25.6c-5.92,0-26.112,0-32,0c-17.664,0-32-11.456-32-25.6s 14.336-25.6, 32-25.6c 5.888,0, 26.080,0, 32,0
|
|
||||||
C 81.664,262.4, 95.328,273.856, 95.328,288z M 320,512c 14.112,0, 25.6,14.336, 25.6,32c0,5.856,0,26.144,0,32c0,17.664-11.456,32-25.6,32S 294.4,593.664, 294.4,576
|
|
||||||
c0-5.856,0-26.144,0-32C 294.4,526.336, 305.888,512, 320,512z M 320,64c-14.112,0-25.6-14.336-25.6-32c0-5.856,0-26.144,0-32c0-17.696, 11.456-32, 25.6-32
|
|
||||||
s 25.6,14.304, 25.6,32c0,5.856,0,26.144,0,32C 345.6,49.664, 334.112,64, 320,64z M 555.68,487.488c 12.512,12.512, 14.528,30.752, 4.544,40.736
|
|
||||||
s-28.224,7.968-40.704-4.544c-3.424-3.456-18.944-18.944-22.4-22.4c-12.512-12.512-14.528-30.72-4.544-40.704s 28.256-8, 40.736,4.512
|
|
||||||
C 536.736,468.544, 552.256,484.032, 555.68,487.488z M 106.688,110.912c-3.456-3.456-18.944-18.976-22.4-22.4c-12.48-12.512-14.496-30.72-4.512-40.704
|
|
||||||
c 9.984-9.984, 28.224-7.968, 40.704,4.512c 3.456,3.424, 18.976,18.944, 22.4,22.4c 12.512,12.512, 14.528,30.72, 4.512,40.704
|
|
||||||
S 119.168,123.36, 106.688,110.912z M 120.512,523.712C 108,536.192, 89.792,538.24, 79.776,528.224S 71.808,500, 84.288,487.488
|
|
||||||
c 3.456-3.456, 18.944-18.944, 22.4-22.4c 12.512-12.48, 30.72-14.528, 40.704-4.512s 8,28.224-4.512,40.704C 139.456,504.736, 123.968,520.256, 120.512,523.712z
|
|
||||||
M 497.088,74.688c 3.456-3.456, 18.976-18.976, 22.4-22.4c 12.512-12.48, 30.752-14.496, 40.736-4.512c 9.984,9.984, 7.936,28.224-4.544,40.704
|
|
||||||
c-3.456,3.424-18.976,18.944-22.4,22.4c-12.512,12.48-30.752,14.496-40.736,4.512S 484.64,87.2, 497.088,74.688z" data-tags="sun, brightness, lightness" />
|
|
||||||
<glyph unicode="" d="M 410.071,207.286q0,9.286 -6.786,16.071l-64.643,64.643l 64.643,64.643q 6.786,6.786 6.786,16.071q0,9.643 -6.786,16.429l-32.143,32.143q-6.786,6.786 -16.429,6.786q-9.286,0 -16.071-6.786l-64.643-64.643l-64.643,64.643q-6.786,6.786 -16.071,6.786q-9.643,0 -16.429-6.786l-32.143-32.143q-6.786-6.786 -6.786-16.429q0-9.286 6.786-16.071l 64.643-64.643l-64.643-64.643q-6.786-6.786 -6.786-16.071q0-9.643 6.786-16.429l 32.143-32.143q 6.786-6.786 16.429-6.786 q 9.286,0 16.071,6.786l 64.643,64.643l 64.643-64.643q 6.786-6.786 16.071-6.786q 9.643,0 16.429,6.786l 32.143,32.143q 6.786,6.786 6.786,16.429zM 548.285,288q0-74.643 -36.786-137.679t-99.821-99.821t-137.679-36.786t-137.679,36.786t-99.821,99.821t-36.786,137.679t 36.786,137.679t 99.821,99.821t 137.679,36.786t 137.679-36.786t 99.821-99.821t 36.786-137.679z" horiz-adv-x="548" data-tags="remove-sign, cancel, remove, delete, close, sign" />
|
|
||||||
<glyph unicode="" d="M 463.142,135.857q0-14.286 -10-24.286l-48.571-48.571q-10-10 -24.286-10t-24.286,10l-105,105l-105-105q-10-10 -24.286-10t-24.286,10l-48.571,48.571q-10,10 -10,24.286t 10,24.286l 105,105l-105,105q-10,10 -10,24.286t 10,24.286l 48.571,48.571q 10,10 24.286,10t 24.286-10l 105-105l 105,105q 10,10 24.286,10t 24.286-10l 48.571-48.571q 10-10 10-24.286 t-10-24.286l-105-105l 105-105q 10-10 10-24.286z" horiz-adv-x="502" data-tags="remove, cancel, close, delete, mutiply" />
|
|
||||||
<glyph unicode="" d="M 520,448l-120,0 L 400,488 L 280,608L0,608 l0-480 l 240,0 l0-160 l 400,0 L 640,328 L 520,448z M 520,391.431L 583.431,328L 520,328 L 520,391.431 z M 280,551.431L 343.431,488L 280,488
|
|
||||||
L 280,551.431 z M 40,568l 200,0 l0-120 l 120,0 l0-280 L 40,168 L 40,568 z M 600,8L 280,8 l0,120 l 120,0 L 400,408 l 80,0 l0-120 l 120,0 L 600,8 z" data-tags="copy, duplicate, files, pages, papers, documents" />
|
|
||||||
<glyph unicode=" " horiz-adv-x="320" />
|
|
||||||
</font></defs></svg>
|
|
Before Width: | Height: | Size: 16 KiB |
BIN
fonts/icomoon-toolbar/fonts/toolbar.eot
Normal file → Executable file
BIN
fonts/icomoon-toolbar/fonts/toolbar.eot
Normal file → Executable file
Binary file not shown.
143
fonts/icomoon-toolbar/fonts/toolbar.svg
Normal file → Executable file
143
fonts/icomoon-toolbar/fonts/toolbar.svg
Normal file → Executable file
|
@ -1,110 +1,43 @@
|
||||||
<?xml version="1.0" standalone="no"?>
|
<?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" >
|
<!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">
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||||||
<metadata>
|
<metadata>Generated by IcoMoon</metadata>
|
||||||
This is a custom SVG font generated by IcoMoon.
|
|
||||||
<iconset grid="20"></iconset>
|
|
||||||
</metadata>
|
|
||||||
<defs>
|
<defs>
|
||||||
<font id="toolbar" horiz-adv-x="640" >
|
<font id="toolbar" horiz-adv-x="1024">
|
||||||
<font-face units-per-em="640" ascent="608" descent="-32" />
|
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
||||||
<missing-glyph horiz-adv-x="640" />
|
<missing-glyph horiz-adv-x="1024" />
|
||||||
<glyph class="hidden" unicode="" d="M0,608L 640 -32L0 -32 z" horiz-adv-x="0" />
|
<glyph unicode=" " d="" horiz-adv-x="512" />
|
||||||
<glyph unicode="" d="M 557.574,490.426l-75.146,75.148C 459.091,588.909, 413,608, 380,608L 100,608 C 67,608, 40,581, 40,548l0-520 c0-33, 27-60, 60-60l 440,0
|
<glyph unicode="" d="M892.118 771.882l-120.234 120.237c-37.339 37.336-111.085 67.882-163.885 67.882h-448c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h704c52.8 0 96 43.2 96 96v576c0 52.8-30.546 126.546-67.882 163.882zM640 824.438c2.197-0.805 4.451-1.68 6.758-2.635 18.059-7.482 30.598-16.176 34.616-20.194l120.237-120.238c4.018-4.018 12.712-16.554 20.194-34.614 0.955-2.306 1.832-4.562 2.635-6.757h-184.44v184.438zM832 64h-640v768h384v-256h256v-512z" />
|
||||||
c 33,0, 60,27, 60,60L 600,388 C 600,421, 580.909,467.091, 557.574,490.426z M 400,523.274c 1.373-0.503, 2.782-1.050, 4.224-1.647
|
<glyph unicode="" d="M896 768h-768v-640h768v640zM1024 896v0-896h-1024v896h1024zM832 192h-640v128l192 320 263-320 185 128v-64zM640 608c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96-53.019 0-96-42.981-96-96z" />
|
||||||
c 11.287-4.676, 19.124-10.11, 21.635-12.621l 75.148-75.149c 2.511-2.511, 7.945-10.346, 12.621-21.634c 0.597-1.441, 1.145-2.851, 1.647-4.223
|
<glyph unicode="" d="M992.262 88.605l-242.552 206.293c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.069 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.075 0-384-171.922-384-384 0-212.078 171.922-384 384-384 95.098 0 182.107 34.586 249.176 91.843-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.221-7.357s31.89 92.899-7.355 128.222zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM192 640h384v-128h-384z" />
|
||||||
L 400,408 L 400,523.274 z M 520,48L 120,48 L 120,528 l 240,0 l0-160 l 160,0 L 520,48 z" />
|
<glyph unicode="" d="M992.262 88.605l-242.552 206.293c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.069 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.075 0-384-171.922-384-384 0-212.078 171.922-384 384-384 95.098 0 182.107 34.586 249.176 91.843-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.221-7.357s31.89 92.899-7.355 128.222zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM448 768h-128v-128h-128v-128h128v-128h128v128h128v128h-128z" />
|
||||||
<glyph unicode="" d="M 560,488 L 80,488 L 80,88 L 560,88 L 560,488 Z M 640,568 L 640,568 L 640,8 L 0,8 L 0,568 L 640,568 ZM 520,128 L 120,128 L 120,208 L 240,408 L 404.375,208 L 520,288 L 520,248 ZM 400,388A60,60 3060 1 1 520,388A60,60 3060 1 1 400,388z" />
|
<glyph unicode="" d="M1024 960v-416l-160 160-192-192-96 96 192 192-160 160zM448 288l-192-192 160-160h-416v416l160-160 192 192z" />
|
||||||
<glyph unicode="" d="M 620.164,63.378L 468.569,192.311c-15.671,14.104-32.431,20.579-45.97,19.954C 458.384,254.183, 480,308.564, 480,368
|
<glyph unicode="" d="M1024 960v-384l-138.261 138.259-212-211.998-107.478 107.48 212 212-138.261 138.259zM245.741 821.741l211.998-212-107.48-107.48-212 211.998-138.259-138.259v384h384zM885.739 181.739l138.261 138.261v-384h-384l138.261 138.261-212 212 107.478 107.478zM457.739 286.261l-211.998-212 138.259-138.261h-384v384l138.259-138.261 212 212z" />
|
||||||
C 480,500.549, 372.549,608, 240,608C 107.453,608,0,500.549,0,368c0-132.549, 107.451-240, 240-240c 59.436,0, 113.817,21.616, 155.735,57.402
|
<glyph unicode="" d="M832 0l192 512h-832l-192-512zM128 576l-128-576v832h288l128-128h416v-128z" />
|
||||||
c-0.625-13.539, 5.85-30.299, 19.954-45.97l 128.934-151.595c 22.076-24.529, 58.139-26.596, 80.138-4.598S 644.692,41.301, 620.164,63.378
|
<glyph unicode="" d="M0 640h1024l-64-640h-896l-64 640zM928 768l32-64h-896l64 128h352l32-64h416z" />
|
||||||
z M 240,208c-88.365,0-160,71.635-160,160S 151.635,528, 240,528s 160-71.635, 160-160S 328.366,208, 240,208zM 120,408L 360,408L 360,328L 120,328z" />
|
<glyph unicode="" d="M933.79 349.75c-53.726 93.054-21.416 212.304 72.152 266.488l-100.626 174.293c-28.75-16.854-62.176-26.518-97.846-26.518-107.536 0-194.707 87.746-194.707 195.99l-201.259-0.002c0.266-33.41-8.074-67.282-25.958-98.251-53.725-93.056-173.155-124.702-266.862-70.758l-100.624-174.293c28.97-16.472 54.050-40.587 71.886-71.478 53.638-92.909 21.512-211.92-71.707-266.224l100.626-174.293c28.65 16.696 61.915 26.254 97.4 26.254 107.197 0 194.144-87.192 194.701-194.958h201.254c-0.086 33.074 8.272 66.57 25.966 97.218 53.637 92.906 172.776 124.594 266.414 71.013l100.626 174.29c-28.782 16.469-53.694 40.499-71.435 71.23zM512 240.669c-114.507 0-207.336 92.824-207.336 207.334 0 114.507 92.826 207.334 207.336 207.334 114.507 0 207.331-92.826 207.331-207.334-0.002-114.51-92.824-207.334-207.331-207.334z" />
|
||||||
<glyph unicode="" d="M 620.164,63.378L 468.569,192.311c-15.671,14.104-32.431,20.579-45.97,19.954C 458.384,254.183, 480,308.564, 480,368
|
<glyph unicode="" d="M64 768h896v-192h-896zM64 512h896v-192h-896zM64 256h896v-192h-896z" />
|
||||||
C 480,500.549, 372.549,608, 240,608C 107.453,608,0,500.549,0,368c0-132.549, 107.451-240, 240-240c 59.436,0, 113.817,21.616, 155.735,57.402
|
<glyph unicode="" d="M1002.934 142.123l-460.552 394.76c21.448 40.299 33.618 86.283 33.618 135.117 0 159.058-128.942 288-288 288-29.094 0-57.173-4.333-83.646-12.354l166.39-166.39c24.89-24.89 24.89-65.621 0-90.51l-101.49-101.49c-24.89-24.89-65.621-24.89-90.51 0l-166.39 166.39c-8.021-26.475-12.354-54.552-12.354-83.646 0-159.058 128.942-288 288-288 48.834 0 94.818 12.17 135.117 33.619l394.76-460.552c22.909-26.725 62.016-28.226 86.904-3.338l101.493 101.493c24.886 24.888 23.384 63.994-3.339 86.901z" />
|
||||||
c-0.625-13.539, 5.85-30.299, 19.954-45.97l 128.934-151.595c 22.076-24.529, 58.139-26.596, 80.138-4.598S 644.692,41.301, 620.164,63.378
|
<glyph unicode="" d="M448 832v16c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576zM256 704v128h128v-128h-128zM832 528c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-576v-128h576v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h192v128h-192v16zM640 384v128h128v-128h-128zM448 208c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576v16zM256 64v128h128v-128h-128z" />
|
||||||
z M 240,208c-88.365,0-160,71.635-160,160S 151.635,528, 240,528s 160-71.635, 160-160S 328.366,208, 240,208zM 280,488L 200,488L 200,408L 120,408L 120,328L 200,328L 200,248L 280,248L 280,328L 360,328L 360,408L 280,408 z" />
|
<glyph unicode="" d="M874.022 810.021c-92.653 92.654-220.637 149.979-362.022 149.979-219.488 0-406.69-138.128-479.498-332.189l119.875-44.954c54.605 145.546 195.006 249.142 359.622 249.142 106.040 0 202.021-43 271.506-112.494l-143.506-143.506h384v384l-149.978-149.979zM512 64c-106.040 0-202.026 42.992-271.512 112.488l143.512 143.512h-384v-384l149.994 149.994c92.646-92.662 220.619-149.994 362.006-149.994 219.49 0 406.693 138.128 479.501 332.189l-119.875 44.954c-54.606-145.546-195.008-249.142-359.626-249.142z" />
|
||||||
<glyph unicode="" d="M 640,608 L 640,348 L 540,448 L 420,328 L 360,388 L 480,508 L 380,608 ZM 280,188 L 160,68 L 260-32 L 0-32 L 0,228 L 100,128 L 220,248 Z" />
|
<glyph unicode="" d="M1024 704c0 141.312-114.752 256-256 256-95.488 0-177.984-53.056-222.016-130.752 0 0.064 0.128 0.128 0.128 0.192-11.744 1.12-23.136 3.552-35.136 3.552-212.128 0-384-171.872-384-384 0-80.864 25.248-155.744 67.872-217.504l-194.848-295.488 297.248 193.984c61.12-40.992 134.624-64.992 213.76-64.992 212.128 0 384 171.872 384 384 0 11.072-2.24 21.44-3.264 32.256 78.496 43.744 132.256 126.56 132.256 222.752zM511.008 192.992c-141.248 0-256 114.752-256 256 0 141.184 114.752 256 256 256 0.384 0 0.736-0.128 0.992-0.128 0 0.256 0.128 0.448 0.128 0.64 0-0.512-0.128-0.992-0.128-1.504 0-22.24 3.744-43.36 8.992-63.936l-101.504-101.568c-49.984-49.984-49.984-131.008 0-180.992s131.008-49.984 180.992 0l100.512 100.512c21.12-5.76 43.008-9.76 65.888-9.888-0.512-140.864-115.008-255.136-255.872-255.136zM768 576c-70.496 0-128 57.44-128 128s57.504 128 128 128 128-57.44 128-128-57.504-128-128-128z" />
|
||||||
<glyph unicode="" d="M 640,608 L 640,368 L 553.587,454.412 L 421.087,321.913 L 353.913,389.088 L 486.413,521.588 L 400,608 ZM 153.588,521.588 L 286.087,389.088 L 218.912,321.913 L 86.412,454.412 L 0,368 L 0,608 L 240,608 ZM 553.587,121.587 L 640,208 L 640-32 L 400-32 L 486.413,54.413 L 353.913,186.913 L 421.087,254.087 ZM 286.087,186.913 L 153.588,54.413 L 240-32 L 0-32 L 0,208 L 86.412,121.587 L 218.912,254.087 Z" />
|
<glyph unicode="" d="M383.232 448c0-13.21 13.414-22.63 13.414-22.63l372.48-233.933c27.597-18.074 50.074-4.762 50.074 29.44v454.246c0 34.253-22.477 47.565-50.074 29.491l-372.48-233.984c0-0.051-13.414-9.421-13.414-22.63zM204.8 685.722v-475.443c0-45.466 31.334-59.392 76.8-59.392s76.8 13.926 76.8 59.341v475.494c0 45.517-31.334 59.443-76.8 59.443s-76.8-13.978-76.8-59.443z" />
|
||||||
<glyph unicode="" d="M 520,8L 640,328L 120,328L0,8 zM 80,368 L 0,8 L 0,528 L 180,528 L 260,448 L 520,448 L 520,368 Z" />
|
<glyph unicode="" d="M627.354 470.63l-372.48 233.984c-27.546 18.022-50.074 4.762-50.074-29.542v-454.195c0-34.304 22.528-47.514 50.074-29.491l372.48 233.933c0 0 13.466 9.472 13.466 22.63s-13.466 22.682-13.466 22.682zM742.4 745.165c-45.466 0-76.8-13.978-76.8-59.443v-475.443c0-45.517 31.334-59.494 76.8-59.494s76.8 13.978 76.8 59.494v475.443c0 45.466-31.334 59.443-76.8 59.443z" />
|
||||||
<glyph unicode="" d="M 0,408 L 640,408 L 600,8 L 40,8 L 0,408 Z M 580,488 L 600,448 L 40,448 L 80,528 L 300,528 L 320,488 L 580,488 Z" />
|
<glyph unicode="" d="M40.96 448c0-260.147 210.944-471.040 471.040-471.040 260.147 0 471.040 210.893 471.040 471.040 0 260.147-210.893 471.040-471.040 471.040-260.147 0-471.040-210.893-471.040-471.040zM880.64 448c0-203.571-165.069-368.64-368.64-368.64s-368.64 165.018-368.64 368.64c0 203.622 165.018 368.64 368.64 368.64s368.64-165.018 368.64-368.64zM314.88 540.16v-184.32h209.408v-115.2l195.072 207.36-195.072 207.36v-115.2h-209.408z" />
|
||||||
<glyph unicode="" d="M 583.619,226.594c-33.579,58.159-13.385,132.69, 45.095,166.555l-62.891,108.933c-17.969-10.534-38.86-16.574-61.154-16.574
|
<glyph unicode="" d="M983.040 448c0 260.147-210.893 471.040-471.040 471.040s-471.040-210.893-471.040-471.040c0-260.198 210.893-471.091 471.040-471.091s471.040 210.944 471.040 471.091zM143.36 448c0 203.571 165.069 368.64 368.64 368.64s368.64-165.069 368.64-368.64c0-203.622-165.069-368.691-368.64-368.691s-368.64 165.069-368.64 368.691zM709.12 355.84v184.32h-209.408v115.2l-195.072-207.36 195.072-207.36v115.2h209.408z" />
|
||||||
c-67.21,0-121.692,54.841-121.692,122.494L 257.19,608.001 c 0.166-20.881-5.046-42.051-16.224-61.407
|
<glyph unicode="" d="M716.749 683.52l0.051-471.040-409.6 235.52z" />
|
||||||
c-33.578-58.16-108.222-77.939-166.789-44.224L 11.287,393.437c 18.106-10.295, 33.781-25.367, 44.929-44.674
|
<glyph unicode="" d="M307.251 683.52l-0.051-471.040 409.6 235.52z" />
|
||||||
c 33.524-58.068, 13.445-132.45-44.817-166.39l 62.891-108.933c 17.906,10.435, 38.697,16.409, 60.875,16.409
|
<glyph unicode="" d="M511.232 837.12v-195.994l359.27 0.051v-386.662h-359.27v-195.635l-388.25 389.12z" />
|
||||||
c 66.998,0, 121.34-54.495, 121.688-121.849l 125.784,0 c-0.054,20.671, 5.17,41.606, 16.229,60.761
|
<glyph unicode="" d="M512.768 837.12v-195.994l-359.27 0.051v-386.662h359.27v-195.635l388.25 389.12z" />
|
||||||
c 33.523,58.066, 107.985,77.871, 166.509,44.383l 62.891,108.931C 610.277,192.368, 594.707,207.387, 583.619,226.594z M 320,158.418
|
<glyph unicode="" d="M71.629 448c0-14.285 14.285-24.525 14.285-24.525l382.106-253.389c29.286-19.61 53.35-5.222 53.35 31.949v491.981c0 37.171-24.064 51.507-53.35 32l-382.106-253.44c0.051-0.051-14.285-10.291-14.285-24.576zM536.32 448c0-14.285 14.285-24.525 14.285-24.525l368.794-253.389c29.338-19.61 53.35-5.222 53.35 31.949v491.981c0 37.171-24.013 51.507-53.35 32l-368.794-253.44c0-0.051-14.285-10.291-14.285-24.576z" />
|
||||||
c-71.567,0-129.585,58.015-129.585,129.584c0,71.567, 58.016,129.584, 129.585,129.584c 71.567,0, 129.582-58.016, 129.582-129.584
|
<glyph unicode="" d="M938.035 472.525l-382.054 253.44c-29.338 19.558-53.402 5.171-53.402-31.949v-491.981c0-37.171 24.064-51.558 53.402-31.949l382.054 253.389c0 0 14.285 10.24 14.285 24.525s-14.285 24.525-14.285 24.525zM473.395 472.525l-368.845 253.491c-29.286 19.507-53.299 5.12-53.299-32v-491.981c0-37.171 24.013-51.558 53.35-31.949l368.845 253.389c0 0 14.285 10.24 14.285 24.525s-14.336 24.525-14.336 24.525z" />
|
||||||
C 449.581,216.433, 391.567,158.418, 320,158.418z" />
|
<glyph unicode="" d="M972.8 488.96c-9.318 0-40.909 0-50.176 0-28.262 0-51.2-18.33-51.2-40.96s22.938-40.96 51.2-40.96c9.318 0 40.909 0 50.176 0 28.314 0 51.2 18.33 51.2 40.96s-22.886 40.96-51.2 40.96zM512 729.6c-156.16 0-281.6-125.44-281.6-281.6 0-156.211 125.44-281.6 281.6-281.6 156.211 0 281.6 125.389 281.6 281.6 0 156.16-125.389 281.6-281.6 281.6zM512 243.2c-113.152 0-204.8 91.648-204.8 204.8 0 113.101 91.648 204.8 204.8 204.8s204.8-91.699 204.8-204.8c0-113.152-91.648-204.8-204.8-204.8zM152.525 448c0 22.63-21.862 40.96-50.125 40.96-9.472 0-41.779 0-51.2 0-28.262 0-51.2-18.33-51.2-40.96s22.938-40.96 51.2-40.96c9.421 0 41.728 0 51.2 0 28.262 0 50.125 18.33 50.125 40.96zM512 806.4c22.579 0 40.96 22.938 40.96 51.2 0 9.37 0 41.83 0 51.2 0 28.262-18.33 51.2-40.96 51.2s-40.96-22.938-40.96-51.2c0-9.37 0-41.83 0-51.2 0-28.262 18.381-51.2 40.96-51.2zM512 89.6c-22.579 0-40.96-22.938-40.96-51.2 0-9.37 0-41.83 0-51.2 0-28.314 18.33-51.2 40.96-51.2s40.96 22.886 40.96 51.2c0 9.37 0 41.83 0 51.2 0 28.262-18.381 51.2-40.96 51.2zM889.088 767.181c20.019 20.019 23.245 49.203 7.27 65.178s-45.158 12.749-65.126-7.27c-5.478-5.53-30.31-30.31-35.84-35.84-20.019-20.019-23.245-49.152-7.27-65.126s45.21-12.8 65.178 7.219c5.478 5.53 30.31 30.31 35.789 35.84zM170.701 164.659c-5.53-5.53-30.31-30.362-35.84-35.84-19.968-20.019-23.194-49.152-7.219-65.126 15.974-15.974 45.158-12.749 65.126 7.219 5.53 5.478 30.362 30.31 35.84 35.84 20.019 20.019 23.245 49.152 7.219 65.126s-45.158 12.698-65.126-7.219zM192.819 825.139c-20.019 19.968-49.152 23.245-65.178 7.219s-12.749-45.158 7.219-65.178c5.53-5.53 30.31-30.31 35.84-35.84 20.019-19.968 49.152-23.245 65.126-7.219s12.8 45.158-7.219 65.126c-5.478 5.53-30.259 30.362-35.789 35.891zM795.341 106.701c5.53-5.53 30.362-30.362 35.84-35.84 20.019-19.968 49.203-23.194 65.178-7.219 15.974 15.974 12.698 45.158-7.27 65.126-5.53 5.478-30.362 30.31-35.84 35.84-20.019 19.968-49.203 23.194-65.178 7.219s-12.646-45.107 7.27-65.126z" />
|
||||||
<glyph unicode="" d="M 40,488L 600,488L 600,368L 40,368zM 40,328L 600,328L 600,208L 40,208zM 40,168L 600,168L 600,48L 40,48z" />
|
<glyph unicode="" d="M895.941 326.498c-0.011 0.706-0.030 1.402-0.042 2.106-0.032 1.427-0.070 2.854-0.118 4.28-10.030 315.648-383.781 627.117-383.781 627.117s-373.754-311.469-383.779-627.122c-0.043-1.43-0.088-2.851-0.12-4.282-0.014-0.704-0.030-1.402-0.042-2.106-0.035-2.16-0.056-4.323-0.056-6.496 0-2.368 0.029-4.722 0.070-7.078 0.005-0.195 0.006-0.39 0.014-0.586 4.075-208.533 174.394-376.331 383.912-376.331 209.515 0 379.832 167.798 383.918 376.336 0.005 0.195 0.008 0.392 0.010 0.586 0.042 2.355 0.072 4.714 0.072 7.078 0 2.173-0.024 4.336-0.059 6.498zM767.95 315.261l-0.008-0.406c-1.318-67.286-28.531-130.334-76.626-177.549-48.142-47.272-111.83-73.306-179.317-73.306-12.462 0-24.794 0.894-36.925 2.638 139.056 82.846 232.216 234.704 232.216 408.322 0 19.456-1.179 38.634-3.451 57.48 40.272-73.939 62.064-142.8 64.002-203.626l0.005-0.144c0.032-0.949 0.053-1.891 0.078-2.843l0.029-1.448c0.027-1.458 0.046-2.918 0.046-4.379 0-1.584-0.019-3.162-0.050-4.739z" />
|
||||||
<glyph unicode="" d="M 626.834,96.827l-287.845,246.725C 352.394,368.739, 360,397.479, 360,428C 360,527.411, 279.411,608, 180,608
|
<glyph unicode="" d="M832 704h-192v64l-192 192h-448v-768h384v-256h640v576l-192 192zM832 613.49l101.49-101.49h-101.49v101.49zM448 869.49l101.49-101.49h-101.49v101.49zM64 896h320v-192h192v-448h-512v640zM960 0h-512v192h192v448h128v-192h192v-448z" />
|
||||||
c-18.184,0-35.733-2.708-52.279-7.721l 103.994-103.994c 15.556-15.556, 15.556-41.013,0-56.569l-63.431-63.431
|
<glyph unicode="" d="M960-64h-320q-27 0-45.5 18.5t-18.5 45.5v320q0 27 18.5 45.5t45.5 18.5h320q26 0 45-18.5t19-45.5v-320q0-27-19-45.5t-45-18.5zM896 224q0 13-9.5 22.5t-22.5 9.5h-128q-13 0-22.5-9.5t-9.5-22.5v-128q0-13 9.5-22.5t22.5-9.5h128q13 0 22.5 9.5t9.5 22.5v128zM960 512h-320q-27 0-45.5 19t-18.5 45v320q0 27 18.5 45.5t45.5 18.5h320q26 0 45-18.5t19-45.5v-320q0-26-19-45t-45-19zM896 800q0 13-9.5 22.5t-22.5 9.5h-128q-13 0-22.5-9.5t-9.5-22.5v-128q0-13 9.5-22.5t22.5-9.5h128q13 0 22.5 9.5t9.5 22.5v128zM384-64h-320q-26 0-45 18.5t-19 45.5v320q0 27 19 45.5t45 18.5h320q27 0 45.5-18.5t18.5-45.5v-320q0-27-19-45.5t-45-18.5zM320 224q0 13-9.5 22.5t-22.5 9.5h-128q-13 0-22.5-9.5t-9.5-22.5v-128q0-13 9.5-22.5t22.5-9.5h128q13 0 22.5 9.5t9.5 22.5v128zM384 512h-320q-26 0-45 19t-19 45v320q0 27 19 45.5t45 18.5h320q27 0 45.5-18.5t18.5-45.5v-320q0-26-19-45t-45-19zM320 800q0 13-9.5 22.5t-22.5 9.5h-128q-13 0-22.5-9.5t-9.5-22.5v-128q0-13 9.5-22.5t22.5-9.5h128q13 0 22.5 9.5t9.5 22.5v128z" />
|
||||||
c-15.556-15.556-41.013-15.556-56.569,0L 7.721,480.279C 2.708,463.732,0,446.184,0,428c0-99.411, 80.589-180, 180-180
|
<glyph unicode="" d="M292.571 237.714v-109.714q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v109.714q0 22.857 16 38.857t38.857 16h182.857q22.857 0 38.857-16t16-38.857zM292.571 530.286v-109.714q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v109.714q0 22.857 16 38.857t38.857 16h182.857q22.857 0 38.857-16t16-38.857zM658.286 237.714v-109.714q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v109.714q0 22.857 16 38.857t38.857 16h182.857q22.857 0 38.857-16t16-38.857zM292.571 822.857v-109.714q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v109.714q0 22.857 16 38.857t38.857 16h182.857q22.857 0 38.857-16t16-38.857zM658.286 530.286v-109.714q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v109.714q0 22.857 16 38.857t38.857 16h182.857q22.857 0 38.857-16t16-38.857zM1024 237.714v-109.714q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v109.714q0 22.857 16 38.857t38.857 16h182.857q22.857 0 38.857-16t16-38.857zM658.286 822.857v-109.714q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v109.714q0 22.857 16 38.857t38.857 16h182.857q22.857 0 38.857-16t16-38.857zM1024 530.286v-109.714q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v109.714q0 22.857 16 38.857t38.857 16h182.857q22.857 0 38.857-16t16-38.857zM1024 822.857v-109.714q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v109.714q0 22.857 16 38.857t38.857 16h182.857q22.857 0 38.857-16t16-38.857z" />
|
||||||
c 30.521,0, 59.261,7.606, 84.448,21.012l 246.725-287.845c 14.318-16.703, 38.76-17.641, 54.315-2.086l 63.433,63.433
|
<glyph unicode="" d="M0 960l1024-1024h-1024z" />
|
||||||
C 644.475,58.069, 643.536,82.51, 626.834,96.827z" />
|
<glyph unicode="" d="M741.027 204.571q0-22.858-16-38.858l-77.714-77.714q-16-16-38.858-16t-38.858 16l-168 168-168-168q-16-16-38.858-16t-38.858 16l-77.714 77.714q-16 16-16 38.858t16 38.858l168 168-168 168q-16 16-16 38.858t16 38.858l77.714 77.714q16 16 38.858 16t38.858-16l168-168 168 168q16 16 38.858 16t38.858-16l77.714-77.714q16-16 16-38.858t-16-38.858l-168-168 168-168q16-16 16-38.858z" horiz-adv-x="803" />
|
||||||
<glyph unicode="" d="M 280,528l0,10 c0,16.5-13.5,30-30,30l-100,0 c-16.5,0-30-13.5-30-30l0-10 L0,528 l0-80 l 120,0 l0-10 c0-16.5, 13.5-30, 30-30l 100,0 c 16.5,0, 30,13.5, 30,30l0,10
|
<glyph unicode="" d="M438.4 886.858q119.429 0 220.286-58.858t159.714-159.714 58.858-220.286-58.858-220.286-159.714-159.714-220.286-58.858-220.286 58.858-159.714 159.714-58.858 220.286 58.858 220.286 159.714 159.714 220.286 58.858zM145.829 448q0-59.429 23.142-113.429t62.571-93.429 93.429-62.571 113.429-23.142v585.142q-59.429 0-113.429-23.142t-93.429-62.571-62.571-93.429-23.142-113.429z" horiz-adv-x="877" />
|
||||||
l 360,0 L 640,528 L 280,528 z M 160,448L 160,528 l 80,0 l0-80 L 160,448 zM 520,338c0,16.5-13.5,30-30,30l-100,0 c-16.5,0-30-13.5-30-30l0-10 L0,328 l0-80 l 360,0 l0-10 c0-16.5, 13.5-30, 30-30l 100,0 c 16.5,0, 30,13.5, 30,30l0,10
|
<glyph unicode="" d="M656.114 318.858q0 14.858-10.858 25.714l-103.429 103.429 103.429 103.429q10.858 10.858 10.858 25.714 0 15.429-10.858 26.286l-51.429 51.429q-10.858 10.858-26.286 10.858-14.858 0-25.714-10.858l-103.429-103.429-103.429 103.429q-10.858 10.858-25.714 10.858-15.429 0-26.286-10.858l-51.429-51.429q-10.858-10.858-10.858-26.286 0-14.858 10.858-25.714l103.429-103.429-103.429-103.429q-10.858-10.858-10.858-25.714 0-15.429 10.858-26.286l51.429-51.429q10.858-10.858 26.286-10.858 14.858 0 25.714 10.858l103.429 103.429 103.429-103.429q10.858-10.858 25.714-10.858 15.429 0 26.286 10.858l51.429 51.429q10.858 10.858 10.858 26.286zM877.256 448q0-119.429-58.858-220.286t-159.714-159.714-220.286-58.858-220.286 58.858-159.714 159.714-58.858 220.286 58.858 220.286 159.714 159.714 220.286 58.858 220.286-58.858 159.714-159.714 58.858-220.286z" horiz-adv-x="877" />
|
||||||
l 120,0 l0,80 l-120,0 L 520,338 z M 400,248l0,80 l 80,0 l0-80 L 400,248 zM 280,138c0,16.5-13.5,30-30,30l-100,0 c-16.5,0-30-13.5-30-30l0-10 L0,128 l0-80 l 120,0 l0-10 c0-16.5, 13.5-30, 30-30l 100,0 c 16.5,0, 30,13.5, 30,30l0,10
|
|
||||||
l 360,0 l0,80 L 280,128 L 280,138 z M 160,48l0,80 l 80,0 l0-80 L 160,48 z" />
|
|
||||||
<glyph unicode="" d="M 546.264,514.263C 488.356,572.172, 408.366,608, 320,608C 182.82,608, 65.819,521.67, 20.314,400.382l 74.922-28.096
|
|
||||||
C 129.364,463.252, 217.115,528, 320,528c 66.275,0, 126.263-26.875, 169.691-70.309L 400,368l 240,0 L 640,608 L 546.264,514.263zM 320,48c-66.275,0-126.266,26.87-169.695,70.305L 240,208L0,208 l0-240 l 93.746,93.746C 151.65,3.832, 231.633-32, 320-32
|
|
||||||
c 137.181,0, 254.183,86.33, 299.688,207.618l-74.922,28.096C 510.637,112.748, 422.886,48, 320,48z" />
|
|
||||||
<glyph unicode="" d="M 640,448c0,88.32-71.72,160-160,160c-59.68,0-111.24-33.16-138.76-81.72c0,0.040, 0.080,0.080, 0.080,0.12
|
|
||||||
c-7.34,0.7-14.46,2.22-21.96,2.22c-132.58,0-240-107.42-240-240c0-50.54, 15.78-97.34, 42.42-135.94L0-32l 185.78,121.24
|
|
||||||
c 38.2-25.62, 84.14-40.62, 133.6-40.62c 132.58,0, 240,107.42, 240,240c0,6.92-1.4,13.4-2.040,20.16C 606.4,336.12, 640,387.88, 640,448z
|
|
||||||
M 319.38,128.62c-88.28,0-160,71.72-160,160c0,88.24, 71.72,160, 160,160c 0.24,0, 0.46-0.080, 0.62-0.080c0,0.16, 0.080,0.28, 0.080,0.4
|
|
||||||
C 320.080,448.62, 320,448.32, 320,448c0-13.9, 2.34-27.1, 5.62-39.96l-63.44-63.48c-31.24-31.24-31.24-81.88,0-113.12s 81.88-31.24, 113.12,0
|
|
||||||
l 62.82,62.82c 13.2-3.6, 26.88-6.1, 41.18-6.18C 478.98,200.040, 407.42,128.62, 319.38,128.62z M 480,368c-44.060,0-80,35.9-80,80
|
|
||||||
s 35.94,80, 80,80s 80-35.9, 80-80S 524.060,368, 480,368z" />
|
|
||||||
<glyph unicode="" d="M 239.52,288c0-8.256, 8.384-14.144, 8.384-14.144l 232.8-146.208C 497.952,116.352, 512,124.672, 512,146.048L 512,429.952
|
|
||||||
c0,21.408-14.048,29.728-31.296,18.432l-232.8-146.24C 247.904,302.112, 239.52,296.256, 239.52,288z M 128,436.576l0-297.152 c0-28.416, 19.584-37.12, 48-37.12
|
|
||||||
S 224,111.008, 224,139.392L 224,436.576 c0,28.448-19.584,37.152-48,37.152S 128,464.992, 128,436.576z" />
|
|
||||||
<glyph unicode="" d="M 392.096,302.144l-232.8,146.24C 142.080,459.648, 128,451.36, 128,429.92l0-283.872 c0-21.44, 14.080-29.696, 31.296-18.432l 232.8,146.208
|
|
||||||
c0,0, 8.416,5.92, 8.416,14.144S 392.096,302.144, 392.096,302.144z M 464,473.728c-28.416,0-48-8.736-48-37.152l0-297.152
|
|
||||||
c0-28.448, 19.584-37.184, 48-37.184s 48,8.736, 48,37.184L 512,436.576 C 512,464.992, 492.416,473.728, 464,473.728z" />
|
|
||||||
<glyph unicode="" d="M 614.4,288c0,162.592-131.808,294.4-294.4,294.4S 25.6,450.592, 25.6,288c0-162.624, 131.808-294.432, 294.4-294.432S 614.4,125.408, 614.4,288z M 89.6,288
|
|
||||||
c0,127.232, 103.168,230.4, 230.4,230.4s 230.4-103.168, 230.4-230.4c0-127.264-103.168-230.432-230.4-230.432S 89.6,160.736, 89.6,288z M 443.2,230.4L 443.2,345.6 L 312.32,345.6 L 312.32,417.6
|
|
||||||
L 190.4,288l 121.92-129.6L 312.32,230.4 L 443.2,230.4 z" />
|
|
||||||
<glyph unicode="" d="M 25.6,288c0-162.592, 131.84-294.4, 294.4-294.4c 162.592,0, 294.4,131.808, 294.4,294.4C 614.4,450.592, 482.592,582.4, 320,582.4C 157.408,582.4, 25.6,450.592, 25.6,288z
|
|
||||||
M 550.4,288c0-127.232-103.168-230.4-230.4-230.4S 89.6,160.736, 89.6,288C 89.6,415.264, 192.736,518.4, 320,518.4S 550.4,415.264, 550.4,288z M 196.8,345.6l0-115.2 l 130.88,0 l0-72
|
|
||||||
L 449.6,288l-121.92,129.6L 327.68,345.6 L 196.8,345.6 z" />
|
|
||||||
<glyph unicode="" d="M 447.968,435.2L 448,140.8L 192,288 z" />
|
|
||||||
<glyph unicode="" d="M 192.032,435.2L 192,140.8L 448,288 z" />
|
|
||||||
<glyph unicode="" d="M 319.52,531.2L 319.52,408.704L 544.064,408.736L 544.064,167.072L 319.52,167.072L 319.52,44.8L 76.864,288 z" />
|
|
||||||
<glyph unicode="" d="M 320.48,531.2L 320.48,408.704L 95.936,408.736L 95.936,167.072L 320.48,167.072L 320.48,44.8L 563.136,288 z" />
|
|
||||||
<glyph unicode="" d="M 44.768,288c0-8.928, 8.928-15.328, 8.928-15.328l 238.816-158.368c 18.304-12.256, 33.344-3.264, 33.344,19.968L 325.856,441.76
|
|
||||||
c0,23.232-15.040,32.192-33.344,20l-238.816-158.4C 53.728,303.328, 44.768,296.928, 44.768,288z M 335.2,288c0-8.928, 8.928-15.328, 8.928-15.328
|
|
||||||
l 230.496-158.368c 18.336-12.256, 33.344-3.264, 33.344,19.968L 607.968,441.76 c0,23.232-15.008,32.192-33.344,20l-230.496-158.4
|
|
||||||
C 344.128,303.328, 335.2,296.928, 335.2,288z" />
|
|
||||||
<glyph unicode="" d="M 586.272,303.328l-238.784,158.4C 329.152,473.952, 314.112,464.96, 314.112,441.76l0-307.488 c0-23.232, 15.040-32.224, 33.376-19.968l 238.784,158.368
|
|
||||||
c0,0, 8.928,6.4, 8.928,15.328S 586.272,303.328, 586.272,303.328z M 295.872,303.328L 65.344,461.76C 47.040,473.952, 32.032,464.96, 32.032,441.76l0-307.488
|
|
||||||
c0-23.232, 15.008-32.224, 33.344-19.968l 230.528,158.368c0,0, 8.928,6.4, 8.928,15.328S 295.872,303.328, 295.872,303.328z" />
|
|
||||||
<glyph unicode="" d="M 559.963,212.061c-0.007,0.441-0.019,0.876-0.026,1.316c-0.020,0.892-0.044,1.784-0.074,2.675C 553.594,413.332, 320,608, 320,608
|
|
||||||
S 86.404,413.332, 80.138,216.049c-0.027-0.894-0.055-1.782-0.075-2.676c-0.009-0.44-0.019-0.876-0.026-1.316
|
|
||||||
c-0.022-1.35-0.035-2.702-0.035-4.060c0-1.48, 0.018-2.951, 0.044-4.424c 0.003-0.122, 0.004-0.244, 0.009-0.366
|
|
||||||
C 82.602,72.874, 189.051-32, 320-32c 130.947,0, 237.395,104.874, 239.949,235.21c 0.003,0.122, 0.005,0.245, 0.006,0.366
|
|
||||||
c 0.026,1.472, 0.045,2.946, 0.045,4.424C 560,209.358, 559.985,210.71, 559.963,212.061z M 479.969,205.038l-0.005-0.254
|
|
||||||
c-0.824-42.054-17.832-81.459-47.891-110.968C 401.984,64.271, 362.179,48, 320,48c-7.789,0-15.496,0.559-23.078,1.649
|
|
||||||
c 86.91,51.779, 145.135,146.69, 145.135,255.201c0,12.16-0.737,24.146-2.157,35.925c 25.17-46.212, 38.79-89.25, 40.001-127.266
|
|
||||||
l 0.003-0.090c 0.020-0.593, 0.033-1.182, 0.049-1.777l 0.018-0.905C 479.988,209.826, 480,208.913, 480,208
|
|
||||||
C 480,207.010, 479.988,206.024, 479.969,205.038z" />
|
|
||||||
<glyph unicode="" d="M 274,562.286q 74.643,0 137.679-36.786t 99.821-99.821t 36.786-137.679t-36.786-137.679t-99.821-99.821t-137.679-36.786t-137.679,36.786t-99.821,99.821t-36.786,137.679t 36.786,137.679t 99.821,99.821t 137.679,36.786zM 91.143,288q0-37.143 14.464-70.893t 39.107-58.393t 58.393-39.107t 70.893-14.464l0,365.714 q-37.143,0 -70.893-14.464 t-58.393-39.107t-39.107-58.393t-14.464-70.893z" horiz-adv-x="548" />
|
|
||||||
<glyph unicode="" d="M 608,313.6c-5.824,0-25.568,0-31.36,0c-17.664,0-32-11.456-32-25.6s 14.336-25.6, 32-25.6c 5.824,0, 25.568,0, 31.36,0c 17.696,0, 32,11.456, 32,25.6
|
|
||||||
S 625.696,313.6, 608,313.6z M 320,464C 222.4,464, 144,385.6, 144,288c0-97.632, 78.4-176, 176-176c 97.632,0, 176,78.368, 176,176
|
|
||||||
C 496,385.6, 417.632,464, 320,464z M 320,160c-70.72,0-128,57.28-128,128c0,70.688, 57.28,128, 128,128s 128-57.312, 128-128C 448,217.28, 390.72,160, 320,160z M 95.328,288
|
|
||||||
c0,14.144-13.664,25.6-31.328,25.6c-5.92,0-26.112,0-32,0c-17.664,0-32-11.456-32-25.6s 14.336-25.6, 32-25.6c 5.888,0, 26.080,0, 32,0
|
|
||||||
C 81.664,262.4, 95.328,273.856, 95.328,288z M 320,512c 14.112,0, 25.6,14.336, 25.6,32c0,5.856,0,26.144,0,32c0,17.664-11.456,32-25.6,32S 294.4,593.664, 294.4,576
|
|
||||||
c0-5.856,0-26.144,0-32C 294.4,526.336, 305.888,512, 320,512z M 320,64c-14.112,0-25.6-14.336-25.6-32c0-5.856,0-26.144,0-32c0-17.696, 11.456-32, 25.6-32
|
|
||||||
s 25.6,14.304, 25.6,32c0,5.856,0,26.144,0,32C 345.6,49.664, 334.112,64, 320,64z M 555.68,487.488c 12.512,12.512, 14.528,30.752, 4.544,40.736
|
|
||||||
s-28.224,7.968-40.704-4.544c-3.424-3.456-18.944-18.944-22.4-22.4c-12.512-12.512-14.528-30.72-4.544-40.704s 28.256-8, 40.736,4.512
|
|
||||||
C 536.736,468.544, 552.256,484.032, 555.68,487.488z M 106.688,110.912c-3.456-3.456-18.944-18.976-22.4-22.4c-12.48-12.512-14.496-30.72-4.512-40.704
|
|
||||||
c 9.984-9.984, 28.224-7.968, 40.704,4.512c 3.456,3.424, 18.976,18.944, 22.4,22.4c 12.512,12.512, 14.528,30.72, 4.512,40.704
|
|
||||||
S 119.168,123.36, 106.688,110.912z M 120.512,523.712C 108,536.192, 89.792,538.24, 79.776,528.224S 71.808,500, 84.288,487.488
|
|
||||||
c 3.456-3.456, 18.944-18.944, 22.4-22.4c 12.512-12.48, 30.72-14.528, 40.704-4.512s 8,28.224-4.512,40.704C 139.456,504.736, 123.968,520.256, 120.512,523.712z
|
|
||||||
M 497.088,74.688c 3.456-3.456, 18.976-18.976, 22.4-22.4c 12.512-12.48, 30.752-14.496, 40.736-4.512c 9.984,9.984, 7.936,28.224-4.544,40.704
|
|
||||||
c-3.456,3.424-18.976,18.944-22.4,22.4c-12.512,12.48-30.752,14.496-40.736,4.512S 484.64,87.2, 497.088,74.688z" />
|
|
||||||
<glyph unicode="" d="M 410.071,207.286q0,9.286 -6.786,16.071l-64.643,64.643l 64.643,64.643q 6.786,6.786 6.786,16.071q0,9.643 -6.786,16.429l-32.143,32.143q-6.786,6.786 -16.429,6.786q-9.286,0 -16.071-6.786l-64.643-64.643l-64.643,64.643q-6.786,6.786 -16.071,6.786q-9.643,0 -16.429-6.786l-32.143-32.143q-6.786-6.786 -6.786-16.429q0-9.286 6.786-16.071l 64.643-64.643l-64.643-64.643q-6.786-6.786 -6.786-16.071q0-9.643 6.786-16.429l 32.143-32.143q 6.786-6.786 16.429-6.786 q 9.286,0 16.071,6.786l 64.643,64.643l 64.643-64.643q 6.786-6.786 16.071-6.786q 9.643,0 16.429,6.786l 32.143,32.143q 6.786,6.786 6.786,16.429zM 548.285,288q0-74.643 -36.786-137.679t-99.821-99.821t-137.679-36.786t-137.679,36.786t-99.821,99.821t-36.786,137.679t 36.786,137.679t 99.821,99.821t 137.679,36.786t 137.679-36.786t 99.821-99.821t 36.786-137.679z" horiz-adv-x="548" />
|
|
||||||
<glyph unicode="" d="M 463.142,135.857q0-14.286 -10-24.286l-48.571-48.571q-10-10 -24.286-10t-24.286,10l-105,105l-105-105q-10-10 -24.286-10t-24.286,10l-48.571,48.571q-10,10 -10,24.286t 10,24.286l 105,105l-105,105q-10,10 -10,24.286t 10,24.286l 48.571,48.571q 10,10 24.286,10t 24.286-10l 105-105l 105,105q 10,10 24.286,10t 24.286-10l 48.571-48.571q 10-10 10-24.286 t-10-24.286l-105-105l 105-105q 10-10 10-24.286z" horiz-adv-x="502" />
|
|
||||||
<glyph unicode="" d="M 520,448l-120,0 L 400,488 L 280,608L0,608 l0-480 l 240,0 l0-160 l 400,0 L 640,328 L 520,448z M 520,391.431L 583.431,328L 520,328 L 520,391.431 z M 280,551.431L 343.431,488L 280,488
|
|
||||||
L 280,551.431 z M 40,568l 200,0 l0-120 l 120,0 l0-280 L 40,168 L 40,568 z M 600,8L 280,8 l0,120 l 120,0 L 400,408 l 80,0 l0-120 l 120,0 L 600,8 z" />
|
|
||||||
<glyph unicode=" " horiz-adv-x="320" />
|
|
||||||
</font></defs></svg>
|
</font></defs></svg>
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 16 KiB |
BIN
fonts/icomoon-toolbar/fonts/toolbar.ttf
Normal file → Executable file
BIN
fonts/icomoon-toolbar/fonts/toolbar.ttf
Normal file → Executable file
Binary file not shown.
BIN
fonts/icomoon-toolbar/fonts/toolbar.woff
Normal file → Executable file
BIN
fonts/icomoon-toolbar/fonts/toolbar.woff
Normal file → Executable file
Binary file not shown.
796
fonts/icomoon-toolbar/selection.json
Executable file
796
fonts/icomoon-toolbar/selection.json
Executable file
|
@ -0,0 +1,796 @@
|
||||||
|
{
|
||||||
|
"IcoMoonType": "selection",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M960 1024h-320q-27 0-45.5-18.5t-18.5-45.5v-320q0-27 18.5-45.5t45.5-18.5h320q26 0 45 18.5t19 45.5v320q0 27-19 45.5t-45 18.5zM896 736q0-13-9.5-22.5t-22.5-9.5h-128q-13 0-22.5 9.5t-9.5 22.5v128q0 13 9.5 22.5t22.5 9.5h128q13 0 22.5-9.5t9.5-22.5v-128zM960 448h-320q-27 0-45.5-19t-18.5-45v-320q0-27 18.5-45.5t45.5-18.5h320q26 0 45 18.5t19 45.5v320q0 26-19 45t-45 19zM896 160q0-13-9.5-22.5t-22.5-9.5h-128q-13 0-22.5 9.5t-9.5 22.5v128q0 13 9.5 22.5t22.5 9.5h128q13 0 22.5-9.5t9.5-22.5v-128zM384 1024h-320q-26 0-45-18.5t-19-45.5v-320q0-27 19-45.5t45-18.5h320q27 0 45.5 18.5t18.5 45.5v320q0 27-19 45.5t-45 18.5zM320 736q0-13-9.5-22.5t-22.5-9.5h-128q-13 0-22.5 9.5t-9.5 22.5v128q0 13 9.5 22.5t22.5 9.5h128q13 0 22.5-9.5t9.5-22.5v-128zM384 448h-320q-26 0-45-19t-19-45v-320q0-27 19-45.5t45-18.5h320q27 0 45.5 18.5t18.5 45.5v320q0 26-19 45t-45 19zM320 160q0-13-9.5-22.5t-22.5-9.5h-128q-13 0-22.5 9.5t-9.5 22.5v128q0 13 9.5 22.5t22.5 9.5h128q13 0 22.5-9.5t9.5-22.5v-128z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"thumbnails"
|
||||||
|
],
|
||||||
|
"grid": 16
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 1,
|
||||||
|
"id": 1508,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 58880,
|
||||||
|
"name": "thumbnails",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M0 0l1024 1024h-1024z"
|
||||||
|
],
|
||||||
|
"width": 0,
|
||||||
|
"defaultCode": 61440,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 2,
|
||||||
|
"id": 1,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 61440,
|
||||||
|
"name": "uniF000",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M892.118 188.118l-120.234-120.237c-37.339-37.336-111.085-67.882-163.885-67.882h-448c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h704c52.8 0 96-43.2 96-96v-576c0-52.8-30.546-126.546-67.882-163.882zM640 135.562c2.197 0.805 4.451 1.68 6.758 2.635 18.059 7.482 30.598 16.176 34.616 20.194l120.237 120.238c4.018 4.018 12.712 16.554 20.194 34.614 0.955 2.306 1.832 4.562 2.635 6.757l-184.44-0v-184.438zM832 896h-640v-768h384v256h256v512z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"file",
|
||||||
|
"paper",
|
||||||
|
"page",
|
||||||
|
"new",
|
||||||
|
"empty",
|
||||||
|
"blank",
|
||||||
|
"document"
|
||||||
|
],
|
||||||
|
"defaultCode": 57344,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 3,
|
||||||
|
"id": 2,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57344,
|
||||||
|
"name": "file",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M896 192h-768v640h768v-640zM1024 64v0 896h-1024v-896h1024zM832 768h-640v-128l192-320 263 320 185-128v64zM640 352c0 53.019 42.981 96 96 96 53.019 0 96-42.981 96-96 0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"image",
|
||||||
|
"picture",
|
||||||
|
"photo",
|
||||||
|
"graphic"
|
||||||
|
],
|
||||||
|
"defaultCode": 57345,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 4,
|
||||||
|
"id": 3,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57345,
|
||||||
|
"name": "image",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M992.262 871.395l-242.552-206.293c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.069 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.075 0-384 171.922-384 384 0 212.078 171.922 384 384 384 95.098 0 182.107-34.586 249.176-91.843-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.221 7.357s31.89-92.899-7.355-128.222zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256zM192 320h384v128h-384z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"zoom out",
|
||||||
|
"smaller",
|
||||||
|
"scale",
|
||||||
|
"reduce"
|
||||||
|
],
|
||||||
|
"defaultCode": 57346,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 5,
|
||||||
|
"id": 4,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57346,
|
||||||
|
"name": "zoom-out",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M992.262 871.395l-242.552-206.293c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.069 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.075 0-384 171.922-384 384 0 212.078 171.922 384 384 384 95.098 0 182.107-34.586 249.176-91.843-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.221 7.357s31.89-92.899-7.355-128.222zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256zM448 192h-128v128h-128v128h128v128h128v-128h128v-128h-128z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"zoom in",
|
||||||
|
"enlarge",
|
||||||
|
"scale"
|
||||||
|
],
|
||||||
|
"defaultCode": 57347,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 6,
|
||||||
|
"id": 5,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57347,
|
||||||
|
"name": "zoom-in",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M1024 0v416l-160-160-192 192-96-96 192-192-160-160zM448 672l-192 192 160 160h-416v-416l160 160 192-192z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"expand",
|
||||||
|
"enlarge",
|
||||||
|
"maximize",
|
||||||
|
"fullscreen"
|
||||||
|
],
|
||||||
|
"defaultCode": 57348,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 7,
|
||||||
|
"id": 6,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57348,
|
||||||
|
"name": "expand",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M1024 0v384l-138.261-138.259-212 211.998-107.478-107.48 212-212-138.261-138.259zM245.741 138.259l211.998 212-107.48 107.48-212-211.998-138.259 138.259v-384h384zM885.739 778.261l138.261-138.261v384h-384l138.261-138.261-212-212 107.478-107.478zM457.739 673.739l-211.998 212 138.259 138.261h-384v-384l138.259 138.261 212-212z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"expand",
|
||||||
|
"enlarge",
|
||||||
|
"maximize",
|
||||||
|
"fullscreen"
|
||||||
|
],
|
||||||
|
"defaultCode": 57349,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 8,
|
||||||
|
"id": 7,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57349,
|
||||||
|
"name": "expand2",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M832 960l192-512h-832l-192 512zM128 384l-128 576v-832h288l128 128h416v128z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"folder-open",
|
||||||
|
"directory",
|
||||||
|
"category",
|
||||||
|
"browse"
|
||||||
|
],
|
||||||
|
"defaultCode": 57350,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 9,
|
||||||
|
"id": 8,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57350,
|
||||||
|
"name": "folder-open",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M0 320h1024l-64 640h-896l-64-640zM928 192l32 64h-896l64-128h352l32 64h416z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"folder",
|
||||||
|
"directory",
|
||||||
|
"category",
|
||||||
|
"browse"
|
||||||
|
],
|
||||||
|
"defaultCode": 57351,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 10,
|
||||||
|
"id": 9,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57351,
|
||||||
|
"name": "folder",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M933.79 610.25c-53.726-93.054-21.416-212.304 72.152-266.488l-100.626-174.293c-28.75 16.854-62.176 26.518-97.846 26.518-107.536 0-194.707-87.746-194.707-195.99l-201.259 0.002c0.266 33.41-8.074 67.282-25.958 98.251-53.725 93.056-173.155 124.702-266.862 70.758l-100.624 174.293c28.97 16.472 54.050 40.587 71.886 71.478 53.638 92.909 21.512 211.92-71.707 266.224l100.626 174.293c28.65-16.696 61.915-26.254 97.4-26.254 107.197 0 194.144 87.192 194.701 194.958h201.254c-0.086-33.074 8.272-66.57 25.966-97.218 53.637-92.906 172.776-124.594 266.414-71.013l100.626-174.29c-28.782-16.469-53.694-40.499-71.435-71.23zM512 719.331c-114.507 0-207.336-92.824-207.336-207.334 0-114.507 92.826-207.334 207.336-207.334 114.507 0 207.331 92.826 207.331 207.334-0.002 114.51-92.824 207.334-207.331 207.334z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"cog",
|
||||||
|
"preferences",
|
||||||
|
"settings",
|
||||||
|
"gear",
|
||||||
|
"generate",
|
||||||
|
"control",
|
||||||
|
"options"
|
||||||
|
],
|
||||||
|
"defaultCode": 57352,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 11,
|
||||||
|
"id": 10,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57352,
|
||||||
|
"name": "cog",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M64 192h896v192h-896zM64 448h896v192h-896zM64 704h896v192h-896z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"menu",
|
||||||
|
"list",
|
||||||
|
"items",
|
||||||
|
"lines",
|
||||||
|
"options"
|
||||||
|
],
|
||||||
|
"defaultCode": 57353,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 12,
|
||||||
|
"id": 11,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57353,
|
||||||
|
"name": "menu",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M1002.934 817.877l-460.552-394.76c21.448-40.299 33.618-86.283 33.618-135.117 0-159.058-128.942-288-288-288-29.094 0-57.173 4.333-83.646 12.354l166.39 166.39c24.89 24.89 24.89 65.621 0 90.51l-101.49 101.49c-24.89 24.89-65.621 24.89-90.51 0l-166.39-166.39c-8.021 26.475-12.354 54.552-12.354 83.646 0 159.058 128.942 288 288 288 48.834 0 94.818-12.17 135.117-33.619l394.76 460.552c22.909 26.725 62.016 28.226 86.904 3.338l101.493-101.493c24.886-24.888 23.384-63.994-3.339-86.901z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"wrench",
|
||||||
|
"settings",
|
||||||
|
"control",
|
||||||
|
"tool",
|
||||||
|
"options",
|
||||||
|
"preferences",
|
||||||
|
"fix"
|
||||||
|
],
|
||||||
|
"defaultCode": 57354,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 13,
|
||||||
|
"id": 12,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57354,
|
||||||
|
"name": "wrench",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M448 128v-16c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-192v128h192v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h576v-128h-576zM256 256v-128h128v128h-128zM832 432c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-576v128h576v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h192v-128h-192v-16zM640 576v-128h128v128h-128zM448 752c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-192v128h192v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h576v-128h-576v-16zM256 896v-128h128v128h-128z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"settings",
|
||||||
|
"preferences",
|
||||||
|
"options"
|
||||||
|
],
|
||||||
|
"defaultCode": 57355,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 14,
|
||||||
|
"id": 13,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57355,
|
||||||
|
"name": "settings",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M874.022 149.979c-92.653-92.654-220.637-149.979-362.022-149.979-219.488 0-406.69 138.128-479.498 332.189l119.875 44.954c54.605-145.546 195.006-249.142 359.622-249.142 106.040 0 202.021 43 271.506 112.494l-143.506 143.506h384v-384l-149.978 149.979zM512 896c-106.040 0-202.026-42.992-271.512-112.488l143.512-143.512h-384v384l149.994-149.994c92.646 92.662 220.619 149.994 362.006 149.994 219.49 0 406.693-138.128 479.501-332.189l-119.875-44.954c-54.606 145.546-195.008 249.142-359.626 249.142z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"loop",
|
||||||
|
"repeat",
|
||||||
|
"reload",
|
||||||
|
"refresh",
|
||||||
|
"update",
|
||||||
|
"upgrade",
|
||||||
|
"synchronize",
|
||||||
|
"media control",
|
||||||
|
"arrows"
|
||||||
|
],
|
||||||
|
"defaultCode": 57356,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 15,
|
||||||
|
"id": 14,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57356,
|
||||||
|
"name": "loop",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M1024 256c0-141.312-114.752-256-256-256-95.488 0-177.984 53.056-222.016 130.752 0-0.064 0.128-0.128 0.128-0.192-11.744-1.12-23.136-3.552-35.136-3.552-212.128 0-384 171.872-384 384 0 80.864 25.248 155.744 67.872 217.504l-194.848 295.488 297.248-193.984c61.12 40.992 134.624 64.992 213.76 64.992 212.128 0 384-171.872 384-384 0-11.072-2.24-21.44-3.264-32.256 78.496-43.744 132.256-126.56 132.256-222.752zM511.008 767.008c-141.248 0-256-114.752-256-256 0-141.184 114.752-256 256-256 0.384 0 0.736 0.128 0.992 0.128 0-0.256 0.128-0.448 0.128-0.64 0 0.512-0.128 0.992-0.128 1.504 0 22.24 3.744 43.36 8.992 63.936l-101.504 101.568c-49.984 49.984-49.984 131.008 0 180.992s131.008 49.984 180.992 0l100.512-100.512c21.12 5.76 43.008 9.76 65.888 9.888-0.512 140.864-115.008 255.136-255.872 255.136zM768 384c-70.496 0-128-57.44-128-128s57.504-128 128-128 128 57.44 128 128-57.504 128-128 128z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"pin",
|
||||||
|
"location"
|
||||||
|
],
|
||||||
|
"defaultCode": 57357,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 16,
|
||||||
|
"id": 15,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57357,
|
||||||
|
"name": "pin",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M383.232 512c0 13.21 13.414 22.63 13.414 22.63l372.48 233.933c27.597 18.074 50.074 4.762 50.074-29.44v-454.246c0-34.253-22.477-47.565-50.074-29.491l-372.48 233.984c0 0.051-13.414 9.421-13.414 22.63zM204.8 274.278v475.443c0 45.466 31.334 59.392 76.8 59.392s76.8-13.926 76.8-59.341v-475.494c0-45.517-31.334-59.443-76.8-59.443s-76.8 13.978-76.8 59.443z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"first",
|
||||||
|
"start",
|
||||||
|
"media control"
|
||||||
|
],
|
||||||
|
"defaultCode": 57358,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 17,
|
||||||
|
"id": 16,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57358,
|
||||||
|
"name": "first",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M627.354 489.37l-372.48-233.984c-27.546-18.022-50.074-4.762-50.074 29.542v454.195c0 34.304 22.528 47.514 50.074 29.491l372.48-233.933c0 0 13.466-9.472 13.466-22.63s-13.466-22.682-13.466-22.682zM742.4 214.835c-45.466 0-76.8 13.978-76.8 59.443v475.443c0 45.517 31.334 59.494 76.8 59.494s76.8-13.978 76.8-59.494v-475.443c0-45.466-31.334-59.443-76.8-59.443z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"last",
|
||||||
|
"end",
|
||||||
|
"media control"
|
||||||
|
],
|
||||||
|
"defaultCode": 57359,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 18,
|
||||||
|
"id": 17,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57359,
|
||||||
|
"name": "last",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M983.040 512c0-260.147-210.893-471.040-471.040-471.040s-471.040 210.893-471.040 471.040c0 260.198 210.893 471.091 471.040 471.091s471.040-210.944 471.040-471.091zM143.36 512c0-203.571 165.069-368.64 368.64-368.64s368.64 165.069 368.64 368.64c0 203.622-165.069 368.691-368.64 368.691s-368.64-165.069-368.64-368.691zM709.12 604.16v-184.32h-209.408v-115.2l-195.072 207.36 195.072 207.36v-115.2h209.408z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"arrow-left",
|
||||||
|
"left",
|
||||||
|
"previous"
|
||||||
|
],
|
||||||
|
"defaultCode": 57361,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 19,
|
||||||
|
"id": 18,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57361,
|
||||||
|
"name": "arrow-left",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M40.96 512c0 260.147 210.944 471.040 471.040 471.040 260.147 0 471.040-210.893 471.040-471.040 0-260.147-210.893-471.040-471.040-471.040-260.147 0-471.040 210.893-471.040 471.040zM880.64 512c0 203.571-165.069 368.64-368.64 368.64s-368.64-165.018-368.64-368.64c0-203.622 165.018-368.64 368.64-368.64s368.64 165.018 368.64 368.64zM314.88 419.84v184.32h209.408v115.2l195.072-207.36-195.072-207.36v115.2h-209.408z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"arrow-right",
|
||||||
|
"right",
|
||||||
|
"next"
|
||||||
|
],
|
||||||
|
"defaultCode": 57360,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 20,
|
||||||
|
"id": 19,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57360,
|
||||||
|
"name": "arrow-right",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M716.749 276.48l0.051 471.040-409.6-235.52z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"arrow-left",
|
||||||
|
"left",
|
||||||
|
"triangle",
|
||||||
|
"previous"
|
||||||
|
],
|
||||||
|
"defaultCode": 57362,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 21,
|
||||||
|
"id": 20,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57362,
|
||||||
|
"name": "arrow-left2",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M307.251 276.48l-0.051 471.040 409.6-235.52z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"arrow-right",
|
||||||
|
"triangle",
|
||||||
|
"right",
|
||||||
|
"next"
|
||||||
|
],
|
||||||
|
"defaultCode": 57363,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 22,
|
||||||
|
"id": 21,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57363,
|
||||||
|
"name": "arrow-right2",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M511.232 122.88v195.994l359.27-0.051v386.662h-359.27v195.635l-388.25-389.12z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"arrow-left",
|
||||||
|
"left",
|
||||||
|
"previous"
|
||||||
|
],
|
||||||
|
"defaultCode": 57364,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 23,
|
||||||
|
"id": 22,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57364,
|
||||||
|
"name": "arrow-left3",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M512.768 122.88v195.994l-359.27-0.051v386.662h359.27v195.635l388.25-389.12z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"arrow-right",
|
||||||
|
"right",
|
||||||
|
"next"
|
||||||
|
],
|
||||||
|
"defaultCode": 57365,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 24,
|
||||||
|
"id": 23,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57365,
|
||||||
|
"name": "arrow-right3",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M71.629 512c0 14.285 14.285 24.525 14.285 24.525l382.106 253.389c29.286 19.61 53.35 5.222 53.35-31.949v-491.981c0-37.171-24.064-51.507-53.35-32l-382.106 253.44c0.051 0.051-14.285 10.291-14.285 24.576zM536.32 512c0 14.285 14.285 24.525 14.285 24.525l368.794 253.389c29.338 19.61 53.35 5.222 53.35-31.949l-0-491.981c0-37.171-24.013-51.507-53.35-32l-368.794 253.44c0 0.051-14.285 10.291-14.285 24.576z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"previous",
|
||||||
|
"media control"
|
||||||
|
],
|
||||||
|
"defaultCode": 57366,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 25,
|
||||||
|
"id": 24,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57366,
|
||||||
|
"name": "previous",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M938.035 487.475l-382.054-253.44c-29.338-19.558-53.402-5.171-53.402 31.949v491.981c0 37.171 24.064 51.558 53.402 31.949l382.054-253.389c0 0 14.285-10.24 14.285-24.525s-14.285-24.525-14.285-24.525zM473.395 487.475l-368.845-253.491c-29.286-19.507-53.299-5.12-53.299 32v491.981c0 37.171 24.013 51.558 53.35 31.949l368.845-253.389c0 0 14.285-10.24 14.285-24.525s-14.336-24.525-14.336-24.525z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"next",
|
||||||
|
"media control"
|
||||||
|
],
|
||||||
|
"defaultCode": 57367,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 26,
|
||||||
|
"id": 25,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57367,
|
||||||
|
"name": "next",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M895.941 633.502c-0.011-0.706-0.030-1.402-0.042-2.106-0.032-1.427-0.070-2.854-0.118-4.28-10.030-315.648-383.781-627.117-383.781-627.117s-373.754 311.469-383.779 627.122c-0.043 1.43-0.088 2.851-0.12 4.282-0.014 0.704-0.030 1.402-0.042 2.106-0.035 2.16-0.056 4.323-0.056 6.496 0 2.368 0.029 4.722 0.070 7.078 0.005 0.195 0.006 0.39 0.014 0.586 4.075 208.533 174.394 376.331 383.912 376.331 209.515 0 379.832-167.798 383.918-376.336 0.005-0.195 0.008-0.392 0.010-0.586 0.042-2.355 0.072-4.714 0.072-7.078 0-2.173-0.024-4.336-0.059-6.498zM767.95 644.739l-0.008 0.406c-1.318 67.286-28.531 130.334-76.626 177.549-48.142 47.272-111.83 73.306-179.317 73.306-12.462 0-24.794-0.894-36.925-2.638 139.056-82.846 232.216-234.704 232.216-408.322 0-19.456-1.179-38.634-3.451-57.48 40.272 73.939 62.064 142.8 64.002 203.626l0.005 0.144c0.032 0.949 0.053 1.891 0.078 2.843l0.029 1.448c0.027 1.458 0.046 2.918 0.046 4.379 0 1.584-0.019 3.162-0.050 4.739z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"droplet",
|
||||||
|
"colors",
|
||||||
|
"water"
|
||||||
|
],
|
||||||
|
"defaultCode": 57370,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 27,
|
||||||
|
"id": 26,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57370,
|
||||||
|
"name": "droplet",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M438.4 73.142q119.429 0 220.286 58.858t159.714 159.714 58.858 220.286-58.858 220.286-159.714 159.714-220.286 58.858-220.286-58.858-159.714-159.714-58.858-220.286 58.858-220.286 159.714-159.714 220.286-58.858zM145.829 512q0 59.429 23.142 113.429t62.571 93.429 93.429 62.571 113.429 23.142v-585.142q-59.429 0-113.429 23.142t-93.429 62.571-62.571 93.429-23.142 113.429z"
|
||||||
|
],
|
||||||
|
"width": 877,
|
||||||
|
"tags": [
|
||||||
|
"adjust",
|
||||||
|
"contrast"
|
||||||
|
],
|
||||||
|
"defaultCode": 61506,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 28,
|
||||||
|
"id": 27,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 61506,
|
||||||
|
"name": "adjust",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M972.8 471.040c-9.318 0-40.909 0-50.176 0-28.262 0-51.2 18.33-51.2 40.96s22.938 40.96 51.2 40.96c9.318 0 40.909 0 50.176 0 28.314 0 51.2-18.33 51.2-40.96s-22.886-40.96-51.2-40.96zM512 230.4c-156.16 0-281.6 125.44-281.6 281.6 0 156.211 125.44 281.6 281.6 281.6 156.211 0 281.6-125.389 281.6-281.6 0-156.16-125.389-281.6-281.6-281.6zM512 716.8c-113.152 0-204.8-91.648-204.8-204.8 0-113.101 91.648-204.8 204.8-204.8s204.8 91.699 204.8 204.8c0 113.152-91.648 204.8-204.8 204.8zM152.525 512c0-22.63-21.862-40.96-50.125-40.96-9.472 0-41.779 0-51.2 0-28.262 0-51.2 18.33-51.2 40.96s22.938 40.96 51.2 40.96c9.421 0 41.728 0 51.2 0 28.262 0 50.125-18.33 50.125-40.96zM512 153.6c22.579 0 40.96-22.938 40.96-51.2 0-9.37 0-41.83 0-51.2 0-28.262-18.33-51.2-40.96-51.2s-40.96 22.938-40.96 51.2c0 9.37 0 41.83 0 51.2 0 28.262 18.381 51.2 40.96 51.2zM512 870.4c-22.579 0-40.96 22.938-40.96 51.2 0 9.37 0 41.83 0 51.2 0 28.314 18.33 51.2 40.96 51.2s40.96-22.886 40.96-51.2c0-9.37 0-41.83 0-51.2 0-28.262-18.381-51.2-40.96-51.2zM889.088 192.819c20.019-20.019 23.245-49.203 7.27-65.178s-45.158-12.749-65.126 7.27c-5.478 5.53-30.31 30.31-35.84 35.84-20.019 20.019-23.245 49.152-7.27 65.126s45.21 12.8 65.178-7.219c5.478-5.53 30.31-30.31 35.789-35.84zM170.701 795.341c-5.53 5.53-30.31 30.362-35.84 35.84-19.968 20.019-23.194 49.152-7.219 65.126 15.974 15.974 45.158 12.749 65.126-7.219 5.53-5.478 30.362-30.31 35.84-35.84 20.019-20.019 23.245-49.152 7.219-65.126s-45.158-12.698-65.126 7.219zM192.819 134.861c-20.019-19.968-49.152-23.245-65.178-7.219s-12.749 45.158 7.219 65.178c5.53 5.53 30.31 30.31 35.84 35.84 20.019 19.968 49.152 23.245 65.126 7.219s12.8-45.158-7.219-65.126c-5.478-5.53-30.259-30.362-35.789-35.891zM795.341 853.299c5.53 5.53 30.362 30.362 35.84 35.84 20.019 19.968 49.203 23.194 65.178 7.219 15.974-15.974 12.698-45.158-7.27-65.126-5.53-5.478-30.362-30.31-35.84-35.84-20.019-19.968-49.203-23.194-65.178-7.219s-12.646 45.107 7.27 65.126z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"sun",
|
||||||
|
"brightness",
|
||||||
|
"lightness"
|
||||||
|
],
|
||||||
|
"defaultCode": 57368,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 29,
|
||||||
|
"id": 28,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57368,
|
||||||
|
"name": "sun",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M656.114 641.142q0-14.858-10.858-25.714l-103.429-103.429 103.429-103.429q10.858-10.858 10.858-25.714 0-15.429-10.858-26.286l-51.429-51.429q-10.858-10.858-26.286-10.858-14.858 0-25.714 10.858l-103.429 103.429-103.429-103.429q-10.858-10.858-25.714-10.858-15.429 0-26.286 10.858l-51.429 51.429q-10.858 10.858-10.858 26.286 0 14.858 10.858 25.714l103.429 103.429-103.429 103.429q-10.858 10.858-10.858 25.714 0 15.429 10.858 26.286l51.429 51.429q10.858 10.858 26.286 10.858 14.858 0 25.714-10.858l103.429-103.429 103.429 103.429q10.858 10.858 25.714 10.858 15.429 0 26.286-10.858l51.429-51.429q10.858-10.858 10.858-26.286zM877.256 512q0 119.429-58.858 220.286t-159.714 159.714-220.286 58.858-220.286-58.858-159.714-159.714-58.858-220.286 58.858-220.286 159.714-159.714 220.286-58.858 220.286 58.858 159.714 159.714 58.858 220.286z"
|
||||||
|
],
|
||||||
|
"width": 877,
|
||||||
|
"tags": [
|
||||||
|
"remove-sign",
|
||||||
|
"cancel",
|
||||||
|
"remove",
|
||||||
|
"delete",
|
||||||
|
"close",
|
||||||
|
"sign"
|
||||||
|
],
|
||||||
|
"defaultCode": 61527,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 30,
|
||||||
|
"id": 29,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 61527,
|
||||||
|
"name": "remove-sign",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M741.027 755.429q0 22.858-16 38.858l-77.714 77.714q-16 16-38.858 16t-38.858-16l-168-168-168 168q-16 16-38.858 16t-38.858-16l-77.714-77.714q-16-16-16-38.858t16-38.858l168-168-168-168q-16-16-16-38.858t16-38.858l77.714-77.714q16-16 38.858-16t38.858 16l168 168 168-168q16-16 38.858-16t38.858 16l77.714 77.714q16 16 16 38.858t-16 38.858l-168 168 168 168q16 16 16 38.858z"
|
||||||
|
],
|
||||||
|
"width": 803,
|
||||||
|
"tags": [
|
||||||
|
"remove",
|
||||||
|
"cancel",
|
||||||
|
"close",
|
||||||
|
"delete",
|
||||||
|
"mutiply"
|
||||||
|
],
|
||||||
|
"defaultCode": 61453,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 31,
|
||||||
|
"id": 30,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 61453,
|
||||||
|
"name": "remove",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M832 256h-192v-64l-192-192h-448v768h384v256h640v-576l-192-192zM832 346.51l101.49 101.49h-101.49v-101.49zM448 90.51l101.49 101.49h-101.49v-101.49zM64 64h320v192h192v448h-512v-640zM960 960h-512v-192h192v-448h128v192h192v448z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"copy",
|
||||||
|
"duplicate",
|
||||||
|
"files",
|
||||||
|
"pages",
|
||||||
|
"papers",
|
||||||
|
"documents"
|
||||||
|
],
|
||||||
|
"defaultCode": 57399,
|
||||||
|
"grid": 0
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 32,
|
||||||
|
"id": 31,
|
||||||
|
"prevSize": 32,
|
||||||
|
"code": 57399,
|
||||||
|
"name": "copy",
|
||||||
|
"ligatures": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": {
|
||||||
|
"paths": [
|
||||||
|
"M292.571 713.143v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM292.571 420.571v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM658.286 713.143v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM292.571 128v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM658.286 420.571v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM1024 713.143v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM658.286 128v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM1024 420.571v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM1024 128v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857z"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"th",
|
||||||
|
"grid"
|
||||||
|
],
|
||||||
|
"grid": 14,
|
||||||
|
"defaultCode": 58881
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"order": 33,
|
||||||
|
"id": 11,
|
||||||
|
"prevSize": 28,
|
||||||
|
"name": "th",
|
||||||
|
"ligatures": "",
|
||||||
|
"code": 58883
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"height": 1024,
|
||||||
|
"metadata": {
|
||||||
|
"name": "toolbar"
|
||||||
|
},
|
||||||
|
"preferences": {
|
||||||
|
"fontPref": {
|
||||||
|
"prefix": "icon-",
|
||||||
|
"metadata": {
|
||||||
|
"fontFamily": "toolbar"
|
||||||
|
},
|
||||||
|
"showGlyphs": true,
|
||||||
|
"metrics": {
|
||||||
|
"emSize": 1024,
|
||||||
|
"baseline": 6.25,
|
||||||
|
"whitespace": 50
|
||||||
|
},
|
||||||
|
"resetPoint": 58880,
|
||||||
|
"showQuickUse": true,
|
||||||
|
"quickUsageToken": false,
|
||||||
|
"showMetrics": true,
|
||||||
|
"showMetadata": false
|
||||||
|
},
|
||||||
|
"imagePref": {
|
||||||
|
"color": 0,
|
||||||
|
"height": 32,
|
||||||
|
"columns": 16,
|
||||||
|
"margin": 16,
|
||||||
|
"png": false,
|
||||||
|
"sprites": true
|
||||||
|
},
|
||||||
|
"historySize": 100,
|
||||||
|
"showCodes": true,
|
||||||
|
"gridSize": 16,
|
||||||
|
"showLiga": false,
|
||||||
|
"showGrid": true,
|
||||||
|
"showGlyphs": true,
|
||||||
|
"showQuickUse": true
|
||||||
|
}
|
||||||
|
}
|
45
fonts/icomoon-toolbar/style.css
Normal file → Executable file
45
fonts/icomoon-toolbar/style.css
Normal file → Executable file
|
@ -2,32 +2,14 @@
|
||||||
font-family: 'toolbar';
|
font-family: 'toolbar';
|
||||||
src:url('fonts/toolbar.eot');
|
src:url('fonts/toolbar.eot');
|
||||||
src:url('fonts/toolbar.eot?#iefix') format('embedded-opentype'),
|
src:url('fonts/toolbar.eot?#iefix') format('embedded-opentype'),
|
||||||
url('fonts/toolbar.woff') format('woff'),
|
|
||||||
url('fonts/toolbar.ttf') format('truetype'),
|
url('fonts/toolbar.ttf') format('truetype'),
|
||||||
|
url('fonts/toolbar.woff') format('woff'),
|
||||||
url('fonts/toolbar.svg#toolbar') format('svg');
|
url('fonts/toolbar.svg#toolbar') format('svg');
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Use the following CSS code if you want to use data attributes for inserting your icons */
|
[class^="icon-"], [class*=" icon-"] {
|
||||||
[data-icon]:before {
|
|
||||||
font-family: 'toolbar';
|
|
||||||
content: attr(data-icon);
|
|
||||||
speak: none;
|
|
||||||
font-weight: normal;
|
|
||||||
font-variant: normal;
|
|
||||||
text-transform: none;
|
|
||||||
line-height: 1;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Use the following CSS code if you want to have a class per icon */
|
|
||||||
/*
|
|
||||||
Instead of a list of all class selectors,
|
|
||||||
you can use the generic selector below, but it's slower:
|
|
||||||
[class*="icon-"] {
|
|
||||||
*/
|
|
||||||
.icon-file, .icon-image, .icon-zoom-out, .icon-zoom-in, .icon-expand, .icon-expand-2, .icon-folder-open, .icon-folder, .icon-cog, .icon-menu, .icon-wrench, .icon-settings, .icon-loop, .icon-pin, .icon-first, .icon-last, .icon-arrow-left, .icon-arrow-right, .icon-arrow-left-2, .icon-arrow-right-2, .icon-arrow-left-3, .icon-arrow-right-3, .icon-previous, .icon-next, .icon-droplet, .icon-adjust, .icon-sun, .icon-remove-sign, .icon-remove, .icon-copy {
|
|
||||||
font-family: 'toolbar';
|
font-family: 'toolbar';
|
||||||
speak: none;
|
speak: none;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
|
@ -35,7 +17,17 @@ you can use the generic selector below, but it's slower:
|
||||||
font-variant: normal;
|
font-variant: normal;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
|
|
||||||
|
/* Better Font Rendering =========== */
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-thumbnails:before {
|
||||||
|
content: "\e600";
|
||||||
|
}
|
||||||
|
.icon-uniF000:before {
|
||||||
|
content: "\f000";
|
||||||
}
|
}
|
||||||
.icon-file:before {
|
.icon-file:before {
|
||||||
content: "\e000";
|
content: "\e000";
|
||||||
|
@ -52,7 +44,7 @@ you can use the generic selector below, but it's slower:
|
||||||
.icon-expand:before {
|
.icon-expand:before {
|
||||||
content: "\e004";
|
content: "\e004";
|
||||||
}
|
}
|
||||||
.icon-expand-2:before {
|
.icon-expand2:before {
|
||||||
content: "\e005";
|
content: "\e005";
|
||||||
}
|
}
|
||||||
.icon-folder-open:before {
|
.icon-folder-open:before {
|
||||||
|
@ -91,16 +83,16 @@ you can use the generic selector below, but it's slower:
|
||||||
.icon-arrow-right:before {
|
.icon-arrow-right:before {
|
||||||
content: "\e010";
|
content: "\e010";
|
||||||
}
|
}
|
||||||
.icon-arrow-left-2:before {
|
.icon-arrow-left2:before {
|
||||||
content: "\e012";
|
content: "\e012";
|
||||||
}
|
}
|
||||||
.icon-arrow-right-2:before {
|
.icon-arrow-right2:before {
|
||||||
content: "\e013";
|
content: "\e013";
|
||||||
}
|
}
|
||||||
.icon-arrow-left-3:before {
|
.icon-arrow-left3:before {
|
||||||
content: "\e014";
|
content: "\e014";
|
||||||
}
|
}
|
||||||
.icon-arrow-right-3:before {
|
.icon-arrow-right3:before {
|
||||||
content: "\e015";
|
content: "\e015";
|
||||||
}
|
}
|
||||||
.icon-previous:before {
|
.icon-previous:before {
|
||||||
|
@ -127,3 +119,6 @@ you can use the generic selector below, but it's slower:
|
||||||
.icon-copy:before {
|
.icon-copy:before {
|
||||||
content: "\e037";
|
content: "\e037";
|
||||||
}
|
}
|
||||||
|
.icon-th:before {
|
||||||
|
content: "\e603";
|
||||||
|
}
|
||||||
|
|
|
@ -57,8 +57,8 @@ var ComicBook = (function ($) {
|
||||||
keyboard: {
|
keyboard: {
|
||||||
next: 78,
|
next: 78,
|
||||||
previous: 80,
|
previous: 80,
|
||||||
toolbar: 84,
|
toggleLayout: 76,
|
||||||
toggleLayout: 76
|
thumbnails: 84
|
||||||
},
|
},
|
||||||
libPath: '/lib/',
|
libPath: '/lib/',
|
||||||
forward_buffer: 3
|
forward_buffer: 3
|
||||||
|
@ -813,12 +813,14 @@ var ComicBook = (function ($) {
|
||||||
if (e.keyCode === options.keyboard.next) { side = 'right'; }
|
if (e.keyCode === options.keyboard.next) { side = 'right'; }
|
||||||
|
|
||||||
// display controls
|
// display controls
|
||||||
if (e.keyCode === options.keyboard.toolbar) {
|
|
||||||
self.toggleToolbar();
|
|
||||||
}
|
|
||||||
if (e.keyCode === options.keyboard.toggleLayout) {
|
if (e.keyCode === options.keyboard.toggleLayout) {
|
||||||
self.toggleLayout();
|
self.toggleLayout();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// display thumbnail browser
|
||||||
|
if (e.keyCode === options.keyboard.thumbnails) {
|
||||||
|
self.toggleThumbnails();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
@ -851,6 +853,28 @@ var ComicBook = (function ($) {
|
||||||
.find('.manga-' + !options.manga).hide();
|
.find('.manga-' + !options.manga).hide();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ComicBook.prototype.toggleThumbnails = function () {
|
||||||
|
// TODO: show page numbers
|
||||||
|
// TODO: in double page mode merge both pages into a single link
|
||||||
|
// TODO: only load thumbnails when they are in view
|
||||||
|
// TODO: keyboard navigation (left / right / up / down / enter)
|
||||||
|
// TODO: highlight currently selected thumbnail
|
||||||
|
// TODO: focus on current page
|
||||||
|
// TODO: toolbar button
|
||||||
|
var $thumbnails = self.getControl('thumbnails');
|
||||||
|
$thumbnails.html('');
|
||||||
|
self.toggleControl('thumbnails');
|
||||||
|
$.each(pages, function (i, img) {
|
||||||
|
var $img = $(img).clone();
|
||||||
|
var $link = $('<a>').attr('href', '#' + i).append($img);
|
||||||
|
$img.attr('height', 150);
|
||||||
|
$link.on('click', function () {
|
||||||
|
self.hideControl('thumbnails');
|
||||||
|
});
|
||||||
|
$thumbnails.append($link);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
ComicBook.prototype.toggleToolbar = function () {
|
ComicBook.prototype.toggleToolbar = function () {
|
||||||
self.toggleControl('toolbar');
|
self.toggleControl('toolbar');
|
||||||
};
|
};
|
||||||
|
|
|
@ -39,7 +39,7 @@ $(function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
test('all controls should be rendered', function () {
|
test('all controls should be rendered', function () {
|
||||||
equal($('.cb-control, .toolbar').length, 5, 'All toolbar elements should have rendered after book.draw');
|
equal($('.cb-control, .toolbar').length, 6, 'All toolbar elements should have rendered after book.draw');
|
||||||
});
|
});
|
||||||
|
|
||||||
// navigate on keyboard
|
// navigate on keyboard
|
||||||
|
|
2
templates/thumbnails.handlebars
Normal file
2
templates/thumbnails.handlebars
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
|
||||||
|
<div class="cb-control thumbnails"></div>
|
|
@ -34,6 +34,9 @@
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<button data-trigger="click" data-action="toggleThumbnails" title="show thumbnails" class="icon-th"></button>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<button data-trigger="click" data-action="toggleLayout" title="toggle one/two pages at a time" class="icon-file layout layout-single"></button>
|
<button data-trigger="click" data-action="toggleLayout" title="toggle one/two pages at a time" class="icon-file layout layout-single"></button>
|
||||||
<button data-trigger="click" data-action="toggleLayout" title="toggle one/two pages at a time" class="icon-copy layout layout-double"></button>
|
<button data-trigger="click" data-action="toggleLayout" title="toggle one/two pages at a time" class="icon-copy layout layout-double"></button>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue