mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-08 22:18:28 +03:00
Move from icomoon to fontastic
This commit is contained in:
parent
a158929afd
commit
b4e52e768c
64 changed files with 2132 additions and 1554 deletions
|
|
@ -313,7 +313,8 @@ module.exports = function (grunt) {
|
|||
src: [
|
||||
"vendors/jquery-ui/css/smoothness/jquery-ui-1.10.3.custom.css",
|
||||
"vendors/normalize/normalize.css",
|
||||
"vendors/icomoon/style.css",
|
||||
"vendors/fontastic/styles.css",
|
||||
"rainloop/v/0.0.0/static/css/styles.css",
|
||||
"vendors/jquery-nanoscroller/nanoscroller.css",
|
||||
"vendors/jquery-magnific-popup/magnific-popup.css",
|
||||
"vendors/jquery-magnific-popup/magnific-popup-animations.css",
|
||||
|
|
|
|||
|
|
@ -337,66 +337,6 @@ ko.bindingHandlers.nano = {
|
|||
}
|
||||
};
|
||||
|
||||
ko.bindingHandlers.saveTrigger1 = {
|
||||
'init': function (oElement) {
|
||||
|
||||
var $oEl = $(oElement);
|
||||
|
||||
$oEl.data('save-trigger-type', $oEl.is('input[type=text]') ? 'input' : 'custom');
|
||||
|
||||
if ('custom' === $oEl.data('save-trigger-type'))
|
||||
{
|
||||
$oEl.append(
|
||||
' <i class="icon-spinner-2 animated"></i><i class="icon-remove error"></i><i class="icon-ok success"></i>'
|
||||
).addClass('settings-saved-trigger');
|
||||
}
|
||||
else
|
||||
{
|
||||
$oEl.addClass('settings-saved-trigger-input');
|
||||
}
|
||||
},
|
||||
'update': function (oElement, fValueAccessor) {
|
||||
var
|
||||
mValue = ko.utils.unwrapObservable(fValueAccessor()),
|
||||
$oEl = $(oElement),
|
||||
bCustom = 'custom' === $oEl.data('save-trigger-type'),
|
||||
sSuffix = bCustom ? '' : '-input'
|
||||
;
|
||||
|
||||
switch (mValue.toString())
|
||||
{
|
||||
case '1':
|
||||
$oEl
|
||||
.find('.sst-animated' + sSuffix + ',.sst-error' + sSuffix).hide().removeClass('sst-visible' + sSuffix)
|
||||
.end()
|
||||
.find('.sst-success' + sSuffix).show().addClass('sst-visible' + sSuffix)
|
||||
;
|
||||
break;
|
||||
case '0':
|
||||
$oEl
|
||||
.find('.sst-animated' + sSuffix + ',.sst-success' + sSuffix).hide().removeClass('sst-visible' + sSuffix)
|
||||
.end()
|
||||
.find('.sst-error' + sSuffix).show().addClass('sst-visible' + sSuffix)
|
||||
;
|
||||
break;
|
||||
case '-2':
|
||||
$oEl
|
||||
.find('.sst-error' + sSuffix + ',.sst-success' + sSuffix).hide().removeClass('sst-visible' + sSuffix)
|
||||
.end()
|
||||
.find('.sst-animated' + sSuffix).show().addClass('sst-visible' + sSuffix)
|
||||
;
|
||||
break;
|
||||
default:
|
||||
$oEl
|
||||
.find('.sst-animated' + sSuffix).hide()
|
||||
.end()
|
||||
.find('.sst-error' + sSuffix + ',.sst-success' + sSuffix).removeClass('sst-visible' + sSuffix)
|
||||
;
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
ko.bindingHandlers.saveTrigger = {
|
||||
'init': function (oElement) {
|
||||
|
||||
|
|
@ -407,7 +347,7 @@ ko.bindingHandlers.saveTrigger = {
|
|||
if ('custom' === $oEl.data('save-trigger-type'))
|
||||
{
|
||||
$oEl.append(
|
||||
' <i class="icon-spinner-2 animated"></i><i class="icon-remove error"></i><i class="icon-ok success"></i>'
|
||||
' <i class="icon-spinner animated"></i><i class="icon-remove error"></i><i class="icon-ok success"></i>'
|
||||
).addClass('settings-saved-trigger');
|
||||
}
|
||||
else
|
||||
|
|
|
|||
|
|
@ -1271,7 +1271,7 @@ Utils.convertPlainTextToHtml = function (sPlain)
|
|||
|
||||
Utils.draggeblePlace = function ()
|
||||
{
|
||||
return $('<div class="draggablePlace"><span class="text"></span> <i class="icon-envelope icon-white"></i></div>').appendTo('#rl-hidden');
|
||||
return $('<div class="draggablePlace"><span class="text"></span> <i class="icon-mail icon-white"></i></div>').appendTo('#rl-hidden');
|
||||
};
|
||||
|
||||
Utils.defautOptionsAfterRender = function (oOption, oItem)
|
||||
|
|
|
|||
|
|
@ -158,36 +158,36 @@ AttachmentModel.prototype.iconClass = function ()
|
|||
{
|
||||
if ('image' === aParts[0])
|
||||
{
|
||||
sClass = 'icon-image';
|
||||
sClass = 'icon-file-image';
|
||||
}
|
||||
else if ('text' === aParts[0])
|
||||
{
|
||||
sClass = 'icon-file-xml';
|
||||
sClass = 'icon-file-text';
|
||||
}
|
||||
else if ('audio' === aParts[0])
|
||||
{
|
||||
sClass = 'icon-music';
|
||||
sClass = 'icon-file-music';
|
||||
}
|
||||
else if ('video' === aParts[0])
|
||||
{
|
||||
sClass = 'icon-film';
|
||||
sClass = 'icon-file-movie';
|
||||
}
|
||||
else if (-1 < Utils.inArray(aParts[1],
|
||||
['zip', '7z', 'tar', 'rar', 'gzip', 'bzip', 'bzip2', 'x-zip', 'x-7z', 'x-rar', 'x-tar', 'x-gzip', 'x-bzip', 'x-bzip2', 'x-zip-compressed', 'x-7z-compressed', 'x-rar-compressed']))
|
||||
{
|
||||
sClass = 'icon-file-zip';
|
||||
}
|
||||
else if (-1 < Utils.inArray(aParts[1],
|
||||
['pdf', 'x-pdf']))
|
||||
{
|
||||
sClass = 'icon-file-pdf';
|
||||
}
|
||||
else if (-1 < Utils.inArray(aParts[1], [
|
||||
'exe', 'x-exe', 'x-winexe', 'bat'
|
||||
]))
|
||||
{
|
||||
sClass = 'icon-console';
|
||||
}
|
||||
// else if (-1 < Utils.inArray(aParts[1],
|
||||
// ['pdf', 'x-pdf']))
|
||||
// {
|
||||
// sClass = 'icon-file-pdf';
|
||||
// }
|
||||
// else if (-1 < Utils.inArray(aParts[1], [
|
||||
// 'exe', 'x-exe', 'x-winexe', 'bat'
|
||||
// ]))
|
||||
// {
|
||||
// sClass = 'icon-console';
|
||||
// }
|
||||
else if (-1 < Utils.inArray(aParts[1], [
|
||||
'rtf', 'msword', 'vnd.msword', 'vnd.openxmlformats-officedocument.wordprocessingml.document',
|
||||
'vnd.openxmlformats-officedocument.wordprocessingml.template',
|
||||
|
|
@ -195,7 +195,7 @@ AttachmentModel.prototype.iconClass = function ()
|
|||
'vnd.ms-word.template.macroEnabled.12'
|
||||
]))
|
||||
{
|
||||
sClass = 'icon-file-word';
|
||||
sClass = 'icon-file-text';
|
||||
}
|
||||
else if (-1 < Utils.inArray(aParts[1], [
|
||||
'excel', 'ms-excel', 'vnd.ms-excel',
|
||||
|
|
@ -220,7 +220,7 @@ AttachmentModel.prototype.iconClass = function ()
|
|||
'vnd.ms-powerpoint.slideshow.macroEnabled.12'
|
||||
]))
|
||||
{
|
||||
sClass = 'icon-file-powerpoint';
|
||||
sClass = 'icon-file-chart-graph';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -272,7 +272,7 @@ FolderModel.prototype.isUnpaddigFolder = false;
|
|||
FolderModel.prototype.collapsedCss = function ()
|
||||
{
|
||||
return this.hasSubScribedSubfolders() ?
|
||||
(this.collapsed() ? 'icon-arrow-right-3 e-collapsed-sign' : 'icon-arrow-down-3 e-collapsed-sign') : 'icon-none e-collapsed-sign';
|
||||
(this.collapsed() ? 'icon-right-mini e-collapsed-sign' : 'icon-down-mini e-collapsed-sign') : 'icon-none e-collapsed-sign';
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -56,11 +56,11 @@ function MessageModel()
|
|||
sClass = 'icon-file-zip';
|
||||
break;
|
||||
case 'doc':
|
||||
sClass = 'icon-file';
|
||||
break;
|
||||
case 'pdf':
|
||||
sClass = 'icon-file-pdf';
|
||||
sClass = 'icon-file-text';
|
||||
break;
|
||||
// case 'pdf':
|
||||
// sClass = 'icon-file-pdf';
|
||||
// break;
|
||||
}
|
||||
}
|
||||
return sClass;
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
@import "../../vendors/bootstrap/less/progress-bars.less";
|
||||
@import "../../vendors/bootstrap/less/utilities.less";
|
||||
|
||||
@import "_IcoMoonToBoot.less";
|
||||
@import "_FontasticToBoot.less";
|
||||
@import "_BootstrapFix.less";
|
||||
@import "_InputosaurusFix.less";
|
||||
|
||||
|
|
|
|||
108
dev/Styles/_FontasticToBoot.less
Normal file
108
dev/Styles/_FontasticToBoot.less
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
|
||||
[class^="icon-"],
|
||||
[class*=" icon-"] {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
line-height: 17px;
|
||||
font-size: 16px;
|
||||
vertical-align: text-top;
|
||||
}
|
||||
|
||||
.icon-folder, .icon-folder-add, .icon-address-book, .icon-list {
|
||||
line-height: 18px;
|
||||
font-size: 18px;
|
||||
margin-top: -2px;
|
||||
margin-left: -2px;
|
||||
}
|
||||
|
||||
/* White icons with optional class, or on hover/active states of certain elements */
|
||||
.icon-white,
|
||||
.nav > .active > a > [class^="icon-"],
|
||||
.nav > .active > a > [class*=" icon-"] {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.g-ui-menu .e-item:hover [class^="icon-"],
|
||||
.g-ui-menu .e-item:hover [class*=" icon-"] {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.icon-none {
|
||||
background-image: none !important;
|
||||
}
|
||||
|
||||
.icon-checkbox-checked, .icon-checkbox-unchecked, .icon-checkbox-partial, .icon-radio-checked, .icon-radio-unchecked {
|
||||
cursor: pointer;
|
||||
color: #555;
|
||||
font-size: 1em;
|
||||
|
||||
&:hover, &:active {
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-white {
|
||||
&.icon-checkbox-checked, &.icon-checkbox-unchecked, &.icon-checkbox-partial, &.icon-radio-checked, &.icon-radio-unchecked {
|
||||
color: #eee;
|
||||
|
||||
&:hover, &:active {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.denied-by-browser {
|
||||
cursor: default;
|
||||
.icon-checkbox-checked, icon-checkbox-unchecked {
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
|
||||
.right-mini, .down-mini {
|
||||
width: 16px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
@-webkit-keyframes rotation {
|
||||
from {-webkit-transform: rotate(0deg);}
|
||||
to {-webkit-transform: rotate(359deg);}
|
||||
}
|
||||
|
||||
@-moz-keyframes rotation {
|
||||
from {-moz-transform: rotate(0deg);}
|
||||
to {-moz-transform: rotate(359deg);}
|
||||
}
|
||||
|
||||
@keyframes rotation {
|
||||
from {transform: rotate(0deg);}
|
||||
to {transform: rotate(359deg);}
|
||||
}
|
||||
|
||||
.icon-spinner {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
|
||||
&:before {
|
||||
font-size: 16px;
|
||||
line-height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
html.no-cssanimations .icon-spinner {
|
||||
background-image: url('@{sync-file-stop}');
|
||||
background-repeat: no-repeat;
|
||||
font-family: Arial;
|
||||
&:before {
|
||||
content: "";
|
||||
}
|
||||
&.animated {
|
||||
background-image: url('@{sync-file}');
|
||||
}
|
||||
}
|
||||
|
||||
html.cssanimations .icon-spinner.animated {
|
||||
-webkit-animation: rotation 1s infinite linear;
|
||||
-moz-animation: rotation 1s infinite linear;
|
||||
animation: rotation 1s infinite linear;
|
||||
}
|
||||
|
|
@ -1,39 +1,39 @@
|
|||
<div class="b-login-content">
|
||||
<div class="loginFormWrapper">
|
||||
<center>
|
||||
<div class="alert" data-bind="visible: '' !== submitError()">
|
||||
<button type="button" class="close" data-bind="click: function () { submitError('') }">×</button>
|
||||
<span data-bind="text: submitError"></span>
|
||||
</div>
|
||||
<form class="form-horizontal span4 wrapper loginForm thm-login" action="#/" onsubmit="return false;" data-bind="command: submitCommand">
|
||||
<div class="control-group" data-bind="css: {'error': loginError}">
|
||||
<div class="input-append">
|
||||
<input class="inputLogin span4" placeholder="Login" type="text"
|
||||
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
||||
data-bind="value: login, hasFocus: loginFocus" />
|
||||
<span class="add-on">
|
||||
<i class="icon-user"></i>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group" data-bind="css: {'error': passwordError}">
|
||||
<div class="input-append">
|
||||
<input class="inputPassword span4" placeholder="Password" type="password"
|
||||
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
||||
data-bind="value: password" />
|
||||
<span class="add-on">
|
||||
<i class="icon-key"></i>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<button type="submit" class="btn btn-large span4 buttonLogin" data-bind="command: submitCommand">
|
||||
<i class="icon-spinner-2 animated" data-bind="visible: submitRequest"></i>
|
||||
<span data-bind="visible: !submitRequest()">Log into the admin panel</span>
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</center>
|
||||
</div>
|
||||
<div class="loginAfter"></div>
|
||||
<div class="b-login-content">
|
||||
<div class="loginFormWrapper">
|
||||
<center>
|
||||
<div class="alert" data-bind="visible: '' !== submitError()">
|
||||
<button type="button" class="close" data-bind="click: function () { submitError('') }">×</button>
|
||||
<span data-bind="text: submitError"></span>
|
||||
</div>
|
||||
<form class="form-horizontal span4 wrapper loginForm thm-login" action="#/" onsubmit="return false;" data-bind="command: submitCommand">
|
||||
<div class="control-group" data-bind="css: {'error': loginError}">
|
||||
<div class="input-append">
|
||||
<input class="inputLogin span4" placeholder="Login" type="text"
|
||||
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
||||
data-bind="value: login, hasFocus: loginFocus" />
|
||||
<span class="add-on">
|
||||
<i class="icon-user"></i>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group" data-bind="css: {'error': passwordError}">
|
||||
<div class="input-append">
|
||||
<input class="inputPassword span4" placeholder="Password" type="password"
|
||||
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
||||
data-bind="value: password" />
|
||||
<span class="add-on">
|
||||
<i class="icon-key"></i>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<button type="submit" class="btn btn-large span4 buttonLogin" data-bind="command: submitCommand">
|
||||
<i class="icon-spinner animated" data-bind="visible: submitRequest"></i>
|
||||
<span data-bind="visible: !submitRequest()">Log into the admin panel</span>
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</center>
|
||||
</div>
|
||||
<div class="loginAfter"></div>
|
||||
<div>
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
</h4>
|
||||
<div class="btn-group pull-right">
|
||||
<a class="btn btn-narrow" data-bind="click: logoutClick">
|
||||
<i class="icon-switch"></i>
|
||||
<i class="icon-power"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@
|
|||
<div class="control-group">
|
||||
<div class="controls">
|
||||
<a class="btn" data-bind="command: testContactsCommand, css: { 'btn-success': testContactsSuccess, 'btn-danger': testContactsError }">
|
||||
<i data-bind="css: {'icon-info': !testing(), 'icon-spinner-2 animated': testing(), 'icon-white': testContactsSuccess() || testContactsError() }"></i>
|
||||
<i data-bind="css: {'icon-info': !testing(), 'icon-spinner animated': testing(), 'icon-white': testContactsSuccess() || testContactsError() }"></i>
|
||||
|
||||
Test
|
||||
</a>
|
||||
|
|
@ -95,7 +95,7 @@
|
|||
<div class="control-group">
|
||||
<div class="controls">
|
||||
<a class="btn" data-bind="command: testContactsCommand, css: { 'btn-success': testContactsSuccess, 'btn-danger': testContactsError }">
|
||||
<i data-bind="css: {'icon-info': !testing(), 'icon-spinner-2 animated': testing(), 'icon-white': testContactsSuccess() || testContactsError() }"></i>
|
||||
<i data-bind="css: {'icon-info': !testing(), 'icon-spinner animated': testing(), 'icon-white': testContactsSuccess() || testContactsError() }"></i>
|
||||
|
||||
Test
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
Add Domain
|
||||
</a>
|
||||
<div class="process-place" data-bind="style: {'visibility': visibility }">
|
||||
<i class="icon-spinner-2 animated"></i>
|
||||
<i class="icon-spinner animated"></i>
|
||||
|
||||
loading...
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
<div class="control-group" data-bind="visible: subscriptionEnabled">
|
||||
<div class="controls">
|
||||
<div data-bind="visible: licensingProcess()">
|
||||
<i class="icon-spinner-2 animated"></i>
|
||||
<i class="icon-spinner animated"></i>
|
||||
|
||||
checking...
|
||||
</div>
|
||||
|
|
@ -61,7 +61,7 @@
|
|||
<div class="control-group" data-bind="visible: subscriptionEnabled() && !licensingProcess()">
|
||||
<div class="controls">
|
||||
<button class="btn" data-bind="click: showActivationForm">
|
||||
<i class="icon-love"></i>
|
||||
<i class="icon-heart-empty"></i>
|
||||
|
||||
Activate Subscription Key
|
||||
</button>
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
</div>
|
||||
|
||||
<div class="process-place" data-bind="style: {'visibility': visibility }">
|
||||
<i class="icon-spinner-2 animated"></i>
|
||||
<i class="icon-spinner animated"></i>
|
||||
|
||||
loading...
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<tr class="e-item">
|
||||
<td class="package-name-parent">
|
||||
<i class="package-img" data-bind="css: 'core' === type ? 'icon-fire' : 'icon-lightning'"></i>
|
||||
<i class="package-img" data-bind="css: 'core' === type ? 'icon-fire' : 'icon-bolt'"></i>
|
||||
<span class="package-name" data-bind="text: name, css: {'core': 'core' === type}"></span>
|
||||
<span class="package-installed pull-right" data-bind="text: installed"></span>
|
||||
<div class="package-desc" data-bind="text: desc"></div>
|
||||
|
|
@ -20,6 +20,6 @@
|
|||
<i class="icon-download e-action button-download" data-bind="visible: !loading() && canBeUpdated, click: function () { $root.installPackage($data); }"></i>
|
||||
|
||||
<i class="icon-trash e-action button-delete" data-bind="visible: !loading() && canBeDeleted, click: function () { $root.deletePackage($data); }"></i>
|
||||
<i class="icon-spinner-2 animated" data-bind="visible: loading"></i>
|
||||
<i class="icon-spinner animated" data-bind="visible: loading"></i>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<tr class="e-item" data-bind="css: {'disabled': disabled }">
|
||||
<td class="configure-plugin-action e-action">
|
||||
<i class="plugin-img icon-lightning"></i>
|
||||
<i class="plugin-img icon-bolt"></i>
|
||||
<span class="plugin-name" data-bind="text: name"></span>
|
||||
</td>
|
||||
<td>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
</div>
|
||||
|
||||
<div class="process-place" data-bind="style: {'visibility': visibility }">
|
||||
<i class="icon-spinner-2 animated"></i>
|
||||
<i class="icon-spinner animated"></i>
|
||||
|
||||
loading...
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
<div class="b-attacment">
|
||||
<label data-bind="click: function () { enabled(!enabled()); }">
|
||||
<i class="checkboxAttachment" data-bind="css: enabled() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked'"></i>
|
||||
<!--<input type="checkbox" data-bind="checked: enabled" />-->
|
||||
|
||||
<span class="name" data-bind="text: fileName"></span>
|
||||
(<span class="size" data-bind="text: friendlySize"></span>)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<div class="b-attacment-in-process" data-bind="css: {'error': '' !== error(), 'uploading': uploading, 'waiting': waiting }, in18nInit: true">
|
||||
<a class="close" data-bind="click: cancel">×</a>
|
||||
<span class="uploading"><i class="icon-spinner-2 animated"></i></span>
|
||||
<span class="uploading"><i class="icon-spinner animated"></i></span>
|
||||
<span class="namedStr">
|
||||
<span class="name" data-bind="text: fileName"></span>
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
<input class="i18n inputEmail span4" type="email" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
||||
data-bind="value: email, hasFocus: emailFocus" data-i18n-placeholder="LOGIN/LABEL_EMAIL" />
|
||||
<span class="add-on">
|
||||
<i class="icon-envelope"></i>
|
||||
<i class="icon-mail"></i>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -37,7 +37,7 @@
|
|||
{{INCLUDE/BottomControlGroup/PLACE}}
|
||||
<div class="control-group">
|
||||
<button type="submit" class="btn btn-large span4 buttonLogin" data-bind="command: submitCommand">
|
||||
<i class="icon-spinner-2 animated" data-bind="visible: submitRequest"></i>
|
||||
<i class="icon-spinner animated" data-bind="visible: submitRequest"></i>
|
||||
<span class="i18n" data-i18n-text="LOGIN/BUTTON_SIGN_IN" data-bind="visible: !submitRequest()"></span>
|
||||
</button>
|
||||
</div>
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
<div class="pull-right">
|
||||
<div class="btn-group" data-bind="visible: socialLoginEnabled() || allowLanguagesOnLogin()">
|
||||
<a class="btn dropdown-toggle buttonLoginMore" data-toggle="dropdown">
|
||||
<i data-bind="css: langRequest() ? 'icon-spinner-2 animated' : 'icon-reorder'"></i>
|
||||
<i data-bind="css: langRequest() ? 'icon-spinner animated' : 'icon-list'"></i>
|
||||
</a>
|
||||
<ul class="dropdown-menu g-ui-menu">
|
||||
{{INCLUDE/MenuDropdownTop/PLACE}}
|
||||
|
|
|
|||
|
|
@ -1,19 +1,19 @@
|
|||
<div class="b-folders g-ui-user-select-none thm-folders">
|
||||
<div class="b-toolbar btn-toolbar">
|
||||
<a class="btn buttonCompose" data-placement="bottom" data-bind="click: composeClick, tooltip: 'FOLDER_LIST/BUTTON_COMPOSE'">
|
||||
<i class="icon-pencil"></i>
|
||||
</a>
|
||||
<a class="btn buttonContacts" data-placement="bottom" data-bind="visible: allowContacts, click: contactsClick, tooltip: 'FOLDER_LIST/BUTTON_CONTACTS'">
|
||||
<i class="icon-phonebook"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="b-content" data-bind="nano: true">
|
||||
<div class="content g-scrollbox">
|
||||
<div class="content-wrapper">
|
||||
<div data-bind="template: { name: 'MailFolderListSystemItem', foreach: folderListSystem }"></div>
|
||||
<hr class="b-list-delimiter" />
|
||||
<div data-bind="template: { name: 'MailFolderListItem', foreach: folderList }"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="b-folders g-ui-user-select-none thm-folders">
|
||||
<div class="b-toolbar btn-toolbar">
|
||||
<a class="btn buttonCompose" data-placement="bottom" data-bind="click: composeClick, tooltip: 'FOLDER_LIST/BUTTON_COMPOSE'">
|
||||
<i class="icon-paper-plane"></i>
|
||||
</a>
|
||||
<a class="btn buttonContacts" data-placement="bottom" data-bind="visible: allowContacts, click: contactsClick, tooltip: 'FOLDER_LIST/BUTTON_CONTACTS'">
|
||||
<i class="icon-address-book"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="b-content" data-bind="nano: true">
|
||||
<div class="content g-scrollbox">
|
||||
<div class="content-wrapper">
|
||||
<div data-bind="template: { name: 'MailFolderListSystemItem', foreach: folderListSystem }"></div>
|
||||
<hr class="b-list-delimiter" />
|
||||
<div data-bind="template: { name: 'MailFolderListItem', foreach: folderList }"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -4,13 +4,13 @@
|
|||
<div class="btn-toolbar">
|
||||
<div class="btn-group">
|
||||
<a class="btn buttonReload" data-placement="bottom" data-bind="command: reloadCommand, tooltip: 'MESSAGE_LIST/BUTTON_RELOAD'">
|
||||
<i class="icon-spinner-2" data-bind="css: {'animated': messageListCompleteLoadingThrottle}"></i>
|
||||
<i class="icon-spinner" data-bind="css: {'animated': messageListCompleteLoadingThrottle}"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="btn-group"> </div>
|
||||
<div class="btn-group">
|
||||
<a class="btn dropdown-toggle buttonMove" data-toggle="dropdown" data-placement="bottom" data-bind="command: moveCommand, tooltip: 'MESSAGE_LIST/BUTTON_MOVE_TO'">
|
||||
<i class="icon-legacyfilemanager"></i>
|
||||
<i class="icon-folder"></i>
|
||||
|
||||
<span class="caret"></span>
|
||||
</a>
|
||||
|
|
@ -34,40 +34,40 @@
|
|||
<div class="btn-group"> </div>
|
||||
<div class="btn-group">
|
||||
<a class="btn dropdown-toggle buttonMore" data-toggle="dropdown" data-placement="bottom" data-bind="tooltip: 'MESSAGE_LIST/BUTTON_MORE'">
|
||||
<i class="icon-reorder"></i>
|
||||
<i class="icon-list"></i>
|
||||
</a>
|
||||
<ul class="dropdown-menu g-ui-menu">
|
||||
<li class="e-item" data-bind="click: listUnsetSeen, css: {'disable': !hasCheckedOrSelectedLines()}">
|
||||
<a class="e-link">
|
||||
<i class="icon2-none"></i>
|
||||
<i class="icon-none"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="MESSAGE_LIST/MENU_UNSET_SEEN"></span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="e-item" data-bind="click: listSetSeen, css: {'disable': !hasCheckedOrSelectedLines()}">
|
||||
<a class="e-link">
|
||||
<i class="icon2-none"></i>
|
||||
<i class="icon-none"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="MESSAGE_LIST/MENU_SET_SEEN"></span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="e-item" data-bind="click: listSetFlags, css: {'disable': !hasCheckedOrSelectedLines()}">
|
||||
<a class="e-link">
|
||||
<i class="icon2-none"></i>
|
||||
<i class="icon-none"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="MESSAGE_LIST/MENU_SET_FLAG"></span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="e-item" data-bind="click: listUnsetFlags, css: {'disable': !hasCheckedOrSelectedLines()}">
|
||||
<a class="e-link">
|
||||
<i class="icon2-none"></i>
|
||||
<i class="icon-none"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="MESSAGE_LIST/MENU_UNSET_FLAG"></span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="e-item" data-bind="click: listSetAllSeen, css: {'disable': !hasMessages()}">
|
||||
<a class="e-link">
|
||||
<i class="icon2-none"></i>
|
||||
<i class="icon-none"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="MESSAGE_LIST/MENU_SET_ALL_SEEN"></span>
|
||||
</a>
|
||||
|
|
@ -111,7 +111,7 @@
|
|||
<i class="checkboxCkeckAll" data-bind="css: checkAll() ? (isIncompleteChecked() ? 'icon-checkbox-partial' : 'icon-checkbox-checked') : 'icon-checkbox-unchecked'"></i>
|
||||
<!--
|
||||
<i class="checkboxCkeckAll" data-bind="css: checkAll() ? (isIncompleteChecked() ? 'icon-checkbox-partial' : 'icon-checkbox-checked') : 'icon-checkbox-unchecked', visible: !messageListCompleteLoadingThrottle()"></i>
|
||||
<i class="icon-spinner-2 animated" style="margin-top: 4px;" data-bind="visible: messageListCompleteLoadingThrottle"></i>
|
||||
<i class="icon-spinner animated" style="margin-top: 4px;" data-bind="visible: messageListCompleteLoadingThrottle"></i>
|
||||
-->
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -126,7 +126,7 @@
|
|||
<span data-bind="text: messageListSearchDesc"></span>:
|
||||
</div>
|
||||
<div class="listDragOver" data-bind="css: {'viewAppendArea': dragOver() && '' === messageListError() && !popupVisibility(), 'dragOverEnter': dragOverEnter }, initDom: dragOverArea">
|
||||
<i class="icon-arrow-down-2 e-icon"></i>
|
||||
<i class="icon-down e-icon"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="MESSAGE_LIST/PUT_MESSAGE_HERE"></span>
|
||||
</div>
|
||||
|
|
@ -156,7 +156,7 @@
|
|||
<div class="b-footer thm-message-list-bottom-toolbar">
|
||||
<!--
|
||||
<a class="btn buttonReload" data-placement="right" data-bind="command: reloadCommand, tooltip: 'MESSAGE_LIST/BUTTON_RELOAD'">
|
||||
<i class="icon-spinner-2" data-bind="css: {'animated': messageListCompleteLoadingThrottle}"></i>
|
||||
<i class="icon-spinner" data-bind="css: {'animated': messageListCompleteLoadingThrottle}"></i>
|
||||
</a>
|
||||
-->
|
||||
<span data-bind="visible: 0 < userUsageProc(), tooltip2: quotaTooltip" class="e-quota">
|
||||
|
|
|
|||
|
|
@ -1,44 +1,44 @@
|
|||
<div class="messageListItem" data-bind="css: lineAsCcc()">
|
||||
<div class="sidebarParent">
|
||||
|
||||
</div>
|
||||
<div class="delimiter"></div>
|
||||
<div class="wrapper">
|
||||
<div class="flagParent">
|
||||
<span class="flagOn">
|
||||
<i class="icon-favorite"></i>
|
||||
</span>
|
||||
<span class="flagOnHalf">
|
||||
<i class="icon-favorite2"></i>
|
||||
</span>
|
||||
<span class="flagOff">
|
||||
<i class="icon-favorite2"></i>
|
||||
</span>
|
||||
</div>
|
||||
<div class="dateParent actionHandle dragHandle">
|
||||
<span class="date" data-bind="text: momentShortDate, title: fullFormatDateValue"></span>
|
||||
</div>
|
||||
<div class="checkedParent">
|
||||
<i class="checkboxMessage" data-bind="css: checked() || selected() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked'"></i>
|
||||
</div>
|
||||
<div class="senderParent actionHandle dragHandle">
|
||||
<span class="threadsCountParent fullThreadHandle" data-bind="visible: '' !== threadsLenResult(), css: { 'lastSelected': !lastInCollapsedThread() }">
|
||||
<span lass="threadsCount" data-bind="visible: !lastInCollapsedThreadLoading(), text: threadsLenResult"></span>
|
||||
<i class="icon-spinner-2 animated" data-bind="visible: lastInCollapsedThreadLoading"></i>
|
||||
</span>
|
||||
<span class="replyFlag"><i class="icon-reply"></i> </span>
|
||||
<span class="forwardFlag"><i class="icon-forward"></i> </span>
|
||||
<span class="sender" data-bind="text: senderEmailsString"></span>
|
||||
|
||||
</div>
|
||||
<div class="attachmentParent actionHandle dragHandle">
|
||||
<span class="attachment">
|
||||
<i data-bind="css: attachmentIconClass"></i>
|
||||
</span>
|
||||
</div>
|
||||
<div class="subjectParent actionHandle dragHandle">
|
||||
<span class="subject" data-bind="text: subject"></span>
|
||||
<span class="subject emptySubjectText" data-bind="text: $root.emptySubjectValue"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="messageListItem" data-bind="css: lineAsCcc()">
|
||||
<div class="sidebarParent">
|
||||
|
||||
</div>
|
||||
<div class="delimiter"></div>
|
||||
<div class="wrapper">
|
||||
<div class="flagParent">
|
||||
<span class="flagOn">
|
||||
<i class="icon-star"></i>
|
||||
</span>
|
||||
<span class="flagOnHalf">
|
||||
<i class="icon-star-empty"></i>
|
||||
</span>
|
||||
<span class="flagOff">
|
||||
<i class="icon-star-empty"></i>
|
||||
</span>
|
||||
</div>
|
||||
<div class="dateParent actionHandle dragHandle">
|
||||
<span class="date" data-bind="text: momentShortDate, title: fullFormatDateValue"></span>
|
||||
</div>
|
||||
<div class="checkedParent">
|
||||
<i class="checkboxMessage" data-bind="css: checked() || selected() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked'"></i>
|
||||
</div>
|
||||
<div class="senderParent actionHandle dragHandle">
|
||||
<span class="threadsCountParent fullThreadHandle" data-bind="visible: '' !== threadsLenResult(), css: { 'lastSelected': !lastInCollapsedThread() }">
|
||||
<span lass="threadsCount" data-bind="visible: !lastInCollapsedThreadLoading(), text: threadsLenResult"></span>
|
||||
<i class="icon-spinner animated" data-bind="visible: lastInCollapsedThreadLoading"></i>
|
||||
</span>
|
||||
<span class="replyFlag"><i class="icon-reply"></i> </span>
|
||||
<span class="forwardFlag"><i class="icon-forward"></i> </span>
|
||||
<span class="sender" data-bind="text: senderEmailsString"></span>
|
||||
|
||||
</div>
|
||||
<div class="attachmentParent actionHandle dragHandle">
|
||||
<span class="attachment">
|
||||
<i data-bind="css: attachmentIconClass"></i>
|
||||
</span>
|
||||
</div>
|
||||
<div class="subjectParent actionHandle dragHandle">
|
||||
<span class="subject" data-bind="text: subject"></span>
|
||||
<span class="subject emptySubjectText" data-bind="text: $root.emptySubjectValue"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -1,45 +1,45 @@
|
|||
<div class="messageListItem e-single-line" data-bind="css: lineAsCcc()">
|
||||
<div class="sidebarParent">
|
||||
|
||||
</div>
|
||||
<div class="delimiter"></div>
|
||||
<div class="wrapper">
|
||||
<div class="dateParent actionHandle dragHandle">
|
||||
<span class="date" data-bind="text: momentShortDate, title: fullFormatDateValue"></span>
|
||||
</div>
|
||||
<div class="checkedParent">
|
||||
<i class="checkboxMessage" data-bind="css: checked() || selected() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked'"></i>
|
||||
</div>
|
||||
<div class="flagParent">
|
||||
<span class="flagOn">
|
||||
<i class="icon-favorite"></i>
|
||||
</span>
|
||||
<span class="flagOnHalf">
|
||||
<i class="icon-favorite2"></i>
|
||||
</span>
|
||||
<span class="flagOff">
|
||||
<i class="icon-favorite2"></i>
|
||||
</span>
|
||||
</div>
|
||||
<div class="senderParent actionHandle dragHandle">
|
||||
<span class="threadsCountParent fullThreadHandle" data-bind="visible: '' !== threadsLenResult(), css: { 'lastSelected': !lastInCollapsedThread() }">
|
||||
<span lass="threadsCount" data-bind="visible: !lastInCollapsedThreadLoading(), text: threadsLenResult"></span>
|
||||
<i class="icon-spinner-2 animated" data-bind="visible: lastInCollapsedThreadLoading"></i>
|
||||
</span>
|
||||
<span class="replyFlag"><i class="icon-reply"></i> </span>
|
||||
<span class="forwardFlag"><i class="icon-forward"></i> </span>
|
||||
<span class="sender" data-bind="text: senderEmailsString"></span>
|
||||
|
||||
</div>
|
||||
<div class="attachmentParent actionHandle dragHandle">
|
||||
<span class="attachment">
|
||||
<i data-bind="css: attachmentIconClass"></i>
|
||||
</span>
|
||||
</div>
|
||||
<div class="subjectParent actionHandle dragHandle">
|
||||
<span class="subject" data-bind="text: subject"></span>
|
||||
<span class="subject emptySubjectText" data-bind="text: $root.emptySubjectValue"></span>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
<div class="messageListItem e-single-line" data-bind="css: lineAsCcc()">
|
||||
<div class="sidebarParent">
|
||||
|
||||
</div>
|
||||
<div class="delimiter"></div>
|
||||
<div class="wrapper">
|
||||
<div class="dateParent actionHandle dragHandle">
|
||||
<span class="date" data-bind="text: momentShortDate, title: fullFormatDateValue"></span>
|
||||
</div>
|
||||
<div class="checkedParent">
|
||||
<i class="checkboxMessage" data-bind="css: checked() || selected() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked'"></i>
|
||||
</div>
|
||||
<div class="flagParent">
|
||||
<span class="flagOn">
|
||||
<i class="icon-star"></i>
|
||||
</span>
|
||||
<span class="flagOnHalf">
|
||||
<i class="icon-star-empty"></i>
|
||||
</span>
|
||||
<span class="flagOff">
|
||||
<i class="icon-star-empty"></i>
|
||||
</span>
|
||||
</div>
|
||||
<div class="senderParent actionHandle dragHandle">
|
||||
<span class="threadsCountParent fullThreadHandle" data-bind="visible: '' !== threadsLenResult(), css: { 'lastSelected': !lastInCollapsedThread() }">
|
||||
<span lass="threadsCount" data-bind="visible: !lastInCollapsedThreadLoading(), text: threadsLenResult"></span>
|
||||
<i class="icon-spinner animated" data-bind="visible: lastInCollapsedThreadLoading"></i>
|
||||
</span>
|
||||
<span class="replyFlag"><i class="icon-reply"></i> </span>
|
||||
<span class="forwardFlag"><i class="icon-forward"></i> </span>
|
||||
<span class="sender" data-bind="text: senderEmailsString"></span>
|
||||
|
||||
</div>
|
||||
<div class="attachmentParent actionHandle dragHandle">
|
||||
<span class="attachment">
|
||||
<i data-bind="css: attachmentIconClass"></i>
|
||||
</span>
|
||||
</div>
|
||||
<div class="subjectParent actionHandle dragHandle">
|
||||
<span class="subject" data-bind="text: subject"></span>
|
||||
<span class="subject emptySubjectText" data-bind="text: $root.emptySubjectValue"></span>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
<div class="btn-group"> </div>
|
||||
<div class="btn-group" data-placement="bottom" data-bind="visible: $root.isDraftFolder(), tooltip: 'MESSAGE/BUTTON_EDIT'">
|
||||
<a class="btn btn-success buttonEdit" data-bind="command: $root.messageEditCommand">
|
||||
<i class="icon-edit2 icon-white"></i>
|
||||
<i class="icon-pensil icon-white"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="btn-group" data-bind="visible: !$root.isDraftFolder()">
|
||||
|
|
@ -37,7 +37,7 @@
|
|||
<div class="btn-group"> </div>
|
||||
<div class="btn-group">
|
||||
<a class="btn dropdown-toggle buttonMore" data-placement="bottom" data-toggle="dropdown" data-bind="command: $root.messageVisibilityCommand, tooltip: 'MESSAGE/BUTTON_MORE'">
|
||||
<i class="icon-reorder"></i>
|
||||
<i class="icon-list"></i>
|
||||
</a>
|
||||
<ul class="dropdown-menu g-ui-menu">
|
||||
<li class="e-item" data-bind="visible: !$root.isDraftFolder()">
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
<li class="divider" data-bind="visible: !$root.isDraftFolder()"></li>
|
||||
<li class="e-item">
|
||||
<a target="_blank" class="e-link" data-bind="click: function () { if (message()) { message().viewPopupMessage(); }}">
|
||||
<i class="icon-opennewwindow"></i>
|
||||
<i class="icon-popup"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="MESSAGE/BUTTON_IN_NEW_WINDOW"></span>
|
||||
</a>
|
||||
|
|
@ -65,7 +65,7 @@
|
|||
<li class="divider"></li>
|
||||
<li class="e-item">
|
||||
<a target="_blank" class="e-link" data-bind="link: viewViewLink()">
|
||||
<i class="icon-file-css"></i>
|
||||
<i class="icon-file-code"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="MESSAGE/MENU_VIEW_ORIGINAL"></span>
|
||||
</a>
|
||||
|
|
@ -82,10 +82,10 @@
|
|||
<div class="btn-group"> </div>
|
||||
<div class="btn-group" data-bind="visible: !$root.usePreviewPane()">
|
||||
<a class="btn buttonUp" data-bind="command: $root.goUpCommand">
|
||||
<i class="icon-arrow-left"></i>
|
||||
<i class="icon-left-middle"></i>
|
||||
</a>
|
||||
<a class="btn buttonDown" data-bind="command: $root.goDownCommand">
|
||||
<i class="icon-arrow-right-2"></i>
|
||||
<i class="icon-right-middle"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -104,13 +104,13 @@
|
|||
<div class="content-wrapper">
|
||||
<div>
|
||||
<span class="buttonUp" data-bind="click: scrollToTop">
|
||||
<i class="icon-arrow-up--upload"></i>
|
||||
<i class="icon-up"></i>
|
||||
</span>
|
||||
<span class="buttonFull" data-bind="click: fullScreen">
|
||||
<i class="icon-scaleup"></i>
|
||||
<i class="icon-arrows-out"></i>
|
||||
</span>
|
||||
<span class="buttonUnFull" data-bind="click: unFullScreen">
|
||||
<i class="icon-scaledown"></i>
|
||||
<i class="icon-arrows-in"></i>
|
||||
</span>
|
||||
<div class="messageItemHeader">
|
||||
<div>
|
||||
|
|
@ -122,7 +122,7 @@
|
|||
</div>
|
||||
<div class="senderParent">
|
||||
<div class="g-ui-user-select-none" style="float: left; cursor: pointer;" data-bind="click: function() { $root.showFullInfo(!$root.showFullInfo()); }">
|
||||
<i class="icon-arrow-right" data-bind="css: $root.showFullInfo() ? 'icon-arrow-down' : 'icon-arrow-right'"></i>
|
||||
<i class="icon-right-dir" data-bind="css: $root.showFullInfo() ? 'icon-down-dir' : 'icon-right-dir'"></i>
|
||||
</div>
|
||||
<div class="informationShort" data-bind="event: { 'dblclick': toggleFullScreen }">
|
||||
<span data-bind="visible: !$root.isDraftOrSentFolder()">
|
||||
|
|
|
|||
|
|
@ -43,12 +43,12 @@
|
|||
</div>
|
||||
<div class="modal-footer">
|
||||
<a class="btn" href="http://rainloop.net/purchase/" target="_black">
|
||||
<i class="icon-cart"></i>
|
||||
<i class="icon-purchase"></i>
|
||||
|
||||
Purchase
|
||||
</a>
|
||||
<a class="btn buttonActivate" data-bind="visible: !activationSuccessed(), command: activateCommand">
|
||||
<i class="icon-key" data-bind="css: {'icon-key': !activateProcess(), 'icon-spinner-2 animated': activateProcess()}" ></i>
|
||||
<i class="icon-key" data-bind="css: {'icon-key': !activateProcess(), 'icon-spinner animated': activateProcess()}" ></i>
|
||||
|
||||
Activate
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@
|
|||
</div>
|
||||
<div class="modal-footer">
|
||||
<a class="btn buttonAddAccount" data-bind="command: addAccountCommand">
|
||||
<i data-bind="css: {'icon-user-add': !submitRequest(), 'icon-spinner-2 animated': submitRequest()}"></i>
|
||||
<i data-bind="css: {'icon-user-add': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="POPUPS_ADD_ACCOUNT/BUTTON_ADD_ACCOUNT"></span>
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -3,12 +3,12 @@
|
|||
<div class="modal-header b-header-toolbar g-ui-user-select-none">
|
||||
<button type="button" class="close" data-bind="command: cancelCommand">×</button>
|
||||
<a class="btn btn-large button-send" data-bind="command: sendCommand, css: {'btn-danger': sendError, 'btn-warning': sendSuccessButSaveError }">
|
||||
<i data-bind="css: {'icon-rocket': !sending(), 'icon-spinner-2 animated': sending(), 'icon-white': sendError() || sendSuccessButSaveError()}"></i>
|
||||
<i data-bind="css: {'icon-rocket': !sending(), 'icon-spinner animated': sending(), 'icon-white': sendError() || sendSuccessButSaveError()}"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="COMPOSE/BUTTON_SEND"></span>
|
||||
</a>
|
||||
<a class="btn button-save" data-bind="command: saveCommand, css: {'btn-danger': savedError }">
|
||||
<i data-bind="css: {'icon-floppy': !saving(), 'icon-spinner-2 animated': saving(), 'icon-white': savedError()}"></i>
|
||||
<i data-bind="css: {'icon-floppy': !saving(), 'icon-spinner animated': saving(), 'icon-white': savedError()}"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="COMPOSE/BUTTON_SAVE"></span>
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<span class="i18n" data-i18n-text="CONTACTS/BUTTON_ADD_CONTACT"></span>
|
||||
</a>
|
||||
<a class="btn btn-success button-new-message" data-bind="command: newMessageCommand">
|
||||
<i class="icon-envelope icon-white"></i>
|
||||
<i class="icon-mail icon-white"></i>
|
||||
</a>
|
||||
<a class="btn btn-danger button-delete" data-bind="command: deleteCommand">
|
||||
<i class="icon-trash icon-white"></i>
|
||||
|
|
@ -26,7 +26,7 @@
|
|||
</div>
|
||||
<div class="btn-group pull-right">
|
||||
<a class="btn dropdown-toggle button-filter" data-toggle="dropdown">
|
||||
<i class="icon-lightning"></i>
|
||||
<i class="icon-bolt"></i>
|
||||
</a>
|
||||
<ul class="dropdown-menu g-ui-menu">
|
||||
<li class="e-item">
|
||||
|
|
@ -136,7 +136,7 @@
|
|||
</div>
|
||||
|
||||
<button class="btn button-save-contact" data-bind="command: saveCommand">
|
||||
<i data-bind="css: {'icon-ok': !viewSaving(), 'icon-spinner-2 animated': viewSaving()}"></i>
|
||||
<i data-bind="css: {'icon-ok': !viewSaving(), 'icon-spinner animated': viewSaving()}"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="CONTACTS/BUTTON_CREATE_CONTACT" data-bind="visible: '' === viewID()"></span>
|
||||
<span class="i18n" data-i18n-text="CONTACTS/BUTTON_UPDATE_CONTACT" data-bind="visible: '' !== viewID()"></span>
|
||||
|
|
|
|||
|
|
@ -96,12 +96,12 @@
|
|||
<a class="btn button-test-connection pull-left" data-bind="command: testConnectionCommand, css: {
|
||||
'btn-success': testingDone() && !testingImapError() && !testingSmtpError(),
|
||||
'btn-danger': testingDone() && (testingImapError() || testingSmtpError()) }">
|
||||
<i data-bind="css: {'icon-info': !testing(), 'icon-spinner-2 animated': testing(), 'icon-white': testingDone()}"></i>
|
||||
<i data-bind="css: {'icon-info': !testing(), 'icon-spinner animated': testing(), 'icon-white': testingDone()}"></i>
|
||||
|
||||
Test Connection
|
||||
</a>
|
||||
<a class="btn button-white-list pull-left" data-bind="command: whiteListCommand">
|
||||
<i data-bind="css: {'icon-arrow-right-2': !whiteListPage(), 'icon-arrow-left': whiteListPage()}"></i>
|
||||
<i data-bind="css: {'icon-right': !whiteListPage(), 'icon-left': whiteListPage()}"></i>
|
||||
|
||||
<span data-bind="visible: !whiteListPage()">White List</span>
|
||||
<span data-bind="visible: whiteListPage()">Back</span>
|
||||
|
|
@ -113,7 +113,7 @@
|
|||
</a>
|
||||
<a class="btn buttonClear" data-bind="command: createOrAddCommand">
|
||||
<i data-bind="css: edit() ? 'icon-ok' : 'icon-plus', visible: !saving()"></i>
|
||||
<i class="icon-spinner-2 animated" data-bind="visible: saving"></i>
|
||||
<i class="icon-spinner animated" data-bind="visible: saving"></i>
|
||||
|
||||
<span data-bind="text: edit() ? 'Update' : 'Add'"></span>
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
</div>
|
||||
<div class="modal-footer">
|
||||
<a class="btn btn-danger buttonClear" data-bind="command: clearCommand">
|
||||
<i class="icon-fire" data-bind="css: {'icon-fire': !clearingProcess(), 'icon-spinner-2 animated': clearingProcess()}" ></i>
|
||||
<i class="icon-fire" data-bind="css: {'icon-fire': !clearingProcess(), 'icon-spinner animated': clearingProcess()}" ></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="POPUPS_CLEAR_FOLDER/BUTTON_CLEAR"></span>
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
</div>
|
||||
<div class="modal-footer">
|
||||
<a class="btn buttonCreate" data-bind="command: createFolder">
|
||||
<i class="icon-add-to-list"></i>
|
||||
<i class="icon-folder-add"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="POPUPS_CREATE_FOLDER/BUTTON_CREATE"></span>
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@
|
|||
</div>
|
||||
<div class="modal-footer">
|
||||
<a class="btn buttonAddAccount" data-bind="command: addOrEditIdentityCommand">
|
||||
<i data-bind="css: {'icon-ok': !submitRequest(), 'icon-spinner-2 animated': submitRequest()}"></i>
|
||||
<i data-bind="css: {'icon-user-add': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i>
|
||||
|
||||
<span data-bind="text: button"></span>
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
<span class="i18n" data-i18n-text="SETTINGS_ACCOUNTS/BUTTON_ADD_ACCOUNT"></span>
|
||||
</a>
|
||||
<div class="process-place" data-bind="style: {'visibility': visibility }">
|
||||
<i class="icon-spinner-2 animated"></i>
|
||||
<i class="icon-spinner animated"></i>
|
||||
|
||||
<span data-bind="text: processText"></span>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,32 +1,32 @@
|
|||
<div class="b-settings-general">
|
||||
<div class="form-horizontal">
|
||||
<div class="legend">
|
||||
<span class="i18n" data-i18n-text="SETTINGS_CHANGE_PASSWORD/LEGEND_CHANGE_PASSWORD"></span>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label">
|
||||
<span class="i18n" data-i18n-text="SETTINGS_CHANGE_PASSWORD/LABEL_CURRENT_PASSWORD"></span>
|
||||
</label>
|
||||
<div class="controls">
|
||||
<input type="password" data-bind="value: currentPassword, valueUpdate: 'afterkeydown'" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label">
|
||||
<span class="i18n" data-i18n-text="SETTINGS_CHANGE_PASSWORD/LABEL_NEW_PASSWORD"></span>
|
||||
</label>
|
||||
<div class="controls">
|
||||
<input type="password" data-bind="value: newPassword, valueUpdate: 'afterkeydown'" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="controls">
|
||||
<a class="btn" data-bind="command: saveNewPasswordCommand, css: { 'btn-success': passwordUpdateSuccess, 'btn-danger': passwordUpdateError }">
|
||||
<i data-bind="css: {'icon-spinner-2 animated': changeProcess(), 'icon-key': !changeProcess(), 'icon-white': passwordUpdateSuccess() || passwordUpdateError() }"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="SETTINGS_CHANGE_PASSWORD/BUTTON_UPDATE_PASSWORD"></span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="b-settings-general">
|
||||
<div class="form-horizontal">
|
||||
<div class="legend">
|
||||
<span class="i18n" data-i18n-text="SETTINGS_CHANGE_PASSWORD/LEGEND_CHANGE_PASSWORD"></span>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label">
|
||||
<span class="i18n" data-i18n-text="SETTINGS_CHANGE_PASSWORD/LABEL_CURRENT_PASSWORD"></span>
|
||||
</label>
|
||||
<div class="controls">
|
||||
<input type="password" data-bind="value: currentPassword, valueUpdate: 'afterkeydown'" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label">
|
||||
<span class="i18n" data-i18n-text="SETTINGS_CHANGE_PASSWORD/LABEL_NEW_PASSWORD"></span>
|
||||
</label>
|
||||
<div class="controls">
|
||||
<input type="password" data-bind="value: newPassword, valueUpdate: 'afterkeydown'" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="controls">
|
||||
<a class="btn" data-bind="command: saveNewPasswordCommand, css: { 'btn-success': passwordUpdateSuccess, 'btn-danger': passwordUpdateError }">
|
||||
<i data-bind="css: {'icon-spinner animated': changeProcess(), 'icon-key': !changeProcess(), 'icon-white': passwordUpdateSuccess() || passwordUpdateError() }"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="SETTINGS_CHANGE_PASSWORD/BUTTON_UPDATE_PASSWORD"></span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<a class="btn" data-bind="click: createFolder">
|
||||
<i class="icon-add-to-list"></i>
|
||||
<i class="icon-folder-add"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="SETTINGS_FOLDERS/BUTTON_CREATE"></span>
|
||||
</a>
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
<span data-bind="text: foldersListError"></span>
|
||||
</div>
|
||||
<div class="process-place" data-bind="style: {'visibility': visibility }">
|
||||
<i class="icon-spinner-2 animated"></i>
|
||||
<i class="icon-spinner animated"></i>
|
||||
|
||||
<span data-bind="text: processText"></span>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@
|
|||
<span class="i18n" data-i18n-text="SETTINGS_IDENTITIES/BUTTON_ADD_IDENTITY"></span>
|
||||
</a>
|
||||
<div class="process-place" data-bind="style: {'visibility': visibility }">
|
||||
<i class="icon-spinner-2 animated"></i>
|
||||
<i class="icon-spinner animated"></i>
|
||||
|
||||
<span data-bind="text: processText"></span>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
<div class="b-settings b-settins-right g-ui-user-select-none">
|
||||
<div class="b-toolbar">
|
||||
<div class="btn-toolbar">
|
||||
<a class="btn button-back" data-bind="click: backToMailBoxClick">
|
||||
<i class="icon-arrow-left"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="SETTINGS_LABELS/BUTTON_BACK"></span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="b-content" data-bind="nano: true">
|
||||
<div class="content g-scrollbox">
|
||||
<div class="content-wrapper">
|
||||
<div id="rl-settings-subscreen" class="b-settings-content"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="b-settings b-settins-right g-ui-user-select-none">
|
||||
<div class="b-toolbar">
|
||||
<div class="btn-toolbar">
|
||||
<a class="btn button-back" data-bind="click: backToMailBoxClick">
|
||||
<i class="icon-left"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="SETTINGS_LABELS/BUTTON_BACK"></span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="b-content" data-bind="nano: true">
|
||||
<div class="content g-scrollbox">
|
||||
<div class="content-wrapper">
|
||||
<div id="rl-settings-subscreen" class="b-settings-content"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -6,7 +6,7 @@
|
|||
<div class="control-group" data-bind="visible: !googleLoggined()">
|
||||
<button class="btn" data-bind="command: connectGoogle">
|
||||
<i class="icon-google" data-bind="visible: !googleActions()"></i>
|
||||
<i class="icon-spinner-2 animated" data-bind="visible: googleActions()"></i>
|
||||
<i class="icon-spinner animated" data-bind="visible: googleActions()"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="SETTINGS_SOCIAL/BUTTON_GOOGLE_CONNECT"></span>
|
||||
</button>
|
||||
|
|
@ -26,7 +26,7 @@
|
|||
<br />
|
||||
<button class="btn" data-bind="command: disconnectGoogle">
|
||||
<i class="icon-remove" data-bind="visible: !googleActions()"></i>
|
||||
<i class="icon-spinner-2 animated" data-bind="visible: googleActions()"></i>
|
||||
<i class="icon-spinner animated" data-bind="visible: googleActions()"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="SETTINGS_SOCIAL/BUTTON_GOOGLE_DISCONNECT"></span>
|
||||
</button>
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
<div class="control-group" data-bind="visible: !facebookLoggined()">
|
||||
<button class="btn" data-bind="command: connectFacebook">
|
||||
<i class="icon-facebook" data-bind="visible: !facebookActions()"></i>
|
||||
<i class="icon-spinner-2 animated" data-bind="visible: facebookActions()"></i>
|
||||
<i class="icon-spinner animated" data-bind="visible: facebookActions()"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="SETTINGS_SOCIAL/BUTTON_FACEBOOK_CONNECT"></span>
|
||||
</button>
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<br />
|
||||
<button class="btn" data-bind="command: disconnectFacebook">
|
||||
<i class="icon-remove" data-bind="visible: !facebookActions()"></i>
|
||||
<i class="icon-spinner-2 animated" data-bind="visible: facebookActions()"></i>
|
||||
<i class="icon-spinner animated" data-bind="visible: facebookActions()"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="SETTINGS_SOCIAL/BUTTON_FACEBOOK_DISCONNECT"></span>
|
||||
</button>
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
<div class="control-group" data-bind="visible: !twitterLoggined()">
|
||||
<button class="btn" data-bind="command: connectTwitter">
|
||||
<i class="icon-twitter" data-bind="visible: !twitterActions()"></i>
|
||||
<i class="icon-spinner-2 animated" data-bind="visible: twitterActions()"></i>
|
||||
<i class="icon-spinner animated" data-bind="visible: twitterActions()"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="SETTINGS_SOCIAL/BUTTON_TWITTER_CONNECT"></span>
|
||||
</button>
|
||||
|
|
@ -92,7 +92,7 @@
|
|||
<br />
|
||||
<button class="btn" data-bind="command: disconnectTwitter">
|
||||
<i class="icon-remove" data-bind="visible: !twitterActions()"></i>
|
||||
<i class="icon-spinner-2 animated" data-bind="visible: twitterActions()"></i>
|
||||
<i class="icon-spinner animated" data-bind="visible: twitterActions()"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="SETTINGS_SOCIAL/BUTTON_TWITTER_DISCONNECT"></span>
|
||||
</button>
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
<br />
|
||||
</div>
|
||||
<a class="btn" data-bind="visible: '' === customThemeImg(), initDom: customThemeUploaderButton">
|
||||
<i data-bind="css: {'icon-image': !customThemeUploaderProgress(), 'icon-spinner-2 animated': customThemeUploaderProgress()}"></i>
|
||||
<i data-bind="css: {'icon-image': !customThemeUploaderProgress(), 'icon-spinner animated': customThemeUploaderProgress()}"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="SETTINGS_THEMES/BUTTON_UPLOAD_BACKGROUND_IMAGE"></span>
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -1,63 +1,63 @@
|
|||
<div class="b-system-drop-down g-ui-user-select-none">
|
||||
<div class="b-toolbar">
|
||||
<div class="btn-toolbar">
|
||||
<div class="btn-group pull-right">
|
||||
<a class="btn btn-narrow" data-bind="click: logoutClick">
|
||||
<i class="icon-switch"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="btn-group pull-right">
|
||||
|
||||
</div>
|
||||
<div class="btn-group pull-right">
|
||||
<a class="btn btn-ellipsis btn-block dropdown-toggle system-dropdown" data-placement="left" data-toggle="dropdown"
|
||||
data-tooltip-class="tooltip-big" data-bind="tooltip2: emailTitle">
|
||||
<i data-bind="css: {'icon-user': !loading(), 'icon-spinner-2 animated': loading()}"></i>
|
||||
|
||||
<span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu g-ui-menu">
|
||||
<!-- ko if: accounts().length -->
|
||||
<!-- ko foreach: accounts -->
|
||||
<li class="e-item">
|
||||
<a class="e-link" data-bind="click: $root.accountClick, attr: {'href': changeAccountLink() }">
|
||||
<i class="icon-ok" data-bind="visible: $root.accountEmail() === email"></i>
|
||||
<i class="icon-user" data-bind="visible: $root.accountEmail() !== email"></i>
|
||||
|
||||
<span data-bind="text: email"></span>
|
||||
</a>
|
||||
</li>
|
||||
<!-- /ko -->
|
||||
<li class="divider"></li>
|
||||
<!-- /ko -->
|
||||
<!-- ko if: allowAddAccount -->
|
||||
<li class="e-item">
|
||||
<a class="e-link" data-bind="click: addAccountClick">
|
||||
<i class="icon-user-add"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="TOP_TOOLBAR/BUTTON_ADD_ACCOUNT"></span>
|
||||
</a>
|
||||
</li>
|
||||
<!-- /ko -->
|
||||
<li class="e-item">
|
||||
<a class="e-link" data-bind="click: settingsClick">
|
||||
<i class="icon-cog"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="TOP_TOOLBAR/BUTTON_SETTINGS"></span>
|
||||
</a>
|
||||
</li>
|
||||
<!--
|
||||
<li class="divider"></li>
|
||||
<li class="e-item">
|
||||
<a class="e-link" data-bind="click: logoutClick">
|
||||
<i class="icon-switch"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="TOP_TOOLBAR/BUTTON_LOGOUT"></span>
|
||||
</a>
|
||||
</li>
|
||||
-->
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="b-system-drop-down g-ui-user-select-none">
|
||||
<div class="b-toolbar">
|
||||
<div class="btn-toolbar">
|
||||
<div class="btn-group pull-right">
|
||||
<a class="btn btn-narrow" data-bind="click: logoutClick">
|
||||
<i class="icon-power"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="btn-group pull-right">
|
||||
|
||||
</div>
|
||||
<div class="btn-group pull-right">
|
||||
<a class="btn btn-ellipsis btn-block dropdown-toggle system-dropdown" data-placement="left" data-toggle="dropdown"
|
||||
data-tooltip-class="tooltip-big" data-bind="tooltip2: emailTitle">
|
||||
<i data-bind="css: {'icon-user': !loading(), 'icon-spinner animated': loading()}"></i>
|
||||
|
||||
<span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu g-ui-menu">
|
||||
<!-- ko if: accounts().length -->
|
||||
<!-- ko foreach: accounts -->
|
||||
<li class="e-item">
|
||||
<a class="e-link" data-bind="click: $root.accountClick, attr: {'href': changeAccountLink() }">
|
||||
<i class="icon-ok" data-bind="visible: $root.accountEmail() === email"></i>
|
||||
<i class="icon-user" data-bind="visible: $root.accountEmail() !== email"></i>
|
||||
|
||||
<span data-bind="text: email"></span>
|
||||
</a>
|
||||
</li>
|
||||
<!-- /ko -->
|
||||
<li class="divider"></li>
|
||||
<!-- /ko -->
|
||||
<!-- ko if: allowAddAccount -->
|
||||
<li class="e-item">
|
||||
<a class="e-link" data-bind="click: addAccountClick">
|
||||
<i class="icon-user-add"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="TOP_TOOLBAR/BUTTON_ADD_ACCOUNT"></span>
|
||||
</a>
|
||||
</li>
|
||||
<!-- /ko -->
|
||||
<li class="e-item">
|
||||
<a class="e-link" data-bind="click: settingsClick">
|
||||
<i class="icon-cog"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="TOP_TOOLBAR/BUTTON_SETTINGS"></span>
|
||||
</a>
|
||||
</li>
|
||||
<!--
|
||||
<li class="divider"></li>
|
||||
<li class="e-item">
|
||||
<a class="e-link" data-bind="click: logoutClick">
|
||||
<i class="icon-power"></i>
|
||||
|
||||
<span class="i18n" data-i18n-text="TOP_TOOLBAR/BUTTON_LOGOUT"></span>
|
||||
</a>
|
||||
</li>
|
||||
-->
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -1143,308 +1143,321 @@ table {
|
|||
border-spacing: 0;
|
||||
}
|
||||
|
||||
@charset "UTF-8";
|
||||
|
||||
@font-face {
|
||||
font-family: 'icomoon';
|
||||
src:url('fonts/icomoon.eot');
|
||||
src:url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
|
||||
url('fonts/icomoon.woff') format('woff'),
|
||||
url('fonts/icomoon.ttf') format('truetype'),
|
||||
url('fonts/icomoon.svg#icomoon') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-family: "rainloop";
|
||||
src:url("fonts/rainloop.eot");
|
||||
src:url("fonts/rainloop.eot?#iefix") format("embedded-opentype"),
|
||||
url("fonts/rainloop.woff") format("woff"),
|
||||
url("fonts/rainloop.ttf") format("truetype"),
|
||||
url("fonts/rainloop.svg#rainloop") format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
|
||||
}
|
||||
|
||||
/* Use the following CSS code if you want to use data attributes for inserting your icons */
|
||||
[data-icon]:before {
|
||||
font-family: 'icomoon';
|
||||
content: attr(data-icon);
|
||||
speak: none;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-family: "rainloop" !important;
|
||||
content: attr(data-icon);
|
||||
font-style: normal !important;
|
||||
font-weight: normal !important;
|
||||
font-variant: normal !important;
|
||||
text-transform: none !important;
|
||||
speak: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
/* 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-paperplane, .icon-reply, .icon-reply-all, .icon-forward, .icon-search, .icon-add-to-list, .icon-info, .icon-arrow-right, .icon-arrow-down, .icon-ellipsis, .icon-pencil, .icon-image, .icon-music, .icon-film, .icon-print, .icon-calendar, .icon-key, .icon-cog, .icon-fire, .icon-rocket, .icon-checkbox-checked, .icon-checkbox-unchecked, .icon-checkbox-partial, .icon-radio-checked, .icon-radio-unchecked, .icon-google, .icon-google-plus, .icon-facebook, .icon-twitter, .icon-youtube, .icon-file-pdf, .icon-file-word, .icon-file-excel, .icon-file-powerpoint, .icon-file-xml, .icon-file-css, .icon-warning, .icon-switch, .icon-wrench, .icon-remove, .icon-ok, .icon-plus, .icon-minus, .icon-attachment, .icon-arrow-left, .icon-arrow-up--upload, .icon-arrow-right-2, .icon-arrow-down-2, .icon-file, .icon-file-zip, .icon-console, .icon-floppy, .icon-user, .icon-envelope, .icon-user-add, .icon-eye, .icon-arrow-right-3, .icon-arrow-down-3, .icon-facebook-2, .icon-spinner, .icon-lightning, .icon-trash, .icon-download, .icon-upload, .icon-settings5, .icon-bug, .icon-libreoffice, .icon-file-openoffice, .icon-google-drive, .icon-edit2, .icon-phonebook, .icon-book, .icon-spinner-2, .icon-bell, .icon-cart, .icon-cog-2, .icon-legacyfilemanager, .icon-favorite, .icon-favorite2, .icon-loved, .icon-love, .icon-scaleup, .icon-scaledown, .icon-opennewwindow, .icon-repeat, .icon-reorder, .icon-skype, .icon-dropbox {
|
||||
font-family: 'icomoon';
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
[class^="icon-"]:before,
|
||||
[class*=" icon-"]:before {
|
||||
font-family: "rainloop" !important;
|
||||
font-style: normal !important;
|
||||
font-weight: normal !important;
|
||||
font-variant: normal !important;
|
||||
text-transform: none !important;
|
||||
speak: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
.icon-paperplane:before {
|
||||
content: "\e000";
|
||||
|
||||
.icon-address-book:before {
|
||||
content: "\e000";
|
||||
}
|
||||
.icon-reply:before {
|
||||
content: "\e001";
|
||||
.icon-arrows-in:before {
|
||||
content: "\e001";
|
||||
}
|
||||
.icon-reply-all:before {
|
||||
content: "\e002";
|
||||
.icon-arrows-out:before {
|
||||
content: "\e002";
|
||||
}
|
||||
.icon-forward:before {
|
||||
content: "\e003";
|
||||
.icon-list:before {
|
||||
content: "\e003";
|
||||
}
|
||||
.icon-search:before {
|
||||
content: "\e004";
|
||||
}
|
||||
.icon-add-to-list:before {
|
||||
content: "\e005";
|
||||
}
|
||||
.icon-info:before {
|
||||
content: "\e006";
|
||||
}
|
||||
.icon-arrow-right:before {
|
||||
content: "\e007";
|
||||
}
|
||||
.icon-arrow-down:before {
|
||||
content: "\e008";
|
||||
}
|
||||
.icon-ellipsis:before {
|
||||
content: "\e009";
|
||||
}
|
||||
.icon-pencil:before {
|
||||
content: "\e00a";
|
||||
}
|
||||
.icon-image:before {
|
||||
content: "\e00b";
|
||||
}
|
||||
.icon-music:before {
|
||||
content: "\e00c";
|
||||
}
|
||||
.icon-film:before {
|
||||
content: "\e00d";
|
||||
}
|
||||
.icon-print:before {
|
||||
content: "\e00e";
|
||||
}
|
||||
.icon-calendar:before {
|
||||
content: "\e00f";
|
||||
}
|
||||
.icon-key:before {
|
||||
content: "\e010";
|
||||
}
|
||||
.icon-cog:before {
|
||||
content: "\e011";
|
||||
}
|
||||
.icon-fire:before {
|
||||
content: "\e012";
|
||||
}
|
||||
.icon-rocket:before {
|
||||
content: "\e013";
|
||||
}
|
||||
.icon-checkbox-checked:before {
|
||||
content: "\e014";
|
||||
}
|
||||
.icon-checkbox-unchecked:before {
|
||||
content: "\e015";
|
||||
}
|
||||
.icon-checkbox-partial:before {
|
||||
content: "\e016";
|
||||
}
|
||||
.icon-radio-checked:before {
|
||||
content: "\e017";
|
||||
}
|
||||
.icon-radio-unchecked:before {
|
||||
content: "\e018";
|
||||
}
|
||||
.icon-google:before {
|
||||
content: "\e019";
|
||||
}
|
||||
.icon-google-plus:before {
|
||||
content: "\e01a";
|
||||
}
|
||||
.icon-facebook:before {
|
||||
content: "\e01b";
|
||||
}
|
||||
.icon-twitter:before {
|
||||
content: "\e01c";
|
||||
}
|
||||
.icon-youtube:before {
|
||||
content: "\e01d";
|
||||
}
|
||||
.icon-file-pdf:before {
|
||||
content: "\e01e";
|
||||
}
|
||||
.icon-file-word:before {
|
||||
content: "\e01f";
|
||||
}
|
||||
.icon-file-excel:before {
|
||||
content: "\e020";
|
||||
}
|
||||
.icon-file-powerpoint:before {
|
||||
content: "\e021";
|
||||
}
|
||||
.icon-file-xml:before {
|
||||
content: "\e022";
|
||||
}
|
||||
.icon-file-css:before {
|
||||
content: "\e023";
|
||||
}
|
||||
.icon-warning:before {
|
||||
content: "\e024";
|
||||
}
|
||||
.icon-switch:before {
|
||||
content: "\e025";
|
||||
}
|
||||
.icon-wrench:before {
|
||||
content: "\e026";
|
||||
}
|
||||
.icon-remove:before {
|
||||
content: "\e027";
|
||||
}
|
||||
.icon-ok:before {
|
||||
content: "\e028";
|
||||
}
|
||||
.icon-plus:before {
|
||||
content: "\e029";
|
||||
}
|
||||
.icon-minus:before {
|
||||
content: "\e02a";
|
||||
}
|
||||
.icon-attachment:before {
|
||||
content: "\e02b";
|
||||
}
|
||||
.icon-arrow-left:before {
|
||||
content: "\e02c";
|
||||
}
|
||||
.icon-arrow-up--upload:before {
|
||||
content: "\e02d";
|
||||
}
|
||||
.icon-arrow-right-2:before {
|
||||
content: "\e02e";
|
||||
}
|
||||
.icon-arrow-down-2:before {
|
||||
content: "\e02f";
|
||||
}
|
||||
.icon-file:before {
|
||||
content: "\e030";
|
||||
}
|
||||
.icon-file-zip:before {
|
||||
content: "\e031";
|
||||
}
|
||||
.icon-console:before {
|
||||
content: "\e032";
|
||||
}
|
||||
.icon-floppy:before {
|
||||
content: "\e033";
|
||||
content: "\e004";
|
||||
}
|
||||
.icon-user:before {
|
||||
content: "\e034";
|
||||
}
|
||||
.icon-envelope:before {
|
||||
content: "\e035";
|
||||
content: "\e005";
|
||||
}
|
||||
.icon-user-add:before {
|
||||
content: "\e036";
|
||||
content: "\e006";
|
||||
}
|
||||
.icon-eye:before {
|
||||
content: "\e037";
|
||||
.icon-tags:before {
|
||||
content: "\e007";
|
||||
}
|
||||
.icon-arrow-right-3:before {
|
||||
content: "\e038";
|
||||
.icon-paper-plane:before {
|
||||
content: "\e008";
|
||||
}
|
||||
.icon-arrow-down-3:before {
|
||||
content: "\e039";
|
||||
.icon-reply:before {
|
||||
content: "\e009";
|
||||
}
|
||||
.icon-facebook-2:before {
|
||||
content: "\e03a";
|
||||
.icon-reply-all:before {
|
||||
content: "\e00a";
|
||||
}
|
||||
.icon-spinner:before {
|
||||
content: "\e03b";
|
||||
.icon-forward:before {
|
||||
content: "\e00b";
|
||||
}
|
||||
.icon-lightning:before {
|
||||
content: "\e03c";
|
||||
.icon-info:before {
|
||||
content: "\e00c";
|
||||
}
|
||||
.icon-trash:before {
|
||||
content: "\e03d";
|
||||
.icon-right-dir:before {
|
||||
content: "\e00d";
|
||||
}
|
||||
.icon-download:before {
|
||||
content: "\e03e";
|
||||
.icon-down-dir:before {
|
||||
content: "\e00e";
|
||||
}
|
||||
.icon-upload:before {
|
||||
content: "\e03f";
|
||||
.icon-image:before {
|
||||
content: "\e00f";
|
||||
}
|
||||
.icon-settings5:before {
|
||||
content: "\e040";
|
||||
.icon-print:before {
|
||||
content: "\e010";
|
||||
}
|
||||
.icon-bug:before {
|
||||
content: "\e041";
|
||||
.icon-calendar:before {
|
||||
content: "\e011";
|
||||
}
|
||||
.icon-libreoffice:before {
|
||||
content: "\e042";
|
||||
.icon-cog:before {
|
||||
content: "\e012";
|
||||
}
|
||||
.icon-file-openoffice:before {
|
||||
content: "\e043";
|
||||
.icon-wrench:before {
|
||||
content: "\e013";
|
||||
}
|
||||
.icon-google-drive:before {
|
||||
content: "\e044";
|
||||
.icon-rocket:before {
|
||||
content: "\e014";
|
||||
}
|
||||
.icon-edit2:before {
|
||||
content: "\e045";
|
||||
.icon-fire:before {
|
||||
content: "\e015";
|
||||
}
|
||||
.icon-phonebook:before {
|
||||
content: "\e046";
|
||||
.icon-purchase:before {
|
||||
content: "\e016";
|
||||
}
|
||||
.icon-book:before {
|
||||
content: "\e047";
|
||||
}
|
||||
.icon-spinner-2:before {
|
||||
content: "\e048";
|
||||
}
|
||||
.icon-bell:before {
|
||||
content: "\e049";
|
||||
}
|
||||
.icon-cart:before {
|
||||
content: "\e04a";
|
||||
}
|
||||
.icon-cog-2:before {
|
||||
content: "\e04b";
|
||||
}
|
||||
.icon-legacyfilemanager:before {
|
||||
content: "\e04c";
|
||||
}
|
||||
.icon-favorite:before {
|
||||
content: "\e04d";
|
||||
}
|
||||
.icon-favorite2:before {
|
||||
content: "\e04e";
|
||||
}
|
||||
.icon-loved:before {
|
||||
content: "\e04f";
|
||||
}
|
||||
.icon-love:before {
|
||||
content: "\e050";
|
||||
}
|
||||
.icon-scaleup:before {
|
||||
content: "\e051";
|
||||
}
|
||||
.icon-scaledown:before {
|
||||
content: "\e052";
|
||||
}
|
||||
.icon-opennewwindow:before {
|
||||
content: "\e053";
|
||||
}
|
||||
.icon-repeat:before {
|
||||
content: "\e054";
|
||||
}
|
||||
.icon-reorder:before {
|
||||
content: "\e055";
|
||||
}
|
||||
.icon-skype:before {
|
||||
content: "\e056";
|
||||
.icon-apple:before {
|
||||
content: "\e017";
|
||||
}
|
||||
.icon-dropbox:before {
|
||||
content: "\e057";
|
||||
content: "\e018";
|
||||
}
|
||||
.icon-skype:before {
|
||||
content: "\e019";
|
||||
}
|
||||
.icon-creative-commons:before {
|
||||
content: "\e01a";
|
||||
}
|
||||
.icon-ellipsis:before {
|
||||
content: "\e01b";
|
||||
}
|
||||
.icon-left:before {
|
||||
content: "\e01c";
|
||||
}
|
||||
.icon-right:before {
|
||||
content: "\e01d";
|
||||
}
|
||||
.icon-down:before {
|
||||
content: "\e01e";
|
||||
}
|
||||
.icon-right-mini:before {
|
||||
content: "\e01f";
|
||||
}
|
||||
.icon-down-mini:before {
|
||||
content: "\e020";
|
||||
}
|
||||
.icon-up:before {
|
||||
content: "\e021";
|
||||
}
|
||||
.icon-star-empty:before {
|
||||
content: "\e022";
|
||||
}
|
||||
.icon-star:before {
|
||||
content: "\e023";
|
||||
}
|
||||
.icon-at:before {
|
||||
content: "\e024";
|
||||
}
|
||||
.icon-list-add:before {
|
||||
content: "\e025";
|
||||
}
|
||||
.icon-google:before {
|
||||
content: "\e026";
|
||||
}
|
||||
.icon-google-plus:before {
|
||||
content: "\e027";
|
||||
}
|
||||
.icon-twitter:before {
|
||||
content: "\e028";
|
||||
}
|
||||
.icon-youtube:before {
|
||||
content: "\e029";
|
||||
}
|
||||
.icon-warning:before {
|
||||
content: "\e02a";
|
||||
}
|
||||
.icon-warning-alt:before {
|
||||
content: "\e02b";
|
||||
}
|
||||
.icon-power:before {
|
||||
content: "\e02c";
|
||||
}
|
||||
.icon-plus:before {
|
||||
content: "\e02d";
|
||||
}
|
||||
.icon-ok:before {
|
||||
content: "\e02e";
|
||||
}
|
||||
.icon-remove:before {
|
||||
content: "\e02f";
|
||||
}
|
||||
.icon-file:before {
|
||||
content: "\e030";
|
||||
}
|
||||
.icon-file-code:before {
|
||||
content: "\e031";
|
||||
}
|
||||
.icon-file-chart-graph:before {
|
||||
content: "\e032";
|
||||
}
|
||||
.icon-file-zip:before {
|
||||
content: "\e033";
|
||||
}
|
||||
.icon-file-music:before {
|
||||
content: "\e034";
|
||||
}
|
||||
.icon-file-text:before {
|
||||
content: "\e035";
|
||||
}
|
||||
.icon-file-bookmark:before {
|
||||
content: "\e036";
|
||||
}
|
||||
.icon-file-image:before {
|
||||
content: "\e037";
|
||||
}
|
||||
.icon-file-analytics:before {
|
||||
content: "\e038";
|
||||
}
|
||||
.icon-file-certificate:before {
|
||||
content: "\e039";
|
||||
}
|
||||
.icon-attachment:before {
|
||||
content: "\e03a";
|
||||
}
|
||||
.icon-file-excel:before {
|
||||
content: "\e03b";
|
||||
}
|
||||
.icon-file-movie:before {
|
||||
content: "\e03c";
|
||||
}
|
||||
.icon-folder-add:before {
|
||||
content: "\e03d";
|
||||
}
|
||||
.icon-folder:before {
|
||||
content: "\e03e";
|
||||
}
|
||||
.icon-floppy:before {
|
||||
content: "\e03f";
|
||||
}
|
||||
.icon-eye:before {
|
||||
content: "\e040";
|
||||
}
|
||||
.icon-facebook-alt:before {
|
||||
content: "\e041";
|
||||
}
|
||||
.icon-facebook:before {
|
||||
content: "\e042";
|
||||
}
|
||||
.icon-bolt:before {
|
||||
content: "\e043";
|
||||
}
|
||||
.icon-download:before {
|
||||
content: "\e044";
|
||||
}
|
||||
.icon-upload:before {
|
||||
content: "\e045";
|
||||
}
|
||||
.icon-bug:before {
|
||||
content: "\e046";
|
||||
}
|
||||
.icon-heart:before {
|
||||
content: "\e047";
|
||||
}
|
||||
.icon-heart-empty:before {
|
||||
content: "\e048";
|
||||
}
|
||||
.icon-popup:before {
|
||||
content: "\e049";
|
||||
}
|
||||
.icon-checkbox-checked:before {
|
||||
content: "\e04a";
|
||||
}
|
||||
.icon-checkbox-unchecked:before {
|
||||
content: "\e04b";
|
||||
}
|
||||
.icon-checkbox-partial:before {
|
||||
content: "\e04c";
|
||||
}
|
||||
.icon-radio-checked:before {
|
||||
content: "\e04d";
|
||||
}
|
||||
.icon-radio-unchecked:before {
|
||||
content: "\e04e";
|
||||
}
|
||||
.icon-google-drive:before {
|
||||
content: "\e04f";
|
||||
}
|
||||
.icon-spinner:before {
|
||||
content: "\e050";
|
||||
}
|
||||
.icon-github:before {
|
||||
content: "\e051";
|
||||
}
|
||||
.icon-telephone:before {
|
||||
content: "\e052";
|
||||
}
|
||||
.icon-mobile:before {
|
||||
content: "\e053";
|
||||
}
|
||||
.icon-mail:before {
|
||||
content: "\e054";
|
||||
}
|
||||
.icon-pencil:before {
|
||||
content: "\e055";
|
||||
}
|
||||
.icon-trash:before {
|
||||
content: "\e056";
|
||||
}
|
||||
.icon-left-middle:before {
|
||||
content: "\e057";
|
||||
}
|
||||
.icon-right-middle:before {
|
||||
content: "\e058";
|
||||
}
|
||||
.icon-repeat:before {
|
||||
content: "\e059";
|
||||
}
|
||||
.icon-key:before {
|
||||
content: "\e05a";
|
||||
}
|
||||
.icon-lock:before {
|
||||
content: "\e05b";
|
||||
}
|
||||
|
||||
/** initial setup **/
|
||||
|
|
@ -5222,22 +5235,24 @@ a.badge:hover {
|
|||
.affix {
|
||||
position: fixed;
|
||||
}
|
||||
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
||||
@font-face {
|
||||
font-family: 'icomoon';
|
||||
src: url('fonts/icomoon.svg#icomoon') format('svg');
|
||||
}
|
||||
}
|
||||
[class^="icon-"],
|
||||
[class*=" icon-"] {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
font-size: 15px;
|
||||
*margin-right: .3em;
|
||||
line-height: 17px;
|
||||
font-size: 16px;
|
||||
vertical-align: text-top;
|
||||
}
|
||||
.icon-folder,
|
||||
.icon-folder-add,
|
||||
.icon-address-book,
|
||||
.icon-list {
|
||||
line-height: 18px;
|
||||
font-size: 18px;
|
||||
margin-top: -2px;
|
||||
margin-left: -2px;
|
||||
}
|
||||
/* White icons with optional class, or on hover/active states of certain elements */
|
||||
.icon-white,
|
||||
.nav > .active > a > [class^="icon-"],
|
||||
|
|
@ -5248,22 +5263,8 @@ a.badge:hover {
|
|||
.g-ui-menu .e-item:hover [class*=" icon-"] {
|
||||
color: #fff;
|
||||
}
|
||||
[class^="icon2-"],
|
||||
[class*=" icon2-"] {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
font-size: 15px;
|
||||
*margin-right: .3em;
|
||||
vertical-align: text-top;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.icon2-none {
|
||||
background-image: none;
|
||||
}
|
||||
.icon3-as-button {
|
||||
cursor: pointer;
|
||||
.icon-none {
|
||||
background-image: none !important;
|
||||
}
|
||||
.icon-checkbox-checked,
|
||||
.icon-checkbox-unchecked,
|
||||
|
|
@ -5305,10 +5306,6 @@ a.badge:hover {
|
|||
.icon-white.icon-radio-unchecked:active {
|
||||
color: #fff;
|
||||
}
|
||||
.icon-refresh.in-process {
|
||||
background-position: 0px 0px;
|
||||
background-image: url('images/sync.gif');
|
||||
}
|
||||
.denied-by-browser {
|
||||
cursor: default;
|
||||
}
|
||||
|
|
@ -5316,19 +5313,11 @@ a.badge:hover {
|
|||
.denied-by-browser icon-checkbox-unchecked {
|
||||
cursor: default;
|
||||
}
|
||||
.icon-arrow-right-3,
|
||||
.icon-arrow-down-3 {
|
||||
.right-mini,
|
||||
.down-mini {
|
||||
width: 16px;
|
||||
line-height: 20px;
|
||||
}
|
||||
.icon2-reload {
|
||||
background-image: url('images/sync.png');
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.icon2-aminate-reload {
|
||||
background-image: url('images/sync.gif');
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
@-webkit-keyframes rotation {
|
||||
from {
|
||||
-webkit-transform: rotate(0deg);
|
||||
|
|
@ -5353,38 +5342,26 @@ a.badge:hover {
|
|||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
.icon-repeat,
|
||||
.icon-spinner,
|
||||
.icon-spinner-2 {
|
||||
.icon-spinner {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.icon-repeat:before,
|
||||
.icon-spinner:before,
|
||||
.icon-spinner-2:before {
|
||||
.icon-spinner:before {
|
||||
font-size: 16px;
|
||||
line-height: 100%;
|
||||
}
|
||||
html.no-cssanimations .icon-repeat,
|
||||
html.no-cssanimations .icon-spinner,
|
||||
html.no-cssanimations .icon-spinner-2 {
|
||||
html.no-cssanimations .icon-spinner {
|
||||
background-image: url('images/sync.png');
|
||||
background-repeat: no-repeat;
|
||||
font-family: Arial;
|
||||
}
|
||||
html.no-cssanimations .icon-repeat:before,
|
||||
html.no-cssanimations .icon-spinner:before,
|
||||
html.no-cssanimations .icon-spinner-2:before {
|
||||
html.no-cssanimations .icon-spinner:before {
|
||||
content: "";
|
||||
}
|
||||
html.no-cssanimations .icon-repeat.animated,
|
||||
html.no-cssanimations .icon-spinner.animated,
|
||||
html.no-cssanimations .icon-spinner-2.animated {
|
||||
html.no-cssanimations .icon-spinner.animated {
|
||||
background-image: url('images/sync.gif');
|
||||
}
|
||||
html.cssanimations .icon-repeat.animated,
|
||||
html.cssanimations .icon-spinner.animated,
|
||||
html.cssanimations .icon-spinner-2.animated {
|
||||
html.cssanimations .icon-spinner.animated {
|
||||
-webkit-animation: rotation 1s infinite linear;
|
||||
-moz-animation: rotation 1s infinite linear;
|
||||
animation: rotation 1s infinite linear;
|
||||
|
|
|
|||
4
rainloop/v/0.0.0/static/css/app.min.css
vendored
4
rainloop/v/0.0.0/static/css/app.min.css
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1,308 +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="16"></iconset>
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="icomoon" horiz-adv-x="512" >
|
||||
<font-face units-per-em="512" ascent="480" descent="-32" />
|
||||
<missing-glyph horiz-adv-x="512" />
|
||||
<glyph class="hidden" unicode="" d="M0,480L 512 -32L0 -32 z" horiz-adv-x="0" />
|
||||
<glyph unicode="" d="M 478.566,412.544C 469.786,409.446, 35.149,256.307, 26.598,253.286c-7.27-2.56-8.909-8.832-0.256-12.262
|
||||
c 10.266-4.122, 97.178-38.938, 97.178-38.938L 123.494,202.086 l 57.626-23.091c0,0, 277.427,203.75, 281.19,206.49c 3.763,2.765, 8.141-2.432, 5.402-5.402
|
||||
c-2.739-2.995-201.498-217.958-201.498-217.958c-0.026,0-0.026,0-0.026,0l-11.571-12.902l 15.334-8.243l0,0c0,0, 119.040-64.077, 127.514-68.659
|
||||
c 7.424-3.994, 17.101-0.666, 19.251,8.576c 2.534,10.906, 72.832,313.907, 74.394,320.614C 493.158,410.291, 487.373,415.642, 478.566,412.544z M 180.608,40.653
|
||||
c0-6.323, 3.558-8.064, 8.474-3.61c 6.4,5.837, 72.934,65.536, 72.934,65.536l-81.408,42.138L 180.608,40.653 z" data-tags="paperplane, travel, plane, airplane" />
|
||||
<glyph unicode="" d="M 486.4,49.92c0,0-51.2,249.165-275.84,249.165L 210.56,398.080 L 25.6,232.832l 184.96-171.29l0,111.565 C 332.493,173.107, 422.835,162.304, 486.4,49.92z" data-tags="reply, undo, arrow, left, back, previous" />
|
||||
<glyph unicode="" d="M 184.96,329.472L 184.96,398.080 L0,232.832l 184.96-171.29l0,71.142 L 76.8,232.832L 184.96,329.472z M 312.96,299.11L 312.96,398.080 L 128,232.832l 184.96-171.29l0,111.565
|
||||
c 84.301,0, 135.475-10.803, 199.040-123.187C 512,49.92, 502.605,299.11, 312.96,299.11z" data-tags="reply-all, first, arrow, left" />
|
||||
<glyph unicode="" d="M 301.44,173.107l0-111.539 L 486.4,232.832L 301.44,398.080l0-98.97 C 76.8,299.11, 25.6,49.92, 25.6,49.92C 89.165,162.304, 179.507,173.107, 301.44,173.107z" data-tags="forward, arrow, right" />
|
||||
<glyph unicode="" d="M 449.152,84.019l-96.742,96.742c 14.592,23.987, 22.989,52.096, 22.989,82.227c0,87.45-75.802,163.251-163.277,163.251
|
||||
C 124.672,426.24, 53.76,355.328, 53.76,267.878c0-87.475, 75.776-163.277, 163.251-163.277c 29.082,0, 56.32,7.885, 79.744,21.581l 97.254-97.28
|
||||
c 9.549-9.523, 24.96-9.523, 34.458,0l 24.141,24.115C 462.106,62.541, 458.65,74.522, 449.152,84.019z M 102.502,267.878
|
||||
c0,60.544, 49.075,109.645, 109.619,109.645c 60.57,0, 114.534-53.965, 114.534-114.534s-49.075-109.645-109.645-109.645S 102.502,207.309, 102.502,267.878z" data-tags="search, magnifier, lookup, find" />
|
||||
<glyph unicode="" d="M 179.2,249.6L 25.6,249.6 c-14.131,0-25.6-11.469-25.6-25.6s 11.469-25.6, 25.6-25.6l 153.6,0 c 14.131,0, 25.6,11.469, 25.6,25.6S 193.331,249.6, 179.2,249.6z M 179.2,147.2L 25.6,147.2 c-14.131,0-25.6-11.443-25.6-25.6s 11.469-25.6, 25.6-25.6l 153.6,0
|
||||
c 14.131,0, 25.6,11.443, 25.6,25.6S 193.331,147.2, 179.2,147.2z M 496.64,249.6L 409.6,249.6 L 409.6,336.64 C 409.6,350.771, 398.157,352, 384,352s-25.6-1.229-25.6-15.36L 358.4,249.6 l-84.48,0 C 259.763,249.6, 258.56,238.131, 258.56,224
|
||||
s 1.229-25.6, 15.386-25.6L 358.4,198.4 l0-87.040 c0-14.131, 11.443-15.36, 25.6-15.36s 25.6,1.229, 25.6,15.36L 409.6,198.4 l 87.040,0 c 14.131,0, 15.36,11.469, 15.36,25.6S 510.771,249.6, 496.64,249.6z M 179.2,352L 25.6,352
|
||||
C 11.469,352,0,340.531,0,326.4s 11.469-25.6, 25.6-25.6l 153.6,0 c 14.131,0, 25.6,11.469, 25.6,25.6S 193.331,352, 179.2,352z" data-tags="add-to-list, plus, list" />
|
||||
<glyph unicode="" d="M 318.259,480c 34.304,0, 51.456-23.398, 51.456-50.125c0-33.382-29.798-64.282-68.557-64.282c-32.512,0-51.456,19.2-50.56,50.918
|
||||
C 250.598,443.264, 273.126,480, 318.259,480z M 212.71-32c-27.085,0-46.925,16.691-27.981,90.189l 31.078,130.33c 5.402,20.864, 6.298,29.235,0,29.235
|
||||
c-8.141,0-43.264-14.413-64.051-28.621L 138.24,211.686c 65.869,55.962, 141.619,88.755, 174.106,88.755c 27.059,0, 31.539-32.563, 18.048-82.662l-35.61-137.011
|
||||
c-6.298-24.218-3.61-32.563, 2.688-32.563c 8.141,0, 34.739,10.061, 60.902,30.925l 15.36-20.864C 309.709-6.912, 239.77-32, 212.71-32z" data-tags="info, about" />
|
||||
<glyph unicode="" d="M 153.626,341.76L 153.6,106.24L 358.4,224 z" data-tags="arrow-right, triangle, right, next" />
|
||||
<glyph unicode="" d="M 373.76,326.374L 138.24,326.4L 256,121.6 z" data-tags="arrow-down, triangle, down, bottom" />
|
||||
<glyph unicode="" d="M 76.8,280.32c-31.104,0-56.32-25.216-56.32-56.32c0-31.104, 25.216-56.32, 56.32-56.32s 56.32,25.216, 56.32,56.32C 133.12,255.104, 107.904,280.32, 76.8,280.32z M 256,280.32
|
||||
c-31.104,0-56.32-25.216-56.32-56.32c0-31.104, 25.216-56.32, 56.32-56.32s 56.294,25.216, 56.294,56.32C 312.294,255.104, 287.104,280.32, 256,280.32z M 435.2,280.32
|
||||
c-31.104,0-56.32-25.216-56.32-56.32c0-31.104, 25.216-56.32, 56.32-56.32s 56.32,25.216, 56.32,56.32C 491.52,255.104, 466.304,280.32, 435.2,280.32z" data-tags="ellipsis, dots, circles" />
|
||||
<glyph unicode="" d="M 432,480 C 476.182,480 512,444.183 512,400 C 512,381.99 506.045,365.371 496,352 L 464,320 L 352,432 L 384,464 C 397.371,474.045 413.989,480 432,480 ZM 32,112L0-32l 144,32l 296,296L 328,408L 32,112z M 357.789,298.211l-224-224l-27.578,27.578l 224,224L 357.789,298.211z" data-tags="pencil, write, edit, blog, note" />
|
||||
<glyph unicode="" d="M0,416l0-416 l 512,0 L 512,416 L0,416 z M 480,32L 32,32 L 32,384 l 448,0 L 480,32 zM 352,304A48,48 2700 1 1 448,304A48,48 2700 1 1 352,304zM 448,64 L 64,64 L 160,320 L 288,160 L 352,208 Z" data-tags="image, picture, photo, graphic" />
|
||||
<glyph unicode="" d="M 160,384 L 512,480 L 512,448 L 512,384 L 512,112 C 512,67.817 461.855,32 400,32 C 338.145,32 288,67.817 288,112 C 288,156.183 338.145,192 400,192 C 417.179,192 433.451,189.234 448,184.297 L 448,349.091 L 224,288 L 224,48 C 224,3.817 173.856-32 112-32 C 50.144-32 0,3.817 0,48 C 0,92.183 50.144,128 112,128 C 129.179,128 145.451,125.234 160,120.297 L 160,288 L 160,384 Z" data-tags="music, song, audio, sound" />
|
||||
<glyph unicode="" d="M0,416l0-384 l 512,0 L 512,416 L0,416 z M 96,64L 32,64 l0,64 l 64,0 L 96,64 z M 96,192L 32,192 l0,64 l 64,0 L 96,192 z M 96,320L 32,320 L 32,384 l 64,0 L 96,320 z M 384,64L 128,64 L 128,384 l 256,0 L 384,64 z
|
||||
M 480,64l-64,0 l0,64 l 64,0 L 480,64 z M 480,192l-64,0 l0,64 l 64,0 L 480,192 z M 480,320l-64,0 L 416,384 l 64,0 L 480,320 zM 192,320L 192,128L 320,224 z" data-tags="film, video, movie, tape, play" />
|
||||
<glyph unicode="" d="M 128,448L 384,448L 384,384L 128,384zM 480,352L 32,352 C 14.4,352,0,337.6,0,320l0-160 c0-17.6, 14.398-32, 32-32l 96,0 l0-128 l 256,0 L 384,128 l 96,0 c 17.6,0, 32,14.4, 32,32L 512,320
|
||||
C 512,337.6, 497.6,352, 480,352z M 352,32L 160,32 L 160,192 l 192,0 L 352,32 z M 487.2,304c0-12.813-10.387-23.2-23.199-23.2
|
||||
c-12.813,0-23.201,10.387-23.201,23.2s 10.388,23.2, 23.201,23.2C 476.814,327.2, 487.2,316.813, 487.2,304z" data-tags="print, printer" />
|
||||
<glyph unicode="" d="M 160,288L 224,288L 224,224L 160,224zM 256,288L 320,288L 320,224L 256,224zM 352,288L 416,288L 416,224L 352,224zM 64,96L 128,96L 128,32L 64,32zM 160,96L 224,96L 224,32L 160,32zM 256,96L 320,96L 320,32L 256,32zM 160,192L 224,192L 224,128L 160,128zM 256,192L 320,192L 320,128L 256,128zM 352,192L 416,192L 416,128L 352,128zM 64,192L 128,192L 128,128L 64,128zM 416,480l0-32 l-64,0 L 352,480 L 128,480 l0-32 L 64,448 L 64,480 L0,480 l0-512 l 480,0 L 480,480 L 416,480 z M 448,0L 32,0 L 32,352 l 416,0 L 448,0 z" data-tags="calendar, schedule, date, time, day" />
|
||||
<glyph unicode="" d="M 352,480c-88.365,0-160-71.634-160-160c0-10.013, 0.929-19.808, 2.688-29.312L0,96l0-96 c0-17.673, 14.327-32, 32-32
|
||||
l 32,0 l0,32 l 64,0 l0,64 l 64,0 l0,64 l 64,0 l 41.521,41.521C 314.526,163.363, 332.869,160, 352,160c 88.365,0, 160,71.634, 160,160S 440.365,480, 352,480z
|
||||
M 399.937,319.937c-26.51,0-48,21.49-48,48s 21.49,48, 48,48s 48-21.49, 48-48S 426.447,319.937, 399.937,319.937z" data-tags="key, password, login, log in, signin, sign in" />
|
||||
<glyph unicode="" d="M 466.895,174.875c-26.863,46.527-10.708,106.152, 36.076,133.244l-50.313,87.146c-14.375-8.427-31.088-13.259-48.923-13.259
|
||||
c-53.768,0-97.354,43.873-97.354,97.995L 205.752,480.001 c 0.133-16.705-4.037-33.641-12.979-49.126
|
||||
c-26.862-46.528-86.578-62.351-133.431-35.379L 9.030,308.35c 14.485-8.236, 27.025-20.294, 35.943-35.739
|
||||
c 26.819-46.454, 10.756-105.96-35.854-133.112l 50.313-87.146c 14.325,8.348, 30.958,13.127, 48.7,13.127
|
||||
c 53.598,0, 97.072-43.596, 97.35-97.479l 100.627,0 c-0.043,16.537, 4.136,33.285, 12.983,48.609
|
||||
c 26.818,46.453, 86.388,62.297, 133.207,35.506l 50.313,87.145C 488.222,147.494, 475.766,159.51, 466.895,174.875z M 256,120.334
|
||||
c-57.254,0-103.668,46.412-103.668,103.667c0,57.254, 46.413,103.667, 103.668,103.667c 57.254,0, 103.666-46.413, 103.666-103.667
|
||||
C 359.665,166.746, 313.254,120.334, 256,120.334z" data-tags="cog, preferences, settings, gear, generate, control, options" />
|
||||
<glyph unicode="" d="M 160.504-32 C 126.381,39.004 144.553,79.689 170.779,118.022 C 199.499,160 206.901,201.555 206.901,201.555 C 206.901,201.555 229.478,172.205 220.447,126.301 C 260.333,170.701 267.859,241.441 261.838,268.533 C 351.995,205.527 390.526,69.105 338.599-32 C 614.785,124.266 407.298,358.086 371.176,384.425 C 383.217,358.087 385.5,313.5 361.176,291.862 C 320,448 218.19,480 218.19,480 C 230.231,399.478 174.542,311.428 120.842,245.635 C 118.955,277.743 116.951,299.899 100.067,330.625 C 96.277,272.297 51.701,224.751 39.63,166.311 C 23.279,87.168 51.878,29.221 160.504-32 Z" data-tags="fire, flame, hot, popular" />
|
||||
<glyph unicode="" d="M 352,448L 192,288L 96,288 L0,160c0,0, 101.708,28.326, 161.033,15.042L0-32l 210.951,164.072C 240.37,64.745, 192-32, 192-32l 128,96
|
||||
l0,96 l 160,160L 512,480L 352,448z" data-tags="rocket, speed, jet, spaceship, fast" />
|
||||
<glyph unicode="" d="M0,480l0-512 l 512,0 L 512,480 L0,480 z M 480,0L 32,0 L 32,448 l 448,0 L 480,0 z M 384,368L 224,208l-96,96l-64-64l 160-160l 224,224L 384,368z" data-tags="checkbox-checked, tick, checked, selected" />
|
||||
<glyph unicode="" d="M0,480l0-512 l 512,0 L 512,480 L0,480 z M 480,0L 32,0 L 32,448 l 448,0 L 480,0 z" data-tags="checkbox-unchecked, unchecked, square" />
|
||||
<glyph unicode="" d="M0,480l0-512 l 512,0 L 512,480 L0,480 z M 480,0L 32,0 L 32,448 l 448,0 L 480,0 zM 128,352L 384,352L 384,96L 128,96z" data-tags="checkbox-partial, partial" />
|
||||
<glyph unicode="" d="M 256,480C 114.615,480,0,365.385,0,224s 114.615-256, 256-256s 256,114.615, 256,256S 397.385,480, 256,480z M 256,32
|
||||
c-106.039,0-192,85.961-192,192c0,106.039, 85.961,192, 192,192c 106.039,0, 192-85.961, 192-192C 448,117.961, 362.039,32, 256,32zM 160,224A96,96 12780 1 1 352,224A96,96 12780 1 1 160,224z" data-tags="radio-checked" />
|
||||
<glyph unicode="" d="M 256,480C 114.615,480,0,365.385,0,224s 114.615-256, 256-256s 256,114.615, 256,256S 397.385,480, 256,480z M 256,32
|
||||
c-106.039,0-192,85.961-192,192c0,106.039, 85.961,192, 192,192c 106.039,0, 192-85.961, 192-192C 448,117.961, 362.039,32, 256,32z" data-tags="radio-unchecked, circle" />
|
||||
<glyph unicode="" d="M 394.767,448c0,0-100.478,0-133.97,0c-60.061,0-116.585-45.503-116.585-98.211c0-53.863, 40.941-97.333, 102.044-97.333
|
||||
c 4.249,0, 8.378,0.085, 12.42,0.376c-3.964-7.593-6.8-16.144-6.8-25.021c0-14.969, 8.052-27.105, 18.234-37.012
|
||||
c-7.693,0-15.121-0.224-23.226-0.224c-74.391,0.001-131.65-47.38-131.65-96.511c0-48.389, 62.771-78.656, 137.167-78.656
|
||||
c 84.812,0, 131.653,48.122, 131.653,96.514c0,38.801-11.448,62.036-46.843,87.067c-12.108,8.571-35.266,29.418-35.266,41.672
|
||||
c0,14.36, 4.098,21.434, 25.714,38.323c 22.156,17.312, 37.837,41.651, 37.837,69.958c0,33.703-15.011,66.549-43.187,77.386l 42.478,0
|
||||
L 394.767,448z M 347.974,120.271c 1.063-4.486, 1.642-9.104, 1.642-13.814c0-39.1-25.195-69.655-97.487-69.655
|
||||
c-51.421,0-88.558,32.552-88.558,71.65c0,38.321, 46.063,70.222, 97.482,69.666c 12-0.127, 23.184-2.058, 33.334-5.345
|
||||
C 322.301,153.359, 342.325,142.393, 347.974,120.271z M 265.643,266.112c-34.519,1.032-67.318,38.613-73.276,83.93
|
||||
c-5.958,45.333, 17.185,80.021, 51.694,78.995C 278.565,428, 311.379,391.63, 317.34,346.308
|
||||
C 323.293,300.978, 300.145,265.079, 265.643,266.112z" data-tags="google" />
|
||||
<glyph unicode="" d="M 0.403,45.168c-0.122,1.266-0.226,2.535-0.292,3.815C 0.176,47.703, 0.281,46.434, 0.403,45.168zM 117.954,197.426c 46.005-1.369, 76.867,46.349, 68.931,106.599c-7.947,60.24-51.698,108.584-97.704,109.961
|
||||
c-46.013,1.365-76.87-44.741-68.926-105C 28.196,248.752, 71.931,198.799, 117.954,197.426zM 512,352L 512,394.655 C 512,441.595, 473.609,480, 426.671,480L 85.343,480 C 39.205,480, 1.337,442.884, 0.061,397.037
|
||||
c 29.181,25.693, 69.662,47.158, 111.437,47.158c 44.652,0, 178.622,0, 178.622,0l-39.974-33.809l-56.634,0
|
||||
c 37.565-14.402, 57.578-58.062, 57.578-102.861c0-37.624-20.905-69.977-50.444-92.984c-28.822-22.451-34.286-31.854-34.286-50.939
|
||||
c0-16.289, 30.873-44, 47.016-55.394c 47.191-33.269, 62.458-64.156, 62.458-115.728c0-8.214-1.021-16.415-3.033-24.48l 153.871,0
|
||||
C 473.609-32, 512,6.375, 512,53.345L 512,319.999 l-96,0 L 416,224 l-32,0 l0,96 l-95.999,0 l0,32 L 384,352 L 384,448 l 32,0 l0-96 L 512,352 zM 92.943,97.032c 10.807,0, 20.711,0.295, 30.968,0.295c-13.573,13.167-24.313,29.3-24.313,49.19
|
||||
c0,11.804, 3.782,23.168, 9.067,33.26c-5.391-0.385-10.895-0.497-16.563-0.497c-37.178,0-68.753,12.038-92.102,31.927l0-33.621
|
||||
l 0.003-100.865C 26.723,89.408, 58.447,97.032, 92.943,97.032zM 1.71,36.371c-0.556,2.729-0.983,5.503-1.271,8.317C 0.726,41.874, 1.154,39.1, 1.71,36.371zM 227.725,3.577c-7.529,29.403-34.227,43.982-71.444,69.784c-13.536,4.366-28.447,6.937-44.447,7.104
|
||||
c-44.809,0.482-86.554-17.471-110.108-44.186C 9.686-2.574, 44.243-32, 85.343-32l 143.222,0 c 0.908,5.564, 1.348,11.316, 1.348,17.216
|
||||
C 229.913-8.517, 229.146-2.388, 227.725,3.577z" data-tags="google plus, social" />
|
||||
<glyph unicode="" d="M 426.672,480L 85.342,480 C 38.406,480,0,441.593,0,394.656l0-341.313 C0,6.374, 38.406-32, 85.342-32l 341.33,0.001
|
||||
c 46.938,0, 85.328,38.373, 85.328,85.344L 512,394.656 C 512,441.593, 473.609,480, 426.672,480z M 435.296,224L 352,224 l0-224 l-96,0 L 256,224 l-46.263,0 l0,73.282 L 256,297.282
|
||||
l0,47.593 C 256,409.546, 283.896,448, 359.935,448l 87.622,0 l0-79.285 l-71.565,0 c-21.241,0.035-23.876-11.076-23.876-31.756L 352,297.282l 96,0
|
||||
L 435.296,224z" data-tags="facebook, social" />
|
||||
<glyph unicode="" d="M 512,382.791c-18.838-8.354-39.082-14.001-60.33-16.54c 21.686,13, 38.343,33.585, 46.186,58.115
|
||||
c-20.298-12.039-42.778-20.78-66.705-25.49c-19.16,20.415-46.461,33.17-76.673,33.17c-58.011,0-105.044-47.029-105.044-105.039
|
||||
c0-8.233, 0.929-16.25, 2.72-23.939c-87.3,4.382-164.701,46.2-216.509,109.753c-9.042-15.514-14.223-33.558-14.223-52.809
|
||||
c0-36.444, 18.544-68.596, 46.73-87.433c-17.219,0.546-33.416,5.271-47.577,13.139c-0.010-0.438-0.010-0.878-0.010-1.321
|
||||
c0-50.894, 36.209-93.348, 84.261-103c-8.813-2.4-18.094-3.686-27.674-3.686c-6.769,0-13.349,0.66-19.764,1.886
|
||||
c 13.368-41.73, 52.16-72.103, 98.126-72.948c-35.95-28.175-81.243-44.967-130.458-44.967c-8.479,0-16.84,0.497-25.058,1.47
|
||||
c 46.486-29.805, 101.701-47.197, 161.021-47.197c 193.211,0, 298.868,160.062, 298.868,298.872c0,4.554-0.103,9.084-0.305,13.59
|
||||
C 480.11,343.227, 497.918,361.727, 512,382.791z" data-tags="twitter, tweet, social" />
|
||||
<glyph unicode="" d="M 416,416L 96,416 c-52.8,0-96-43.2-96-96l0-192 c0-52.8, 43.2-96, 96-96l 320,0 c 52.8,0, 96,43.2, 96,96L 512,320 C 512,372.8, 468.8,416, 416,416z
|
||||
M 192,96L 192,352 l 160-128L 192,96z" data-tags="youtube, social" />
|
||||
<glyph unicode="" d="M 421.006,185.26c-6.824,6.723-21.957,10.283-44.986,10.586c-15.589,0.172-34.351-1.201-54.085-3.964
|
||||
c-8.837,5.099-17.946,10.647-25.094,17.329c-19.231,17.958-35.284,42.886-45.288,70.297c 0.652,2.56, 1.207,4.81, 1.724,7.106
|
||||
c0,0, 10.833,61.53, 7.965,82.333c-0.395,2.853-0.637,3.681-1.404,5.898l-0.941,2.417c-2.948,6.796-8.724,13.997-17.783,13.604
|
||||
l-5.312,0.169l-0.146,0.003c-10.1,0-18.332-5.166-20.493-12.887c-6.569-24.217, 0.209-60.446, 12.491-107.369l-3.144-7.643
|
||||
c-8.794-21.438-19.815-43.030-29.539-62.079l-1.264-2.476c-10.23-20.019-19.512-37.013-27.927-51.411l-8.688-4.594
|
||||
c-0.632-0.334-15.522-8.209-19.014-10.322c-29.628-17.691-49.261-37.77-52.518-53.708c-1.036-5.085-0.265-11.593, 5.007-14.607
|
||||
l 8.403-4.229c 3.645-1.826, 7.489-2.751, 11.427-2.751c 21.102,0, 45.6,26.286, 79.348,85.183
|
||||
c 38.965,12.684, 83.327,23.228, 122.207,29.045c 29.629-16.684, 66.071-28.273, 89.071-28.273c 4.084,0, 7.606,0.389, 10.466,1.148
|
||||
c 4.411,1.168, 8.129,3.683, 10.396,7.096c 4.463,6.716, 5.367,15.966, 4.156,25.438C 425.68,179.411, 423.435,182.887, 421.006,185.26z
|
||||
M 105.823,72.976c 3.848,10.521, 19.080,31.322, 41.602,49.778c 1.416,1.148, 4.904,4.416, 8.097,7.451
|
||||
C 131.971,92.643, 116.199,77.672, 105.823,72.976z M 239.217,380.157c 6.783,0, 10.642-17.097, 10.962-33.127
|
||||
c 0.32-16.030-3.429-27.28-8.079-35.604c-3.851,12.324-5.713,31.75-5.713,44.452C 236.387,355.878, 236.104,380.157, 239.217,380.157z
|
||||
M 199.426,161.253c 4.725,8.458, 9.641,17.378, 14.665,26.839c 12.246,23.158, 19.979,41.278, 25.739,56.173
|
||||
c 11.455-20.842, 25.722-38.56, 42.493-52.756c 2.092-1.771, 4.309-3.551, 6.637-5.325C 254.855,179.436, 225.378,171.229, 199.426,161.253z
|
||||
M 414.452,163.174c-2.077-1.299-8.027-2.050-11.854-2.050c-12.353,0-27.636,5.647-49.063,14.833
|
||||
c 8.234,0.609, 15.781,0.919, 22.55,0.919c 12.391,0, 16.060,0.054, 28.175-3.036S 416.529,164.473, 414.452,163.174zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" data-tags="file-pdf, file, format, pdf" />
|
||||
<glyph unicode="" d="M 319.889,242.054L 341.995,242.054L 316.489,128.965L 283.326,287.97L 230.051,287.97L 191.494,128.965L 162.586,287.97L 106.889,287.97L 163.435,32.029L 217.854,32.029L 256.001,183.383L 290.129,32.029L 340.297,32.029L 405.112,287.97L 319.889,287.97
|
||||
zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" data-tags="file-word, file, format, word, docx" />
|
||||
<glyph unicode="" d="M 371.514,288L 303.867,288L 256.001,217.484L 208.131,288L 140.487,288L 221.568,166.768L 130.081,32L 261.201,32L 261.201,77.788L 230.923,77.788L 256.001,115.285L 311.699,32L 381.92,32L 290.432,166.768 zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" data-tags="file-excel, file, format, excel, xlc" />
|
||||
<glyph unicode="" d="M 96,224l 96,0 l0-32 L 96,192 L 96,224 z M 96,160l 96,0 l0-32 L 96,128 L 96,160 z M 96,96l 96,0 l0-32 L 96,64 L 96,96 z M 451.716,380.285l-71.432,71.431
|
||||
C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0 c 22,0, 40,18, 40,40L 480,312
|
||||
C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440 c0,4.336, 3.664,8, 8,8
|
||||
l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 zM 288,128 L 382.396,128 C 374.983,91.484 342.703,64 304,64 C 259.817,64 224,99.817 224,144 C 224,182.703 251.485,214.983 288,222.396 L 288,128 ZM 336,256 C 380.183,256 416,220.183 416,176 C 416,170.521 415.446,165.17 414.396,160 L 320,160 L 320,254.396 C 325.17,255.446 330.521,256 336,256 Z" data-tags="file-powerpoint" />
|
||||
<glyph unicode="" d="M 224,192L 192,224L 96,128L 192,32L 224,64L 160,128 zM 288,64L 320,32L 416,128L 320,224L 288,192L 352,128 zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" data-tags="file-xml, file, format, code, html, xml" />
|
||||
<glyph unicode="" d="M 192,174.277L 192,231.39 c0,7.564, 3.348,14.718, 9.427,20.143c 6.080,5.424, 14.096,8.413, 22.573,8.413l0,28.555
|
||||
c-35.2,0-64-25.7-64-57.111l0-42.833 c0-7.886-7.164-14.279-16-14.279l-16,0 l0-28.555 l 16,0 c 8.837,0, 16-6.395, 16-14.279l0-42.838
|
||||
c0-31.407, 28.8-57.107, 64-57.107l0,28.556 c-8.477,0-16.494,2.988-22.573,8.413c-6.079,5.426-9.427,12.577-9.427,20.139l0,57.117
|
||||
c0,7.885-7.164,14.277-16,14.277C 184.837,160, 192,166.395, 192,174.277zM 320,145.723l0-57.117 c0-7.562-3.348-14.713-9.427-20.139c-6.079-5.425-14.095-8.413-22.573-8.413l0-28.556
|
||||
c 35.201,0, 64,25.7, 64,57.107l0,42.838 c0,7.886, 7.164,14.279, 16,14.279l 16,0 l0,28.555 l-16,0 c-8.836,0-16,6.395-16,14.279L 352,231.39
|
||||
c0,31.412-28.799,57.111-64,57.111l0-28.555 c 8.479,0, 16.494-2.989, 22.573-8.415c 6.080-5.424, 9.427-12.578, 9.427-20.142l0-57.114
|
||||
c0-7.883, 7.164-14.276, 16-14.276C 327.164,160, 320,153.605, 320,145.723zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" data-tags="file-css, file, format, code, css" />
|
||||
<glyph unicode="" d="M 505.216,60.624l-191.984,384C 302.4,466.304, 280.256,480, 256,480s-46.4-13.696-57.232-35.376
|
||||
l-191.984-384c-9.92-19.84-8.864-43.408, 2.8-62.288C 21.248-20.512, 41.84-32, 64.016-32l 383.952,0 c 22.192,0, 42.784,11.488, 54.432,30.336
|
||||
C 514.064,17.216, 515.12,40.784, 505.216,60.624z M 287.968,48c0-8.848-7.152-16-16-16l-32,0 c-8.848,0-16,7.152-16,16l0,32 c0,8.848, 7.152,16, 16,16l 32,0
|
||||
c 8.848,0, 16-7.152, 16-16L 287.968,48 z M 287.968,176c0-8.848-7.152-16-16-16l-32,0 c-8.848,0-16,7.152-16,16L 223.968,336 c0,8.832, 7.152,16, 16,16l 32,0 c 8.848,0, 16-7.168, 16-16
|
||||
L 287.968,176 z" data-tags="warning, alert" />
|
||||
<glyph unicode="" d="M 480,224c0-123.712-100.288-224-224-224S 32,100.288, 32,224c0,54.528, 19.616,104.368, 52,143.2
|
||||
c 2.464,4.544, 5.888,8.496, 10.16,11.36c 0.72,0.752, 1.36,1.6, 2.096,2.336c 0.016-0.368, 0.176-0.72, 0.208-1.088C 101.088,382.4, 106.336,384, 112,384
|
||||
c 17.664,0, 32-14.336, 32-32c0-11.136-5.68-20.928-14.32-26.656C 130.24,324.928, 130.64,324.416, 131.216,324C 109.216,296.608, 96,261.872, 96,224
|
||||
c0-88.368, 71.632-160, 160-160s 160,71.632, 160,160c0,37.872-13.216,72.608-35.216,100c 0.576,0.416, 0.992,0.928, 1.536,1.344
|
||||
C 373.68,331.072, 368,340.864, 368,352c0,17.664, 14.336,32, 32,32c 5.664,0, 10.912-1.6, 15.536-4.192c 0.032,0.368, 0.192,0.72, 0.224,1.088
|
||||
c 0.72-0.736, 1.36-1.584, 2.096-2.336c 4.272-2.864, 7.68-6.816, 10.16-11.36C 460.368,328.368, 480,278.528, 480,224z M 272,192l-32,0
|
||||
c-8.848,0-16,7.152-16,16L 224,432 c0,8.832, 7.152,16, 16,16l 32,0 c 8.848,0, 16-7.168, 16-16l0-224 C 288,199.152, 280.848,192, 272,192z" data-tags="switch, power" />
|
||||
<glyph unicode="" d="M 399.712,324.512c 5.968-5.968, 15.648-5.968, 21.6,0l 84.528,66.544
|
||||
c 14.064-44.224, 4.128-94.432-30.96-129.52c-33.472-33.488-80.736-44.032-123.424-32.768l-100.256-100.256c 11.264-42.704, 0.704-89.952-32.752-123.424
|
||||
c-35.088-35.088-85.312-45.024-129.536-30.96l 66.576,84.512c 5.968,5.984, 5.968,15.648,0,21.616l-43.2,43.184c-5.968,5.968-15.648,5.968-21.6,0
|
||||
l-84.528-66.544c-14.064,44.224-4.128,94.416, 30.944,129.504c 33.488,33.488, 80.736,44.048, 123.44,32.768l 100.272,100.272
|
||||
c-11.28,42.688-0.72,89.952, 32.736,123.424c 35.088,35.088, 85.312,45.024, 129.552,30.976l-66.576-84.544c-5.952-5.952-5.952-15.632,0-21.584
|
||||
L 399.712,324.512z" data-tags="wrench, settings, options, preferences" />
|
||||
<glyph unicode="" d="M 370.857,102.286q0-11.429 -8-19.429l-38.857-38.857q-8-8 -19.429-8t-19.429,8l-84,84l-84-84q-8-8 -19.429-8t-19.429,8l-38.857,38.857q-8,8 -8,19.429t 8,19.429l 84,84l-84,84q-8,8 -8,19.429t 8,19.429l 38.857,38.857q 8,8 19.429,8t 19.429-8l 84-84l 84,84q 8,8 19.429,8t 19.429-8l 38.857-38.857q 8-8 8-19.429 t-8-19.429l-84-84l 84-84q 8-8 8-19.429z" horiz-adv-x="402.286" data-tags="remove, cancel, close, delete, mutiply" />
|
||||
<glyph unicode="" d="M 477.429,318.286q0-11.429 -8-19.429l-206.857-206.857l-38.857-38.857q-8-8 -19.429-8t-19.429,8l-38.857,38.857l-103.429,103.429q-8,8 -8,19.429t 8,19.429l 38.857,38.857q 8,8 19.429,8t 19.429-8l 84-84.286l 187.429,187.714q 8,8 19.429,8t 19.429-8l 38.857-38.857q 8-8 8-19.429z" data-tags="ok, checkmark, tick, correct" />
|
||||
<glyph unicode="" d="M 402.286,269.714l0-54.857 q0-11.429 -8-19.429t-19.429-8l-118.857,0 l0-118.857 q0-11.429 -8-19.429t-19.429-8l-54.857,0 q-11.429,0 -19.429,8t-8,19.429l0,118.857 l-118.857,0 q-11.429,0 -19.429,8t-8,19.429l0,54.857 q0,11.429 8,19.429t 19.429,8l 118.857,0 l0,118.857 q0,11.429 8,19.429t 19.429,8l 54.857,0 q 11.429,0 19.429-8t 8-19.429l0-118.857 l 118.857,0 q 11.429,0 19.429-8t 8-19.429z" horiz-adv-x="402.286" data-tags="plus, add, sum" />
|
||||
<glyph unicode="" d="M 402.286,269.714l0-54.857 q0-11.429 -8-19.429t-19.429-8l-347.429,0 q-11.429,0 -19.429,8t-8,19.429l0,54.857 q0,11.429 8,19.429t 19.429,8l 347.429,0 q 11.429,0 19.429-8t 8-19.429z" horiz-adv-x="402.286" data-tags="minus, remove, delete, subtract" />
|
||||
<glyph unicode="" d="M 348.916,316.476l-32.476,32.461L 154.035,186.566c-26.907-26.896-26.907-70.524,0-97.422
|
||||
c 26.902-26.896, 70.53-26.896, 97.437,0l 194.886,194.854c 44.857,44.831, 44.857,117.531,0,162.363
|
||||
c-44.833,44.852-117.556,44.852-162.391,0L 79.335,241.788l 0.017-0.016c-0.145-0.152-0.306-0.288-0.438-0.423
|
||||
c-62.551-62.548-62.551-163.928,0-226.453c 62.527-62.528, 163.934-62.528, 226.494,0c 0.137,0.137, 0.258,0.284, 0.41,0.438l 0.016-0.017
|
||||
l 139.666,139.646l-32.493,32.46L 273.35,47.792l-0.008,0 c-0.148-0.134-0.282-0.285-0.423-0.422
|
||||
c-44.537-44.529-116.99-44.529-161.538,0c-44.531,44.521-44.531,116.961,0,161.489c 0.152,0.152, 0.302,0.291, 0.444,0.423l-0.023,0.030
|
||||
l 204.64,204.583c 26.856,26.869, 70.572,26.869, 97.443,0c 26.856-26.867, 26.856-70.574,0-97.42L 218.999,121.625
|
||||
c-8.968-8.961-23.527-8.961-32.486,0c-8.947,8.943-8.947,23.516,0,32.46L 348.916,316.476z" data-tags="attachment, paperclip" />
|
||||
<glyph unicode="" d="M 255.616,418.56L 255.616,320.563L 435.251,320.589L 435.251,127.258L 255.616,127.258L 255.616,29.44L 61.491,224 z" data-tags="arrow-left, left, previous" />
|
||||
<glyph unicode="" d="M 450.56,224.384L 352.563,224.358L 352.589,44.749L 159.258,44.749L 159.258,224.384L 61.44,224.358L 256.026,418.509 z" data-tags="arrow-up- upload, top" />
|
||||
<glyph unicode="" d="M 256.384,418.56L 256.384,320.563L 76.749,320.589L 76.749,127.258L 256.384,127.258L 256.384,29.44L 450.509,224 z" data-tags="arrow-right, right, next" />
|
||||
<glyph unicode="" d="M 450.56,223.616L 352.563,223.642L 352.589,403.251L 159.258,403.251L 159.258,223.616L 61.44,223.642L 256,29.491 z" data-tags="arrow-down, download, bottom" />
|
||||
<glyph unicode="" d="M 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0 c 22,0, 40,18, 40,40
|
||||
L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440 c0,4.336, 3.664,8, 8,8
|
||||
l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" data-tags="file, paper, page, new, empty, blank, document" />
|
||||
<glyph unicode="" d="M 208,416L 256,416L 256,384L 208,384zM 160,384L 208,384L 208,352L 160,352zM 208,352L 256,352L 256,320L 208,320zM 160,320L 208,320L 208,288L 160,288zM 208,288L 256,288L 256,256L 208,256zM 160,256L 208,256L 208,224L 160,224zM 208,224l0-32 l-48,0 l0-112 c0-8.837, 7.163-16, 16-16l 64,0 c 8.837,0, 16,7.163, 16,16L 256,224 L 208,224 z M 240,96l-64,0 l0,32 l 64,0 L 240,96 zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" data-tags="file-zip, zip" />
|
||||
<glyph unicode="" d="M0,448l0-448 l 512,0 L 512,448 L0,448 z M 480,32L 32,32 L 32,416 l 448,0 L 480,32 zM 448,384L 64,384 l0-320 l 384,0 L 448,384 z M 224,224l-32,0 l0-32 l-32,0 l0-32 l-32,0 l0,32 l 32,0 l0,32 l 32,0 l0,32 l-32,0 l0,32 l-32,0 l0,32 l 32,0 l0-32 l 32,0 l0-32 l 32,0 L 224,224 z M 352,160l-96,0
|
||||
l0,32 l 96,0 L 352,160 z" data-tags="console, command line, terminal" />
|
||||
<glyph unicode="" d="M 480-32L 32-32 c-17.664,0-32,14.336-32,32L0,448 c0,17.664, 14.336,32, 32,32l 384,0 l 96-96l0-384
|
||||
C 512-17.664, 497.664-32, 480-32z M 128,48c0-8.848, 7.168-16, 16-16l 224,0 c 8.848,0, 16,7.152, 16,16l0,128 c0,8.848-7.152,16-16,16L 144,192 c-8.832,0-16-7.152-16-16L 128,48 z
|
||||
M 352,400c0,8.848-7.152,16-16,16s-16-7.152-16-16l0-48 c0-8.848, 7.152-16, 16-16s 16,7.152, 16,16L 352,400 z M 448,368l-48,48l-16,0 l0-112 c0-8.848-7.152-16-16-16L 144,288
|
||||
c-8.832,0-16,7.152-16,16L 128,416 L 80,416 C 71.168,416, 64,408.848, 64,400l0-352 c0-8.848, 7.168-16, 16-16l 16,0 L 96,208 c0,8.848, 7.168,16, 16,16l 288,0 c 8.848,0, 16-7.152, 16-16l0-176 l 16,0
|
||||
c 8.848,0, 16,7.152, 16,16L 448,368 z" data-tags="floppy, disk, save, store" />
|
||||
<glyph unicode="" d="M 379.392,110.131c-63.104,22.989-83.277,42.394-83.277,83.942c0,24.934, 19.277,16.794, 27.725,62.464c 3.507,18.944, 20.531,0.307, 23.808,43.546
|
||||
c0,17.229-9.293,21.53-9.293,21.53s 4.736,25.523, 6.579,45.133C 347.187,391.219, 330.803,454.4, 243.2,454.4C 155.622,454.4, 139.187,391.219, 141.491,366.746
|
||||
C 143.334,347.136, 148.070,321.613, 148.070,321.613S 138.752,317.338, 138.752,300.083c 3.251-43.238, 20.275-24.602, 23.782-43.546
|
||||
c 8.474-45.67, 27.75-37.53, 27.75-62.464c0-41.549-20.173-60.954-83.277-83.942c-63.334-23.040-104.448-46.566-104.448-62.618c0-16.026,0-53.888,0-53.888
|
||||
l 240.64,0 l 240.64,0 c0,0,0,37.862,0,53.888C 483.84,63.539, 442.701,87.066, 379.392,110.131z" data-tags="user, group, profile, avatar, persona" />
|
||||
<glyph unicode="" d="M 464,416L 48,416 C 21.488,416,0,394.512,0,368l0-288 c0-26.496, 21.488-48, 48-48l 416,0 c 26.512,0, 48,21.504, 48,48L 512,368 C 512,394.512, 490.512,416, 464,416z M 43.856,64.16
|
||||
L 32.16,75.872l 131.984,131.968l 11.696-11.712L 43.856,64.16z M 468.144,64.16l-131.984,131.968l 11.696,11.712l 131.984-131.968L 468.144,64.16z M 272,170.8
|
||||
L 272,160 l-32,0 l0,10.8 L 32.048,363.6l 20.352,20.352L 256,195.184L 459.6,383.952l 20.352-20.352L 272,170.8z" data-tags="envelope, mail, email, contact" />
|
||||
<glyph unicode="" d="M 316.851,110.131C 253.082,133.12, 232.704,152.525, 232.704,194.074c0,24.934, 19.482,16.794, 28.032,62.464c 3.558,18.944, 20.762,0.307, 24.013,43.546
|
||||
c0,17.229-9.37,21.53-9.37,21.53s 4.787,25.523, 6.63,45.133C 284.314,391.219, 267.725,454.4, 179.2,454.4S 74.086,391.219, 76.39,366.746
|
||||
c 1.869-19.635, 6.656-45.133, 6.656-45.133S 73.651,317.338, 73.651,300.083c 3.302-43.238, 20.506-24.602, 24.013-43.546
|
||||
c 8.576-45.67, 28.058-37.53, 28.058-62.464c0-41.549-20.403-60.954-84.173-83.942c-7.68-2.739-25.984-7.040-41.549-13.773L0-6.4 l 409.6,0
|
||||
c0,0,0,37.862,0,53.888S 380.851,87.066, 316.851,110.131z M 435.2,249.6L 435.2,326.4 l-51.2,0 l0-76.8 l-76.8,0 l0-51.2 l 76.8,0 l0-76.8 l 51.2,0 l0,76.8 l 76.8,0 L 512,249.6 L 435.2,249.6 z" data-tags="user-add" />
|
||||
<glyph unicode="" d="M 256,384C 144.341,384, 47.559,318.979,0,224c 47.559-94.979, 144.341-160, 256-160c 111.657,0, 208.439,65.021, 256,160
|
||||
C 464.442,318.979, 367.657,384, 256,384z M 382.225,299.148c 30.081-19.187, 55.571-44.887, 74.717-75.148
|
||||
c-19.146-30.261-44.637-55.961-74.718-75.149C 344.427,124.743, 300.779,112, 256,112c-44.78,0-88.428,12.743-126.225,36.852
|
||||
C 99.695,168.038, 74.205,193.738, 55.058,224c 19.146,30.262, 44.637,55.962, 74.717,75.148c 1.959,1.25, 3.938,2.461, 5.929,3.65
|
||||
C 130.725,289.134, 128,274.387, 128,259c0-70.692, 57.308-128, 128-128s 128,57.308, 128,128c0,15.387-2.725,30.134-7.704,43.799
|
||||
C 378.286,301.61, 380.265,300.398, 382.225,299.148z M 256,275c0-26.51-21.49-48-48-48s-48,21.49-48,48s 21.49,48, 48,48
|
||||
S 256,301.51, 256,275z" data-tags="eye, views, vision, visit" />
|
||||
<glyph unicode="" d="M 194.586,136.499c-6.861-6.938-6.861-18.15,0-25.062c 6.835-6.938, 17.946-6.938, 24.806,0l 98.048,100.019
|
||||
c 6.861,6.938, 6.861,18.15,0,25.062l-98.048,100.045c-6.861,6.938-17.946,6.938-24.806,0S 187.725,318.438, 194.56,311.526L 274.97,224L 194.586,136.499z" data-tags="arrow-right, right, next" />
|
||||
<glyph unicode="" d="M 343.501,285.414c 6.938,6.861, 18.15,6.861, 25.062,0c 6.938-6.861, 6.938-17.946,0-24.806l-100.019-98.048
|
||||
c-6.938-6.861-18.15-6.861-25.062,0l-100.045,98.048c-6.912,6.861-6.912,17.946,0,24.806c 6.938,6.861, 18.125,6.861, 25.062,0L 256,205.030
|
||||
L 343.501,285.414z" data-tags="arrow-down, down, bottom" />
|
||||
<glyph unicode="" d="M 287.935-32L 192-32 L 192,224 l-64,0 l0,88.225 l 64,0.029l-0.104,51.976C 191.896,436.206, 211.413,480, 296.195,480l 70.588,0 l0-88.242 l-44.115,0
|
||||
c-33.016,0-34.603-12.328-34.603-35.342l-0.131-44.162l 79.345,0 l-9.352-88.225L 288,224L 287.935-32z" data-tags="facebook, social" />
|
||||
<glyph unicode="" d="M 96,224c0,6.090, 0.352,12.098, 1.015,18.011l-92.49,30.052C 1.567,256.493,0,240.431,0,224
|
||||
c0-73.615, 31.083-139.961, 80.827-186.662l 57.142,78.648C 111.907,144.449, 96,182.365, 96,224zM 416,224c0-41.634-15.906-79.551-41.969-108.014l 57.142-78.648C 480.917,84.039, 512,150.385, 512,224
|
||||
c0,16.431-1.566,32.493-4.524,48.063l-92.49-30.052C 415.648,236.097, 416,230.090, 416,224zM 288,380.796c 45.967-9.331, 84.772-38.371, 107.225-77.913l 92.489,30.051C 451.116,410.644, 376.594,466.964, 288,478.012L 288,380.796 zM 116.775,302.884c 22.453,39.542, 61.258,68.582, 107.225,77.913L 224,478.012 C 135.406,466.964, 60.885,410.644, 24.287,332.935
|
||||
L 116.775,302.884zM 322.278,78.336C 302.083,69.132, 279.642,64, 256,64s-46.083,5.132-66.277,14.335l-57.146-78.655
|
||||
C 169.18-20.503, 211.245-32, 256-32s 86.82,11.497, 123.424,31.68L 322.278,78.336z" data-tags="spinner, loading, busy, wait, wheel" />
|
||||
<glyph unicode="" d="M 192,480L0,224L 192,224L 64-32L 512,288L 256,288L 448,480 z" data-tags="lightning, power" />
|
||||
<glyph unicode="" d="M 480,384l-9,0 l-430,0 l-9,0 q-13,0 -22.5,9.25t-9.5,22.5t 9.25,22.75t 22.75,9.5l 160,0 q0,13 9.25,22.5t 22.75,9.5l 64,0 q 13.5,0 22.75-9.5t 9.25-22.5l 160,0 q 13,0 22.5-9.5t 9.5-22.75t-9.5-22.5t-22.5-9.25zM 480,32q0-26.5 -18.75-45.25t-45.25-18.75l-320,0 q-26.5,0 -45.25,18.75t-18.75,45.25l0,320 l 448,0 l0-320 zM 160,256
|
||||
q0,13 -9.5,22.5t-22.75,9.5t-22.5-9.5t-9.25-22.5l0-192 q0-13.5 9.25-22.75t 22.5-9.25t 22.75,9.25t 9.5,22.75l0,192 zM 288,256q0,13 -9.5,22.5t-22.75,9.5t-22.5-9.5t-9.25-22.5l0-192 q0-13.5 9.25-22.75t 22.5-9.25t 22.75,9.25t 9.5,22.75l0,192 zM 416,256q0,13 -9.5,22.5t-22.75,9.5t-22.5-9.5t-9.25-22.5l0-192
|
||||
q0-13.5 9.25-22.75t 22.5-9.25t 22.75,9.25t 9.5,22.75l0,192 z" data-tags="trash" />
|
||||
<glyph unicode="" d="M 448-32l-384,0 q-26.5,0 -45.25,18.75t-18.75,45.25l0,48 q0,13 9.25,22.5t 22.5,9.5t 22.75-9.5t 9.5-22.5l0-16 q0-13.5 9.25-22.75t 22.75-9.25l 320,0 q 13,0 22.5,9.25t 9.5,22.75l0,16 q0,13 9.25,22.5t 22.5,9.5t 22.75-9.5t 9.5-22.5l0-48 q0-26.5 -18.75-45.25t-45.25-18.75zM 272.5,103q-7-7 -16.5-7t-16.5,7l-170.5,172.5
|
||||
q-6,6.5 -4.25,9.5t 9.25,3l 118,0 l0,160 q0,13.5 9.25,22.75t 22.75,9.25l 64,0 q 13.5,0 22.75-9.25t 9.25-22.75l0-160 l 117.5,0 q 7.5,0 9.5-3t-4-9.5z" data-tags="download" />
|
||||
<glyph unicode="" d="M 448-32l-384,0 q-26.5,0 -45.25,18.75t-18.75,45.25l0,48 q0,13 9.5,22.5t 22.5,9.5t 22.5-9.5t 9.5-22.5l0-16 q0-13.5 9.25-22.75t 22.75-9.25l 320,0 q 13.5,0 22.75,9.25t 9.25,22.75l0,16 q0,13 9.5,22.5t 22.5,9.5t 22.5-9.5t 9.5-22.5l0-48 q0-26.5 -18.75-45.25t-45.25-18.75zM 437.5,288l-117.5,0 l0-160 q0-13.5 -9.25-22.75t-22.75-9.25
|
||||
l-64,0 q-13.5,0 -22.75,9.25t-9.25,22.75l0,160 l-118,0 q-7.5,0 -9.25,3t 4.25,9.5l 170.5,172.5q 7,7 16.5,7t 16.5-7l 170.5-172.5q 6-6.5 4-9.5t-9.5-3z" data-tags="upload" />
|
||||
<glyph unicode="" d="M 480,192l-160,0 q0-13 -9.5-22.5t-22.5-9.5l-64,0 q-13.5,0 -22.75,9.5t-9.25,22.5l-160,0 q-13.5,0 -22.75,9.5t-9.25,22.75t 9.25,22.5t 22.75,9.25l 160,0 q0,13.5 9.25,22.75t 22.75,9.25l 64,0 q 13.5,0 22.75-9.25t 9.25-22.75l 160,0 q 13.5,0 22.75-9.25t 9.25-22.5t-9.25-22.75t-22.75-9.5zM 288,256l-64,0 l0-64 l 64,0 l0,64
|
||||
zM 480,384l-32,0 q0-13 -9.5-22.5t-22.5-9.5l-64,0 q-13.5,0 -22.75,9.5t-9.25,22.5l-288,0 q-13.5,0 -22.75,9.5t-9.25,22.75t 9.25,22.5t 22.75,9.25l 288,0 q0,13.5 9.25,22.75t 22.75,9.25l 64,0 q 13.5,0 22.75-9.25t 9.25-22.75l 32,0 q 13.5,0 22.75-9.25t 9.25-22.5t-9.25-22.75t-22.75-9.5zM 416,448l-64,0 l0-64 l 64,0 l0,64 z
|
||||
M 32,64l 32,0 q0,13.5 9.25,22.75t 22.75,9.25l 64,0 q 13,0 22.5-9.25t 9.5-22.75l 288,0 q 13.5,0 22.75-9.25t 9.25-22.5t-9.5-22.75t-22.5-9.5l-288,0 q0-13.5 -9.5-22.75t-22.5-9.25l-64,0 q-13.5,0 -22.75,9.5t-9.25,22.5l-32,0 q-13.5,0 -22.75,9.5t-9.25,22.75t 9.25,22.5t 22.75,9.25zM 96,0l 64,0 l0,64 l-64,0 l0-64 z" data-tags="settings5" />
|
||||
<glyph unicode="" d="M 512,192l0,32 l-96.645,0 c-2.931,36.343-15.893,69.513-35.835,96.125l 80.972,0 l 35.030,140.12l-31.045,7.761l-28.97-115.88l-87.34,0
|
||||
c-0.446,0.347-0.898,0.687-1.349,1.028c 3.355,9.751, 5.181,20.211, 5.181,31.097C 352,437.131, 309.020,480, 256,480s-96-42.869-96-95.75
|
||||
c0-10.886, 1.825-21.346, 5.181-31.097c-0.45-0.342-0.902-0.681-1.349-1.028l-87.34,0 l-28.97,115.88l-31.045-7.761l 35.030-140.12l 80.972,0
|
||||
C 112.537,293.513, 99.576,260.343, 96.645,224L0,224 l0-32 l 96.685,0 c 1.901-22.832, 7.754-44.406, 16.819-63.875L 51.508,128.125 l-35.030-140.119
|
||||
l 31.045-7.762l 28.97,115.881l 56.177,0 C 162.016,57.109, 206.368,32.25, 256,32.25s 93.983,24.859, 123.331,63.875l 56.177,0 l 28.97-115.881
|
||||
l 31.045,7.762l-35.030,140.119l-61.996,0 c 9.065,19.469, 14.918,41.043, 16.818,63.875L 512,192 z" data-tags="bug, virus, error" />
|
||||
<glyph unicode="" d="M 267.313,468.686C 261.091,474.908, 248.8,480, 240,480L 48,480 c-8.8,0-16-7.2-16-16l0-480 c0-8.8, 7.2-16, 16-16l 384,0 c 8.8,0, 16,7.2, 16,16L 448,272
|
||||
c0,8.8-5.091,21.091-11.313,27.313L 267.313,468.686z M 416,0L 64,0 L 64,448 l 175.579,0 c 1.458-0.24, 4.204-1.377, 5.405-2.239l 168.778-168.777
|
||||
c 0.861-1.201, 1.998-3.947, 2.238-5.405L 416,0 zM 432,480l-96,0 c-8.8,0-10.909-5.091-4.687-11.313l 105.373-105.373C 442.909,357.091, 448,359.2, 448,368L 448,464 C 448,472.8, 440.8,480, 432,480
|
||||
z" data-tags="libreoffice, file" />
|
||||
<glyph unicode="" d="M 345.11,244.159c-30.334,14.326-68.986,17.21-97.417-3.024c 34.57,3.302, 72.479-2.419, 97.553-28.562
|
||||
c 24,27.54, 62.057,32.703, 96.479,29.866C 412.981,261.511, 375.115,258.951, 345.11,244.159zM 332.824,177.125c-34.189,0.789-67.217-11.586-95.55-30.052c-53.588,22.794-121.368,18.562-167.001-19.491
|
||||
c 13.165,0.467, 26.003,3.723, 39.028,5.396c 47.591,4.744, 98.294-7.071, 134.256-39.912c 14.886,21.771, 35.822,39.121, 59.826,49.961
|
||||
c 31.537,15.26, 67.080,16.842, 101.41,17.26C 383.949,174.611, 357.485,177.264, 332.824,177.125zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" data-tags="file-openoffice, file, format, openoffice, open office" />
|
||||
<glyph unicode="" d="M 229.665,150.084L 144.338,2.25L 426.665,2.25L 512,150.084 zM 487.806,192L 341.339,445.75L 170.665,445.75L 317.143,192 zM 146.418,403.743L0,150.084L 85.338,2.25L 231.754,255.912 z" data-tags="google-drive, drive" />
|
||||
<glyph unicode="" d="M 480-32l-384,0 q-13,0 -22.5,9.25t-9.5,22.75l0,180 l 139.5-139q 9-9.5 23-8.5l 61.5,0 q 13,0 22.5,9.25t 9.5,22.75l0,63.5 q0,11.5 -9.5,20.5l-246.5,246.5l0,52.5 q0,13.5 9.5,22.75t 22.5,9.25l 224,0 l0-176 q0-6.5 4.5-11.25t 11.5-4.75l 175.5,0 l0-0.5 l0-287 q0-13.5 -9.25-22.75t-22.25-9.25zM 352,480q 13,0 22-9l 128-128.5
|
||||
q 9.5-9.5 9.5-23l-159.5,0 l0,160.5 zM 39.5,258l-34,33.5q-5.5,6 -5.5,14t 5.5,13.5l 27.5,27.5q 5.5,5.5 13.75,5.5t 13.75-5.5l 33.5-33.5zM 288,112.5l0-32 q0-7 -4.75-11.5t-11.25-4.5l-32,0 q-7,0 -13,5.5l-162,162l 55,55l 162-162q 6-6 6-12.5z" data-tags="edit2" />
|
||||
<glyph unicode="" d="M 480,0l-32,0 l0,128 l 32,0 q 13.5,0 22.75-9.25t 9.25-22.75l0-64 q0-13.5 -9.25-22.75t-22.75-9.25zM 480,160l-32,0 l0,128 l 32,0 q 13.5,0 22.75-9.25t 9.25-22.75l0-64 q0-13.5 -9.25-22.75t-22.75-9.25zM 480,320l-32,0 l0,128 l 32,0 q 13.5,0 22.75-9.25t 9.25-22.75l0-64 q0-13.5 -9.25-22.75t-22.75-9.25z
|
||||
M 416,0q0-13 -9.25-22.5t-22.75-9.5l-352,0 q-13,0 -22.5,9.5t-9.5,22.5l0,448 q0,13.5 9.5,22.75t 22.5,9.25l 352,0 q 13.5,0 22.75-9.25t 9.25-22.75l0-448 zM 240,173l0,9 q 48,19.5 48,106q0,31.5 -22.25,47.75t-57.5,16.25t-57.75-16.25t-22.5-47.75q0-84 48-105.5l0-9.5 q-34.5-6 -57-22.5t-23-37.5q0-6 10.75-9.75
|
||||
t 31.5-5.25t 34.25-1.75t 35.5-0.25t 35.5,0.25t 34.25,1.75t 31.5,5.25t 10.75,9.75q-0.5,21 -23,37.5t-57,22.5z" data-tags="phonebook" />
|
||||
<glyph unicode="" d="M 448,416l0-416 L 112,0 c-26.511,0-48,21.49-48,48c0,26.509, 21.489,48, 48,48l 304,0 L 416,480 L 96,480 C 60.801,480, 32,451.2, 32,416l0-384
|
||||
c0-35.2, 28.801-64, 64-64l 384,0 L 480,416 L 448,416 zM 128,64L 416,64L 416,32L 128,32z" data-tags="book, reading" />
|
||||
<glyph unicode="" d="M 256,480 C 116.626,480 3.271,368.619 0.076,230.013 C 3.036,350.945 94.992,448 208,448 C 322.875,448 416,347.712 416,224 C 416,197.49 437.49,176 464,176 C 490.51,176 512,197.49 512,224 C 512,365.385 397.385,480 256,480 ZM 256-32 C 395.374-32 508.729,79.381 511.924,217.987 C 508.964,97.055 417.008,0 304,0 C 189.125,0 96,100.288 96,224 C 96,250.51 74.51,272 48,272 C 21.49,272 0,250.51 0,224 C 0,82.615 114.615-32 256-32 Z" data-tags="spinner, loading, busy, wait, wheel" />
|
||||
<glyph unicode="" d="M 242.286-4.571q0,4.571 -4.571,4.571q-16.857,0 -29,12.143t-12.143,29q0,4.571 -4.571,4.571t-4.571-4.571q0-20.857 14.714-35.571t 35.571-14.714q 4.571,0 4.571,4.571zM 52.286,77.714l 370.857,0 q-46.857,51.714 -70.429,117.571t-23.571,138.429q0,73.143 -91.429,73.143t-91.429-73.143q0-72.571 -23.571-138.429t-70.429-117.571zM 475.429,77.714q0-14.857 -10.857-25.714t-25.714-10.857 l-128,0 q0-30.286 -21.429-51.714t-51.714-21.429t-51.714,21.429t-21.429,51.714l-128,0 q-14.857,0 -25.714,10.857t-10.857,25.714q 54.286,46 82,113.571t 27.714,142.429q0,47.143 27.429,74.857t 75.429,33.429q-2.286,5.143 -2.286,10.571q0,11.429 8,19.429t 19.429,8t 19.429-8t 8-19.429q0-5.429 -2.286-10.571q 48-5.714 75.429-33.429t 27.429-74.857q0-74.857 27.714-142.429t 82-113.571z" horiz-adv-x="475.429" data-tags="bell, alarm, notification" />
|
||||
<glyph unicode="" d="M 488.791,382.769c-16.992,4.854-34.705-4.985-39.56-21.978L 446.72,352L 148.249,352 l-4.496,35.969
|
||||
C 141.751,403.983, 128.138,416, 112,416L 32,416 C 14.327,416,0,401.673,0,384s 14.327-32, 32-32l 51.751,0 l 28.496-227.969
|
||||
C 114.249,108.018, 127.862,96, 144,96l 272,0 c 14.287,0, 26.844,9.472, 30.769,23.209l 64,224
|
||||
C 515.624,360.202, 505.784,377.914, 488.791,382.769z M 256,224l0,32 l 63.998,0 l0-32 L 256,224 z M 319.998,192l0-32 L 256,160 l0,32 L 319.998,192 z M 256,288l0,32
|
||||
l 63.998,0 l0-32 L 256,288 z M 152.249,320L 224,320 l0-32 l-67.751,0 L 152.249,320z M 160.249,256L 224,256 l0-32 l-59.751,0 L 160.249,256z M 168.249,192L 224,192 l0-32 l-51.751,0
|
||||
L 168.249,192z M 391.862,160l-39.864,0 l0,32 l 49.007,0 L 391.862,160z M 410.148,224l-58.15,0 l0,32 l 67.293,0 L 410.148,224z M 428.434,288l-76.436,0
|
||||
l0,32 l 85.579,0 L 428.434,288zM 128,16A48,48 2700 1 1 224,16A48,48 2700 1 1 128,16zM 320,16A48,48 2700 1 1 416,16A48,48 2700 1 1 320,16z" data-tags="cart, ecommerce, shopping, products, purchase, buy, store" />
|
||||
<glyph unicode="" d="M 512,175.953l0,96.094 l-73.387,12.231c-2.979,9.066-6.611,17.834-10.847,26.25l 43.227,60.517l-67.948,67.949l-60.413-43.152
|
||||
c-8.455,4.277-17.269,7.944-26.384,10.951L 304.047,480l-96.094,0 l-12.201-73.208c-9.115-3.007-17.929-6.674-26.383-10.951
|
||||
l-60.414,43.152l-67.949-67.949l 43.227-60.518c-4.235-8.415-7.867-17.183-10.846-26.249L0,272.047l0-96.094 l 73.559-12.26
|
||||
c 2.98-8.984, 6.605-17.674, 10.821-26.015l-43.374-60.724l 67.949-67.948l 60.827,43.447c 8.301-4.175, 16.945-7.764, 25.882-10.717
|
||||
L 207.953-32l 96.094,0 l 12.289,73.737c 8.937,2.953, 17.581,6.542, 25.883,10.716l 60.826-43.446l 67.948,67.948l-43.372,60.723
|
||||
c 4.216,8.341, 7.839,17.031, 10.82,26.016L 512,175.953z M 256,160c-35.346,0-64,28.653-64,64c0,35.346, 28.654,64, 64,64
|
||||
c 35.347,0, 64-28.654, 64-64C 320,188.653, 291.347,160, 256,160z" data-tags="cog, preferences, settings, gear, generate, control, options" />
|
||||
<glyph unicode="" d="M 448,0l-384,0 q-26.5,0 -45.25,18.75t-18.75,45.25l0,256 q0,13 9.25,22.5t 22.75,9.5l 240,0 l 23,42.5q 3.5,9 14,15.25t 22,6.25l 120,0 q 12,0 22.5-6.25t 14-15.25l 24.5-42.5l0-288 q0-26.5 -18.75-45.25t-45.25-18.75zM 448,320q0,13 -9.5,22.5t-22.5,9.5l-64,0 q-13.5,0 -22.75-9.5t-9.25-22.75t-14-22.5t-34-9.25l-192,0
|
||||
q-6.5,0 -11.25-4.75t-4.75-11.25l0-192 q0-6.5 4.75-11.25t 11.25-4.75l 352,0 q 6.5,0 11.25,4.75t 4.75,11.25l0,240 zM 23,426q 3.5,9.5 14,15.75t 22,6.25l 120,0 q 12,0 22.5-6.25t 14.5-15.75l 24-42l-240,0 z" data-tags="legacyfilemanager" />
|
||||
<glyph unicode="" d="M 512.5,248.5l-101-112l 14.5-148.5q-1.5-10 -9.5-15.75t-18-3.75l-139.5,59.5l-139.5-59.5q-10-2 -18,4t-9.5,15.5l 14.5,148.5l-101,112q-4.5,8.5 -1.25,18t 11.75,14l 149,32l 77,129q 7,7 17,7t 17-7l 77-129l 149-32q 8.5-4.5 11.75-14t-1.25-18z" data-tags="favorite" />
|
||||
<glyph unicode="" d="M 512.5,248.5l-101-112l 14.5-148.5q-1.5-10 -9.5-15.75t-18-3.75l-139.5,59.5l-139.5-59.5q-10-2 -18,3.75t-9.5,15.75l 14.5,148.5l-101,112q-4.5,8.5 -1.25,18t 11.75,14l 149,32l 77,129q 7,7 17,7t 17-7l 77-129l 149-32q 8.5-4.5 11.75-14t-1.25-18zM 425.5,251l-102,22.5l-53,90q-5,5 -11.75,5
|
||||
t-11.75-5l-53-90l-102.5-22.5q-6-3.5 -8-10t 1-12.5l 70.5-80l-8-100q 1-7.5 5.25-12.5t 10.25-4l 96,42l 96-42q 6.5-1 10.75,4t 5.25,12.5l-8,100.5l 70.5,79.5q 3,6 0.75,12.5t-8.25,10z" data-tags="favorite2" />
|
||||
<glyph unicode="" d="M 402.5,118l-146.5-150l-147,150q-59.5,61 -84.25,115.5t-24.75,118.5q0,53 37.5,90.5t 90.5,37.5t 90.5-37.5t 37.5-90.5q0,53 37.5,90.5t 90.5,37.5t 90.5-37.5t 37.5-90.5q0-63.5 -24.75-118.25t-84.75-115.75z" data-tags="loved" />
|
||||
<glyph unicode="" d="M 402.5,118l-146.5-150l-147,150q-59.5,61 -84.25,115.5t-24.75,118.5q0,53 37.5,90.5t 90.5,37.5t 90.5-37.5t 37.5-90.5q0,53 37.5,90.5t 90.5,37.5t 90.5-37.5t 37.5-90.5q0-63.5 -24.75-118.25t-84.75-115.75zM 448,352q0,26.5 -18.75,45.25t-45.25,18.75t-45.25-18.75t-18.75-45.25l0-0.5 q0-8.5 -20-20t-44-11.5
|
||||
q-25,0 -44.5,11t-19.5,21l0,0 q0,26.5 -18.75,45.25t-45.25,18.75t-45.25-18.75t-18.75-45.25l0-0.5 q0-53 18-95.25t 63.5-95.25l 110.5-113l 110,113q 46,53.5 64,95.5t 18,95.5l0,0 z" data-tags="love" />
|
||||
<glyph unicode="" d="M 480-32l-191.5,0 q-13.5,0 -22.75,9.25t-9.25,22.75l 67.5,67.5l-74.5,72.5q-9,9.5 -9,22.75t 9,22.75l 46,45.5q 9,9 22.5,9t 23-9l 73.5-72.5l 65.5,65q 13.5,0 22.75-9.25t 9.25-22.75l0-191.5 q0-13.5 -9.25-22.75t-22.75-9.25zM 217,217q-9.5-9.5 -22.75-9.5t-22.75,9.5l-74,72.5l-65.5-65.5
|
||||
q-13,0 -22.5,9.5t-9.5,22.5l0,192 q0,13.5 9.5,22.75t 22.5,9.25l 192,0 q 13.5,0 22.75-9.25t 9.25-22.75l-67.5-67.5l 74.5-73q 9.5-9 9.5-22.5t-9.5-22.5z" data-tags="scaleup" />
|
||||
<glyph unicode="" d="M 502.5,69.5q 9.5-9.5 9.5-23t-9.5-23l-45.5-46q-9.5-9.5 -22.75-9.5t-22.75,9.5l-57,57l-66.5-66.5q-13.5,0 -22.75,9.5t-9.25,22.5l0,192.5 q0,13 9.25,22.5t 22.75,9.5l 192,0 q 13,0 22.5-9.5t 9.5-22.5l-66.5-66.5zM 224,224.5l-191.5,0 q-13.5,0 -22.75,9.25t-9.25,22.75l 66,66l-57,56.5q-9.5,9.5 -9.5,23t 9.5,23
|
||||
l 45.5,46q 9.5,9.5 23,9.5t 23-9.5l 57-57l 66,66q 13.5,0 22.75-9.25t 9.25-22.75l0-191.5 q0-13.5 -9.5-22.75t-22.5-9.25z" data-tags="scaledown" />
|
||||
<glyph unicode="" d="M 448,96l-256,0 q-26.5,0 -45.25,18.75t-18.75,45.25l0,256 q0,26.5 18.75,45.25t 45.25,18.75l 256,0 q 26.5,0 45.25-18.75t 18.75-45.25l0-256 q0-26.5 -18.75-45.25t-45.25-18.75zM 448,384q0,13.5 -9.25,22.75t-22.75,9.25l-192,0 q-13.5,0 -22.75-9.25t-9.25-22.5t 9.25-22.75t 22.75-9.5l 116,0 l-139.5-139.5
|
||||
q-9-9 -9-21.75t 9-21.75t 21.75-9t 21.75,9l 140,140l0-117 q0-13.5 9.5-22.75t 22.75-9.25t 22.5,9.25t 9.25,22.75l0,192 zM 416-0.25q0-13.25 -9.25-22.5t-22.75-9.25l-320,0 q-26.5,0 -45.25,18.75t-18.75,45.25l0,320 q0,13.5 9.25,22.75t 22.5,9.25t 22.75-9.25t 9.5-22.75l0-288 q0-13.5 9.25-22.75
|
||||
t 22.75-9.25l 288,0 q 13,0 22.5-9.5t 9.5-22.75z" data-tags="opennewwindow" />
|
||||
<glyph unicode="" d="M 438.857,406.857l0-128 q0-7.429 -5.429-12.857t-12.857-5.429l-128,0 q-12,0 -16.857,11.429q-4.857,11.143 4,19.714l 39.429,39.429q-42.286,39.143 -99.714,39.143q-29.714,0 -56.714-11.571t-46.714-31.286t-31.286-46.714t-11.571-56.714t 11.571-56.714t 31.286-46.714t 46.714-31.286t 56.714-11.571q 48.286,0 86.857,28.429t 52.857,74.714q 2,6.571 8.571,6.571l 56.857,0 q 4.571,0 7.143-3.429q 2.857-3.714 2-7.714q-11.143-50 -42.143-89.143t-76-60.857t-96.143-21.714q-44.571,0 -85.143,17.429t-70,46.857t-46.857,70t-17.429,85.143t 17.429,85.143t 46.857,70t 70,46.857t 85.143,17.429q 42,0 81.286-15.857t 69.857-44.714l 37.143,36.857q 8.286,8.857 20,4q 11.143-4.857 11.143-16.857z" horiz-adv-x="438.857" data-tags="repeat, loop, reload, refresh, synchronize" />
|
||||
<glyph unicode="" d="M 438.857,96l0-36.571 q0-7.429 -5.429-12.857t-12.857-5.429l-402.286,0 q-7.429,0 -12.857,5.429t-5.429,12.857l0,36.571 q0,7.429 5.429,12.857t 12.857,5.429l 402.286,0 q 7.429,0 12.857-5.429t 5.429-12.857zM 438.857,242.286l0-36.571 q0-7.429 -5.429-12.857t-12.857-5.429l-402.286,0 q-7.429,0 -12.857,5.429t-5.429,12.857l0,36.571 q0,7.429 5.429,12.857t 12.857,5.429l 402.286,0 q 7.429,0 12.857-5.429t 5.429-12.857zM 438.857,388.571l0-36.571 q0-7.429 -5.429-12.857 t-12.857-5.429l-402.286,0 q-7.429,0 -12.857,5.429t-5.429,12.857l0,36.571 q0,7.429 5.429,12.857t 12.857,5.429l 402.286,0 q 7.429,0 12.857-5.429t 5.429-12.857z" horiz-adv-x="438.857" data-tags="reorder, list, menu" />
|
||||
<glyph unicode="" d="M 512,96q0-53 -37.5-90.5t-90.5-37.5q-51.5,0 -88.5,35.5q-20.5-3.5 -39.5-3.5q-45.5,0 -87,17.75t-71.5,47.75t-47.75,71.5t-17.75,87q0,18.5 3.5,39.5q-35.5,37 -35.5,88.5q0,53 37.5,90.5t 90.5,37.5q 51.5,0 88.5-35.5q 20.5,3.5 39.5,3.5q 45.5,0 87-17.75t 71.5-47.75t 47.75-71.5t 17.75-87q0-19 -3.5-39.5q 35.5-37 35.5-88.5
|
||||
zM 256,320q 26.5,0 45.25-9.25t 18.75-22.5t 9.5-22.75t 22.75-9.5t 22.5,9.5t 9.25,22.5q0,40 -37.5,68t-90.5,28t-90.5-28t-37.5-68t 37.5-68t 90.5-28q 26.5,0 45.25-9.25t 18.75-22.75t-18.75-22.75t-45.25-9.25t-45.25,9.5t-18.75,22.75t-9.25,22.5t-22.5,9.25t-22.75-9.25t-9.5-22.75q0-40 37.5-68t 90.5-28
|
||||
t 90.5,28t 37.5,68t-37.5,68t-90.5,28q-26.5,0 -45.25,9.5t-18.75,22.75t 18.75,22.5t 45.25,9.25z" data-tags="skype" />
|
||||
<glyph unicode="" d="M 156.39,456.909L 10.24,365.875l 100.122-83.942L 256,376.525L 156.39,456.909z M 344.371,70.554c-2.611,0-5.197,0.896-7.296,2.662L 256,140.442
|
||||
l-81.075-67.251c-2.099-1.741-4.71-2.662-7.296-2.662c-2.176,0-4.352,0.589-6.246,1.843l-60.058,39.296l0-23.194 L 256-8.909l 154.675,97.408
|
||||
l0,23.194 l-60.058-39.296C 348.723,71.142, 346.547,70.554, 344.371,70.554z M 501.76,365.875l-146.15,91.034L 256,376.525l 145.613-94.566L 501.76,365.875z
|
||||
M 256,190.95l 90.291-74.957l 144.435,94.413l-89.088,71.526L 256,190.95z M 165.709,115.994L 256,190.95L 110.387,281.958l-89.088-71.552L 165.709,115.994z" data-tags="dropbox, social" />
|
||||
<glyph unicode=" " horiz-adv-x="256" />
|
||||
</font></defs></svg>
|
||||
|
Before Width: | Height: | Size: 52 KiB |
Binary file not shown.
|
|
@ -1,308 +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="16"></iconset>
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="icomoon" horiz-adv-x="512" >
|
||||
<font-face units-per-em="512" ascent="480" descent="-32" />
|
||||
<missing-glyph horiz-adv-x="512" />
|
||||
<glyph class="hidden" unicode="" d="M0,480L 512 -32L0 -32 z" horiz-adv-x="0" />
|
||||
<glyph unicode="" d="M 478.566,412.544C 469.786,409.446, 35.149,256.307, 26.598,253.286c-7.27-2.56-8.909-8.832-0.256-12.262
|
||||
c 10.266-4.122, 97.178-38.938, 97.178-38.938L 123.494,202.086 l 57.626-23.091c0,0, 277.427,203.75, 281.19,206.49c 3.763,2.765, 8.141-2.432, 5.402-5.402
|
||||
c-2.739-2.995-201.498-217.958-201.498-217.958c-0.026,0-0.026,0-0.026,0l-11.571-12.902l 15.334-8.243l0,0c0,0, 119.040-64.077, 127.514-68.659
|
||||
c 7.424-3.994, 17.101-0.666, 19.251,8.576c 2.534,10.906, 72.832,313.907, 74.394,320.614C 493.158,410.291, 487.373,415.642, 478.566,412.544z M 180.608,40.653
|
||||
c0-6.323, 3.558-8.064, 8.474-3.61c 6.4,5.837, 72.934,65.536, 72.934,65.536l-81.408,42.138L 180.608,40.653 z" />
|
||||
<glyph unicode="" d="M 486.4,49.92c0,0-51.2,249.165-275.84,249.165L 210.56,398.080 L 25.6,232.832l 184.96-171.29l0,111.565 C 332.493,173.107, 422.835,162.304, 486.4,49.92z" />
|
||||
<glyph unicode="" d="M 184.96,329.472L 184.96,398.080 L0,232.832l 184.96-171.29l0,71.142 L 76.8,232.832L 184.96,329.472z M 312.96,299.11L 312.96,398.080 L 128,232.832l 184.96-171.29l0,111.565
|
||||
c 84.301,0, 135.475-10.803, 199.040-123.187C 512,49.92, 502.605,299.11, 312.96,299.11z" />
|
||||
<glyph unicode="" d="M 301.44,173.107l0-111.539 L 486.4,232.832L 301.44,398.080l0-98.97 C 76.8,299.11, 25.6,49.92, 25.6,49.92C 89.165,162.304, 179.507,173.107, 301.44,173.107z" />
|
||||
<glyph unicode="" d="M 449.152,84.019l-96.742,96.742c 14.592,23.987, 22.989,52.096, 22.989,82.227c0,87.45-75.802,163.251-163.277,163.251
|
||||
C 124.672,426.24, 53.76,355.328, 53.76,267.878c0-87.475, 75.776-163.277, 163.251-163.277c 29.082,0, 56.32,7.885, 79.744,21.581l 97.254-97.28
|
||||
c 9.549-9.523, 24.96-9.523, 34.458,0l 24.141,24.115C 462.106,62.541, 458.65,74.522, 449.152,84.019z M 102.502,267.878
|
||||
c0,60.544, 49.075,109.645, 109.619,109.645c 60.57,0, 114.534-53.965, 114.534-114.534s-49.075-109.645-109.645-109.645S 102.502,207.309, 102.502,267.878z" />
|
||||
<glyph unicode="" d="M 179.2,249.6L 25.6,249.6 c-14.131,0-25.6-11.469-25.6-25.6s 11.469-25.6, 25.6-25.6l 153.6,0 c 14.131,0, 25.6,11.469, 25.6,25.6S 193.331,249.6, 179.2,249.6z M 179.2,147.2L 25.6,147.2 c-14.131,0-25.6-11.443-25.6-25.6s 11.469-25.6, 25.6-25.6l 153.6,0
|
||||
c 14.131,0, 25.6,11.443, 25.6,25.6S 193.331,147.2, 179.2,147.2z M 496.64,249.6L 409.6,249.6 L 409.6,336.64 C 409.6,350.771, 398.157,352, 384,352s-25.6-1.229-25.6-15.36L 358.4,249.6 l-84.48,0 C 259.763,249.6, 258.56,238.131, 258.56,224
|
||||
s 1.229-25.6, 15.386-25.6L 358.4,198.4 l0-87.040 c0-14.131, 11.443-15.36, 25.6-15.36s 25.6,1.229, 25.6,15.36L 409.6,198.4 l 87.040,0 c 14.131,0, 15.36,11.469, 15.36,25.6S 510.771,249.6, 496.64,249.6z M 179.2,352L 25.6,352
|
||||
C 11.469,352,0,340.531,0,326.4s 11.469-25.6, 25.6-25.6l 153.6,0 c 14.131,0, 25.6,11.469, 25.6,25.6S 193.331,352, 179.2,352z" />
|
||||
<glyph unicode="" d="M 318.259,480c 34.304,0, 51.456-23.398, 51.456-50.125c0-33.382-29.798-64.282-68.557-64.282c-32.512,0-51.456,19.2-50.56,50.918
|
||||
C 250.598,443.264, 273.126,480, 318.259,480z M 212.71-32c-27.085,0-46.925,16.691-27.981,90.189l 31.078,130.33c 5.402,20.864, 6.298,29.235,0,29.235
|
||||
c-8.141,0-43.264-14.413-64.051-28.621L 138.24,211.686c 65.869,55.962, 141.619,88.755, 174.106,88.755c 27.059,0, 31.539-32.563, 18.048-82.662l-35.61-137.011
|
||||
c-6.298-24.218-3.61-32.563, 2.688-32.563c 8.141,0, 34.739,10.061, 60.902,30.925l 15.36-20.864C 309.709-6.912, 239.77-32, 212.71-32z" />
|
||||
<glyph unicode="" d="M 153.626,341.76L 153.6,106.24L 358.4,224 z" />
|
||||
<glyph unicode="" d="M 373.76,326.374L 138.24,326.4L 256,121.6 z" />
|
||||
<glyph unicode="" d="M 76.8,280.32c-31.104,0-56.32-25.216-56.32-56.32c0-31.104, 25.216-56.32, 56.32-56.32s 56.32,25.216, 56.32,56.32C 133.12,255.104, 107.904,280.32, 76.8,280.32z M 256,280.32
|
||||
c-31.104,0-56.32-25.216-56.32-56.32c0-31.104, 25.216-56.32, 56.32-56.32s 56.294,25.216, 56.294,56.32C 312.294,255.104, 287.104,280.32, 256,280.32z M 435.2,280.32
|
||||
c-31.104,0-56.32-25.216-56.32-56.32c0-31.104, 25.216-56.32, 56.32-56.32s 56.32,25.216, 56.32,56.32C 491.52,255.104, 466.304,280.32, 435.2,280.32z" />
|
||||
<glyph unicode="" d="M 432,480 C 476.182,480 512,444.183 512,400 C 512,381.99 506.045,365.371 496,352 L 464,320 L 352,432 L 384,464 C 397.371,474.045 413.989,480 432,480 ZM 32,112L0-32l 144,32l 296,296L 328,408L 32,112z M 357.789,298.211l-224-224l-27.578,27.578l 224,224L 357.789,298.211z" />
|
||||
<glyph unicode="" d="M0,416l0-416 l 512,0 L 512,416 L0,416 z M 480,32L 32,32 L 32,384 l 448,0 L 480,32 zM 352,304A48,48 2700 1 1 448,304A48,48 2700 1 1 352,304zM 448,64 L 64,64 L 160,320 L 288,160 L 352,208 Z" />
|
||||
<glyph unicode="" d="M 160,384 L 512,480 L 512,448 L 512,384 L 512,112 C 512,67.817 461.855,32 400,32 C 338.145,32 288,67.817 288,112 C 288,156.183 338.145,192 400,192 C 417.179,192 433.451,189.234 448,184.297 L 448,349.091 L 224,288 L 224,48 C 224,3.817 173.856-32 112-32 C 50.144-32 0,3.817 0,48 C 0,92.183 50.144,128 112,128 C 129.179,128 145.451,125.234 160,120.297 L 160,288 L 160,384 Z" />
|
||||
<glyph unicode="" d="M0,416l0-384 l 512,0 L 512,416 L0,416 z M 96,64L 32,64 l0,64 l 64,0 L 96,64 z M 96,192L 32,192 l0,64 l 64,0 L 96,192 z M 96,320L 32,320 L 32,384 l 64,0 L 96,320 z M 384,64L 128,64 L 128,384 l 256,0 L 384,64 z
|
||||
M 480,64l-64,0 l0,64 l 64,0 L 480,64 z M 480,192l-64,0 l0,64 l 64,0 L 480,192 z M 480,320l-64,0 L 416,384 l 64,0 L 480,320 zM 192,320L 192,128L 320,224 z" />
|
||||
<glyph unicode="" d="M 128,448L 384,448L 384,384L 128,384zM 480,352L 32,352 C 14.4,352,0,337.6,0,320l0-160 c0-17.6, 14.398-32, 32-32l 96,0 l0-128 l 256,0 L 384,128 l 96,0 c 17.6,0, 32,14.4, 32,32L 512,320
|
||||
C 512,337.6, 497.6,352, 480,352z M 352,32L 160,32 L 160,192 l 192,0 L 352,32 z M 487.2,304c0-12.813-10.387-23.2-23.199-23.2
|
||||
c-12.813,0-23.201,10.387-23.201,23.2s 10.388,23.2, 23.201,23.2C 476.814,327.2, 487.2,316.813, 487.2,304z" />
|
||||
<glyph unicode="" d="M 160,288L 224,288L 224,224L 160,224zM 256,288L 320,288L 320,224L 256,224zM 352,288L 416,288L 416,224L 352,224zM 64,96L 128,96L 128,32L 64,32zM 160,96L 224,96L 224,32L 160,32zM 256,96L 320,96L 320,32L 256,32zM 160,192L 224,192L 224,128L 160,128zM 256,192L 320,192L 320,128L 256,128zM 352,192L 416,192L 416,128L 352,128zM 64,192L 128,192L 128,128L 64,128zM 416,480l0-32 l-64,0 L 352,480 L 128,480 l0-32 L 64,448 L 64,480 L0,480 l0-512 l 480,0 L 480,480 L 416,480 z M 448,0L 32,0 L 32,352 l 416,0 L 448,0 z" />
|
||||
<glyph unicode="" d="M 352,480c-88.365,0-160-71.634-160-160c0-10.013, 0.929-19.808, 2.688-29.312L0,96l0-96 c0-17.673, 14.327-32, 32-32
|
||||
l 32,0 l0,32 l 64,0 l0,64 l 64,0 l0,64 l 64,0 l 41.521,41.521C 314.526,163.363, 332.869,160, 352,160c 88.365,0, 160,71.634, 160,160S 440.365,480, 352,480z
|
||||
M 399.937,319.937c-26.51,0-48,21.49-48,48s 21.49,48, 48,48s 48-21.49, 48-48S 426.447,319.937, 399.937,319.937z" />
|
||||
<glyph unicode="" d="M 466.895,174.875c-26.863,46.527-10.708,106.152, 36.076,133.244l-50.313,87.146c-14.375-8.427-31.088-13.259-48.923-13.259
|
||||
c-53.768,0-97.354,43.873-97.354,97.995L 205.752,480.001 c 0.133-16.705-4.037-33.641-12.979-49.126
|
||||
c-26.862-46.528-86.578-62.351-133.431-35.379L 9.030,308.35c 14.485-8.236, 27.025-20.294, 35.943-35.739
|
||||
c 26.819-46.454, 10.756-105.96-35.854-133.112l 50.313-87.146c 14.325,8.348, 30.958,13.127, 48.7,13.127
|
||||
c 53.598,0, 97.072-43.596, 97.35-97.479l 100.627,0 c-0.043,16.537, 4.136,33.285, 12.983,48.609
|
||||
c 26.818,46.453, 86.388,62.297, 133.207,35.506l 50.313,87.145C 488.222,147.494, 475.766,159.51, 466.895,174.875z M 256,120.334
|
||||
c-57.254,0-103.668,46.412-103.668,103.667c0,57.254, 46.413,103.667, 103.668,103.667c 57.254,0, 103.666-46.413, 103.666-103.667
|
||||
C 359.665,166.746, 313.254,120.334, 256,120.334z" />
|
||||
<glyph unicode="" d="M 160.504-32 C 126.381,39.004 144.553,79.689 170.779,118.022 C 199.499,160 206.901,201.555 206.901,201.555 C 206.901,201.555 229.478,172.205 220.447,126.301 C 260.333,170.701 267.859,241.441 261.838,268.533 C 351.995,205.527 390.526,69.105 338.599-32 C 614.785,124.266 407.298,358.086 371.176,384.425 C 383.217,358.087 385.5,313.5 361.176,291.862 C 320,448 218.19,480 218.19,480 C 230.231,399.478 174.542,311.428 120.842,245.635 C 118.955,277.743 116.951,299.899 100.067,330.625 C 96.277,272.297 51.701,224.751 39.63,166.311 C 23.279,87.168 51.878,29.221 160.504-32 Z" />
|
||||
<glyph unicode="" d="M 352,448L 192,288L 96,288 L0,160c0,0, 101.708,28.326, 161.033,15.042L0-32l 210.951,164.072C 240.37,64.745, 192-32, 192-32l 128,96
|
||||
l0,96 l 160,160L 512,480L 352,448z" />
|
||||
<glyph unicode="" d="M0,480l0-512 l 512,0 L 512,480 L0,480 z M 480,0L 32,0 L 32,448 l 448,0 L 480,0 z M 384,368L 224,208l-96,96l-64-64l 160-160l 224,224L 384,368z" />
|
||||
<glyph unicode="" d="M0,480l0-512 l 512,0 L 512,480 L0,480 z M 480,0L 32,0 L 32,448 l 448,0 L 480,0 z" />
|
||||
<glyph unicode="" d="M0,480l0-512 l 512,0 L 512,480 L0,480 z M 480,0L 32,0 L 32,448 l 448,0 L 480,0 zM 128,352L 384,352L 384,96L 128,96z" />
|
||||
<glyph unicode="" d="M 256,480C 114.615,480,0,365.385,0,224s 114.615-256, 256-256s 256,114.615, 256,256S 397.385,480, 256,480z M 256,32
|
||||
c-106.039,0-192,85.961-192,192c0,106.039, 85.961,192, 192,192c 106.039,0, 192-85.961, 192-192C 448,117.961, 362.039,32, 256,32zM 160,224A96,96 12780 1 1 352,224A96,96 12780 1 1 160,224z" />
|
||||
<glyph unicode="" d="M 256,480C 114.615,480,0,365.385,0,224s 114.615-256, 256-256s 256,114.615, 256,256S 397.385,480, 256,480z M 256,32
|
||||
c-106.039,0-192,85.961-192,192c0,106.039, 85.961,192, 192,192c 106.039,0, 192-85.961, 192-192C 448,117.961, 362.039,32, 256,32z" />
|
||||
<glyph unicode="" d="M 394.767,448c0,0-100.478,0-133.97,0c-60.061,0-116.585-45.503-116.585-98.211c0-53.863, 40.941-97.333, 102.044-97.333
|
||||
c 4.249,0, 8.378,0.085, 12.42,0.376c-3.964-7.593-6.8-16.144-6.8-25.021c0-14.969, 8.052-27.105, 18.234-37.012
|
||||
c-7.693,0-15.121-0.224-23.226-0.224c-74.391,0.001-131.65-47.38-131.65-96.511c0-48.389, 62.771-78.656, 137.167-78.656
|
||||
c 84.812,0, 131.653,48.122, 131.653,96.514c0,38.801-11.448,62.036-46.843,87.067c-12.108,8.571-35.266,29.418-35.266,41.672
|
||||
c0,14.36, 4.098,21.434, 25.714,38.323c 22.156,17.312, 37.837,41.651, 37.837,69.958c0,33.703-15.011,66.549-43.187,77.386l 42.478,0
|
||||
L 394.767,448z M 347.974,120.271c 1.063-4.486, 1.642-9.104, 1.642-13.814c0-39.1-25.195-69.655-97.487-69.655
|
||||
c-51.421,0-88.558,32.552-88.558,71.65c0,38.321, 46.063,70.222, 97.482,69.666c 12-0.127, 23.184-2.058, 33.334-5.345
|
||||
C 322.301,153.359, 342.325,142.393, 347.974,120.271z M 265.643,266.112c-34.519,1.032-67.318,38.613-73.276,83.93
|
||||
c-5.958,45.333, 17.185,80.021, 51.694,78.995C 278.565,428, 311.379,391.63, 317.34,346.308
|
||||
C 323.293,300.978, 300.145,265.079, 265.643,266.112z" />
|
||||
<glyph unicode="" d="M 0.403,45.168c-0.122,1.266-0.226,2.535-0.292,3.815C 0.176,47.703, 0.281,46.434, 0.403,45.168zM 117.954,197.426c 46.005-1.369, 76.867,46.349, 68.931,106.599c-7.947,60.24-51.698,108.584-97.704,109.961
|
||||
c-46.013,1.365-76.87-44.741-68.926-105C 28.196,248.752, 71.931,198.799, 117.954,197.426zM 512,352L 512,394.655 C 512,441.595, 473.609,480, 426.671,480L 85.343,480 C 39.205,480, 1.337,442.884, 0.061,397.037
|
||||
c 29.181,25.693, 69.662,47.158, 111.437,47.158c 44.652,0, 178.622,0, 178.622,0l-39.974-33.809l-56.634,0
|
||||
c 37.565-14.402, 57.578-58.062, 57.578-102.861c0-37.624-20.905-69.977-50.444-92.984c-28.822-22.451-34.286-31.854-34.286-50.939
|
||||
c0-16.289, 30.873-44, 47.016-55.394c 47.191-33.269, 62.458-64.156, 62.458-115.728c0-8.214-1.021-16.415-3.033-24.48l 153.871,0
|
||||
C 473.609-32, 512,6.375, 512,53.345L 512,319.999 l-96,0 L 416,224 l-32,0 l0,96 l-95.999,0 l0,32 L 384,352 L 384,448 l 32,0 l0-96 L 512,352 zM 92.943,97.032c 10.807,0, 20.711,0.295, 30.968,0.295c-13.573,13.167-24.313,29.3-24.313,49.19
|
||||
c0,11.804, 3.782,23.168, 9.067,33.26c-5.391-0.385-10.895-0.497-16.563-0.497c-37.178,0-68.753,12.038-92.102,31.927l0-33.621
|
||||
l 0.003-100.865C 26.723,89.408, 58.447,97.032, 92.943,97.032zM 1.71,36.371c-0.556,2.729-0.983,5.503-1.271,8.317C 0.726,41.874, 1.154,39.1, 1.71,36.371zM 227.725,3.577c-7.529,29.403-34.227,43.982-71.444,69.784c-13.536,4.366-28.447,6.937-44.447,7.104
|
||||
c-44.809,0.482-86.554-17.471-110.108-44.186C 9.686-2.574, 44.243-32, 85.343-32l 143.222,0 c 0.908,5.564, 1.348,11.316, 1.348,17.216
|
||||
C 229.913-8.517, 229.146-2.388, 227.725,3.577z" />
|
||||
<glyph unicode="" d="M 426.672,480L 85.342,480 C 38.406,480,0,441.593,0,394.656l0-341.313 C0,6.374, 38.406-32, 85.342-32l 341.33,0.001
|
||||
c 46.938,0, 85.328,38.373, 85.328,85.344L 512,394.656 C 512,441.593, 473.609,480, 426.672,480z M 435.296,224L 352,224 l0-224 l-96,0 L 256,224 l-46.263,0 l0,73.282 L 256,297.282
|
||||
l0,47.593 C 256,409.546, 283.896,448, 359.935,448l 87.622,0 l0-79.285 l-71.565,0 c-21.241,0.035-23.876-11.076-23.876-31.756L 352,297.282l 96,0
|
||||
L 435.296,224z" />
|
||||
<glyph unicode="" d="M 512,382.791c-18.838-8.354-39.082-14.001-60.33-16.54c 21.686,13, 38.343,33.585, 46.186,58.115
|
||||
c-20.298-12.039-42.778-20.78-66.705-25.49c-19.16,20.415-46.461,33.17-76.673,33.17c-58.011,0-105.044-47.029-105.044-105.039
|
||||
c0-8.233, 0.929-16.25, 2.72-23.939c-87.3,4.382-164.701,46.2-216.509,109.753c-9.042-15.514-14.223-33.558-14.223-52.809
|
||||
c0-36.444, 18.544-68.596, 46.73-87.433c-17.219,0.546-33.416,5.271-47.577,13.139c-0.010-0.438-0.010-0.878-0.010-1.321
|
||||
c0-50.894, 36.209-93.348, 84.261-103c-8.813-2.4-18.094-3.686-27.674-3.686c-6.769,0-13.349,0.66-19.764,1.886
|
||||
c 13.368-41.73, 52.16-72.103, 98.126-72.948c-35.95-28.175-81.243-44.967-130.458-44.967c-8.479,0-16.84,0.497-25.058,1.47
|
||||
c 46.486-29.805, 101.701-47.197, 161.021-47.197c 193.211,0, 298.868,160.062, 298.868,298.872c0,4.554-0.103,9.084-0.305,13.59
|
||||
C 480.11,343.227, 497.918,361.727, 512,382.791z" />
|
||||
<glyph unicode="" d="M 416,416L 96,416 c-52.8,0-96-43.2-96-96l0-192 c0-52.8, 43.2-96, 96-96l 320,0 c 52.8,0, 96,43.2, 96,96L 512,320 C 512,372.8, 468.8,416, 416,416z
|
||||
M 192,96L 192,352 l 160-128L 192,96z" />
|
||||
<glyph unicode="" d="M 421.006,185.26c-6.824,6.723-21.957,10.283-44.986,10.586c-15.589,0.172-34.351-1.201-54.085-3.964
|
||||
c-8.837,5.099-17.946,10.647-25.094,17.329c-19.231,17.958-35.284,42.886-45.288,70.297c 0.652,2.56, 1.207,4.81, 1.724,7.106
|
||||
c0,0, 10.833,61.53, 7.965,82.333c-0.395,2.853-0.637,3.681-1.404,5.898l-0.941,2.417c-2.948,6.796-8.724,13.997-17.783,13.604
|
||||
l-5.312,0.169l-0.146,0.003c-10.1,0-18.332-5.166-20.493-12.887c-6.569-24.217, 0.209-60.446, 12.491-107.369l-3.144-7.643
|
||||
c-8.794-21.438-19.815-43.030-29.539-62.079l-1.264-2.476c-10.23-20.019-19.512-37.013-27.927-51.411l-8.688-4.594
|
||||
c-0.632-0.334-15.522-8.209-19.014-10.322c-29.628-17.691-49.261-37.77-52.518-53.708c-1.036-5.085-0.265-11.593, 5.007-14.607
|
||||
l 8.403-4.229c 3.645-1.826, 7.489-2.751, 11.427-2.751c 21.102,0, 45.6,26.286, 79.348,85.183
|
||||
c 38.965,12.684, 83.327,23.228, 122.207,29.045c 29.629-16.684, 66.071-28.273, 89.071-28.273c 4.084,0, 7.606,0.389, 10.466,1.148
|
||||
c 4.411,1.168, 8.129,3.683, 10.396,7.096c 4.463,6.716, 5.367,15.966, 4.156,25.438C 425.68,179.411, 423.435,182.887, 421.006,185.26z
|
||||
M 105.823,72.976c 3.848,10.521, 19.080,31.322, 41.602,49.778c 1.416,1.148, 4.904,4.416, 8.097,7.451
|
||||
C 131.971,92.643, 116.199,77.672, 105.823,72.976z M 239.217,380.157c 6.783,0, 10.642-17.097, 10.962-33.127
|
||||
c 0.32-16.030-3.429-27.28-8.079-35.604c-3.851,12.324-5.713,31.75-5.713,44.452C 236.387,355.878, 236.104,380.157, 239.217,380.157z
|
||||
M 199.426,161.253c 4.725,8.458, 9.641,17.378, 14.665,26.839c 12.246,23.158, 19.979,41.278, 25.739,56.173
|
||||
c 11.455-20.842, 25.722-38.56, 42.493-52.756c 2.092-1.771, 4.309-3.551, 6.637-5.325C 254.855,179.436, 225.378,171.229, 199.426,161.253z
|
||||
M 414.452,163.174c-2.077-1.299-8.027-2.050-11.854-2.050c-12.353,0-27.636,5.647-49.063,14.833
|
||||
c 8.234,0.609, 15.781,0.919, 22.55,0.919c 12.391,0, 16.060,0.054, 28.175-3.036S 416.529,164.473, 414.452,163.174zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" />
|
||||
<glyph unicode="" d="M 319.889,242.054L 341.995,242.054L 316.489,128.965L 283.326,287.97L 230.051,287.97L 191.494,128.965L 162.586,287.97L 106.889,287.97L 163.435,32.029L 217.854,32.029L 256.001,183.383L 290.129,32.029L 340.297,32.029L 405.112,287.97L 319.889,287.97
|
||||
zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" />
|
||||
<glyph unicode="" d="M 371.514,288L 303.867,288L 256.001,217.484L 208.131,288L 140.487,288L 221.568,166.768L 130.081,32L 261.201,32L 261.201,77.788L 230.923,77.788L 256.001,115.285L 311.699,32L 381.92,32L 290.432,166.768 zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" />
|
||||
<glyph unicode="" d="M 96,224l 96,0 l0-32 L 96,192 L 96,224 z M 96,160l 96,0 l0-32 L 96,128 L 96,160 z M 96,96l 96,0 l0-32 L 96,64 L 96,96 z M 451.716,380.285l-71.432,71.431
|
||||
C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0 c 22,0, 40,18, 40,40L 480,312
|
||||
C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440 c0,4.336, 3.664,8, 8,8
|
||||
l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 zM 288,128 L 382.396,128 C 374.983,91.484 342.703,64 304,64 C 259.817,64 224,99.817 224,144 C 224,182.703 251.485,214.983 288,222.396 L 288,128 ZM 336,256 C 380.183,256 416,220.183 416,176 C 416,170.521 415.446,165.17 414.396,160 L 320,160 L 320,254.396 C 325.17,255.446 330.521,256 336,256 Z" />
|
||||
<glyph unicode="" d="M 224,192L 192,224L 96,128L 192,32L 224,64L 160,128 zM 288,64L 320,32L 416,128L 320,224L 288,192L 352,128 zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" />
|
||||
<glyph unicode="" d="M 192,174.277L 192,231.39 c0,7.564, 3.348,14.718, 9.427,20.143c 6.080,5.424, 14.096,8.413, 22.573,8.413l0,28.555
|
||||
c-35.2,0-64-25.7-64-57.111l0-42.833 c0-7.886-7.164-14.279-16-14.279l-16,0 l0-28.555 l 16,0 c 8.837,0, 16-6.395, 16-14.279l0-42.838
|
||||
c0-31.407, 28.8-57.107, 64-57.107l0,28.556 c-8.477,0-16.494,2.988-22.573,8.413c-6.079,5.426-9.427,12.577-9.427,20.139l0,57.117
|
||||
c0,7.885-7.164,14.277-16,14.277C 184.837,160, 192,166.395, 192,174.277zM 320,145.723l0-57.117 c0-7.562-3.348-14.713-9.427-20.139c-6.079-5.425-14.095-8.413-22.573-8.413l0-28.556
|
||||
c 35.201,0, 64,25.7, 64,57.107l0,42.838 c0,7.886, 7.164,14.279, 16,14.279l 16,0 l0,28.555 l-16,0 c-8.836,0-16,6.395-16,14.279L 352,231.39
|
||||
c0,31.412-28.799,57.111-64,57.111l0-28.555 c 8.479,0, 16.494-2.989, 22.573-8.415c 6.080-5.424, 9.427-12.578, 9.427-20.142l0-57.114
|
||||
c0-7.883, 7.164-14.276, 16-14.276C 327.164,160, 320,153.605, 320,145.723zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" />
|
||||
<glyph unicode="" d="M 505.216,60.624l-191.984,384C 302.4,466.304, 280.256,480, 256,480s-46.4-13.696-57.232-35.376
|
||||
l-191.984-384c-9.92-19.84-8.864-43.408, 2.8-62.288C 21.248-20.512, 41.84-32, 64.016-32l 383.952,0 c 22.192,0, 42.784,11.488, 54.432,30.336
|
||||
C 514.064,17.216, 515.12,40.784, 505.216,60.624z M 287.968,48c0-8.848-7.152-16-16-16l-32,0 c-8.848,0-16,7.152-16,16l0,32 c0,8.848, 7.152,16, 16,16l 32,0
|
||||
c 8.848,0, 16-7.152, 16-16L 287.968,48 z M 287.968,176c0-8.848-7.152-16-16-16l-32,0 c-8.848,0-16,7.152-16,16L 223.968,336 c0,8.832, 7.152,16, 16,16l 32,0 c 8.848,0, 16-7.168, 16-16
|
||||
L 287.968,176 z" />
|
||||
<glyph unicode="" d="M 480,224c0-123.712-100.288-224-224-224S 32,100.288, 32,224c0,54.528, 19.616,104.368, 52,143.2
|
||||
c 2.464,4.544, 5.888,8.496, 10.16,11.36c 0.72,0.752, 1.36,1.6, 2.096,2.336c 0.016-0.368, 0.176-0.72, 0.208-1.088C 101.088,382.4, 106.336,384, 112,384
|
||||
c 17.664,0, 32-14.336, 32-32c0-11.136-5.68-20.928-14.32-26.656C 130.24,324.928, 130.64,324.416, 131.216,324C 109.216,296.608, 96,261.872, 96,224
|
||||
c0-88.368, 71.632-160, 160-160s 160,71.632, 160,160c0,37.872-13.216,72.608-35.216,100c 0.576,0.416, 0.992,0.928, 1.536,1.344
|
||||
C 373.68,331.072, 368,340.864, 368,352c0,17.664, 14.336,32, 32,32c 5.664,0, 10.912-1.6, 15.536-4.192c 0.032,0.368, 0.192,0.72, 0.224,1.088
|
||||
c 0.72-0.736, 1.36-1.584, 2.096-2.336c 4.272-2.864, 7.68-6.816, 10.16-11.36C 460.368,328.368, 480,278.528, 480,224z M 272,192l-32,0
|
||||
c-8.848,0-16,7.152-16,16L 224,432 c0,8.832, 7.152,16, 16,16l 32,0 c 8.848,0, 16-7.168, 16-16l0-224 C 288,199.152, 280.848,192, 272,192z" />
|
||||
<glyph unicode="" d="M 399.712,324.512c 5.968-5.968, 15.648-5.968, 21.6,0l 84.528,66.544
|
||||
c 14.064-44.224, 4.128-94.432-30.96-129.52c-33.472-33.488-80.736-44.032-123.424-32.768l-100.256-100.256c 11.264-42.704, 0.704-89.952-32.752-123.424
|
||||
c-35.088-35.088-85.312-45.024-129.536-30.96l 66.576,84.512c 5.968,5.984, 5.968,15.648,0,21.616l-43.2,43.184c-5.968,5.968-15.648,5.968-21.6,0
|
||||
l-84.528-66.544c-14.064,44.224-4.128,94.416, 30.944,129.504c 33.488,33.488, 80.736,44.048, 123.44,32.768l 100.272,100.272
|
||||
c-11.28,42.688-0.72,89.952, 32.736,123.424c 35.088,35.088, 85.312,45.024, 129.552,30.976l-66.576-84.544c-5.952-5.952-5.952-15.632,0-21.584
|
||||
L 399.712,324.512z" />
|
||||
<glyph unicode="" d="M 370.857,102.286q0-11.429 -8-19.429l-38.857-38.857q-8-8 -19.429-8t-19.429,8l-84,84l-84-84q-8-8 -19.429-8t-19.429,8l-38.857,38.857q-8,8 -8,19.429t 8,19.429l 84,84l-84,84q-8,8 -8,19.429t 8,19.429l 38.857,38.857q 8,8 19.429,8t 19.429-8l 84-84l 84,84q 8,8 19.429,8t 19.429-8l 38.857-38.857q 8-8 8-19.429 t-8-19.429l-84-84l 84-84q 8-8 8-19.429z" horiz-adv-x="402.286" />
|
||||
<glyph unicode="" d="M 477.429,318.286q0-11.429 -8-19.429l-206.857-206.857l-38.857-38.857q-8-8 -19.429-8t-19.429,8l-38.857,38.857l-103.429,103.429q-8,8 -8,19.429t 8,19.429l 38.857,38.857q 8,8 19.429,8t 19.429-8l 84-84.286l 187.429,187.714q 8,8 19.429,8t 19.429-8l 38.857-38.857q 8-8 8-19.429z" />
|
||||
<glyph unicode="" d="M 402.286,269.714l0-54.857 q0-11.429 -8-19.429t-19.429-8l-118.857,0 l0-118.857 q0-11.429 -8-19.429t-19.429-8l-54.857,0 q-11.429,0 -19.429,8t-8,19.429l0,118.857 l-118.857,0 q-11.429,0 -19.429,8t-8,19.429l0,54.857 q0,11.429 8,19.429t 19.429,8l 118.857,0 l0,118.857 q0,11.429 8,19.429t 19.429,8l 54.857,0 q 11.429,0 19.429-8t 8-19.429l0-118.857 l 118.857,0 q 11.429,0 19.429-8t 8-19.429z" horiz-adv-x="402.286" />
|
||||
<glyph unicode="" d="M 402.286,269.714l0-54.857 q0-11.429 -8-19.429t-19.429-8l-347.429,0 q-11.429,0 -19.429,8t-8,19.429l0,54.857 q0,11.429 8,19.429t 19.429,8l 347.429,0 q 11.429,0 19.429-8t 8-19.429z" horiz-adv-x="402.286" />
|
||||
<glyph unicode="" d="M 348.916,316.476l-32.476,32.461L 154.035,186.566c-26.907-26.896-26.907-70.524,0-97.422
|
||||
c 26.902-26.896, 70.53-26.896, 97.437,0l 194.886,194.854c 44.857,44.831, 44.857,117.531,0,162.363
|
||||
c-44.833,44.852-117.556,44.852-162.391,0L 79.335,241.788l 0.017-0.016c-0.145-0.152-0.306-0.288-0.438-0.423
|
||||
c-62.551-62.548-62.551-163.928,0-226.453c 62.527-62.528, 163.934-62.528, 226.494,0c 0.137,0.137, 0.258,0.284, 0.41,0.438l 0.016-0.017
|
||||
l 139.666,139.646l-32.493,32.46L 273.35,47.792l-0.008,0 c-0.148-0.134-0.282-0.285-0.423-0.422
|
||||
c-44.537-44.529-116.99-44.529-161.538,0c-44.531,44.521-44.531,116.961,0,161.489c 0.152,0.152, 0.302,0.291, 0.444,0.423l-0.023,0.030
|
||||
l 204.64,204.583c 26.856,26.869, 70.572,26.869, 97.443,0c 26.856-26.867, 26.856-70.574,0-97.42L 218.999,121.625
|
||||
c-8.968-8.961-23.527-8.961-32.486,0c-8.947,8.943-8.947,23.516,0,32.46L 348.916,316.476z" />
|
||||
<glyph unicode="" d="M 255.616,418.56L 255.616,320.563L 435.251,320.589L 435.251,127.258L 255.616,127.258L 255.616,29.44L 61.491,224 z" />
|
||||
<glyph unicode="" d="M 450.56,224.384L 352.563,224.358L 352.589,44.749L 159.258,44.749L 159.258,224.384L 61.44,224.358L 256.026,418.509 z" />
|
||||
<glyph unicode="" d="M 256.384,418.56L 256.384,320.563L 76.749,320.589L 76.749,127.258L 256.384,127.258L 256.384,29.44L 450.509,224 z" />
|
||||
<glyph unicode="" d="M 450.56,223.616L 352.563,223.642L 352.589,403.251L 159.258,403.251L 159.258,223.616L 61.44,223.642L 256,29.491 z" />
|
||||
<glyph unicode="" d="M 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0 c 22,0, 40,18, 40,40
|
||||
L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440 c0,4.336, 3.664,8, 8,8
|
||||
l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" />
|
||||
<glyph unicode="" d="M 208,416L 256,416L 256,384L 208,384zM 160,384L 208,384L 208,352L 160,352zM 208,352L 256,352L 256,320L 208,320zM 160,320L 208,320L 208,288L 160,288zM 208,288L 256,288L 256,256L 208,256zM 160,256L 208,256L 208,224L 160,224zM 208,224l0-32 l-48,0 l0-112 c0-8.837, 7.163-16, 16-16l 64,0 c 8.837,0, 16,7.163, 16,16L 256,224 L 208,224 z M 240,96l-64,0 l0,32 l 64,0 L 240,96 zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" />
|
||||
<glyph unicode="" d="M0,448l0-448 l 512,0 L 512,448 L0,448 z M 480,32L 32,32 L 32,416 l 448,0 L 480,32 zM 448,384L 64,384 l0-320 l 384,0 L 448,384 z M 224,224l-32,0 l0-32 l-32,0 l0-32 l-32,0 l0,32 l 32,0 l0,32 l 32,0 l0,32 l-32,0 l0,32 l-32,0 l0,32 l 32,0 l0-32 l 32,0 l0-32 l 32,0 L 224,224 z M 352,160l-96,0
|
||||
l0,32 l 96,0 L 352,160 z" />
|
||||
<glyph unicode="" d="M 480-32L 32-32 c-17.664,0-32,14.336-32,32L0,448 c0,17.664, 14.336,32, 32,32l 384,0 l 96-96l0-384
|
||||
C 512-17.664, 497.664-32, 480-32z M 128,48c0-8.848, 7.168-16, 16-16l 224,0 c 8.848,0, 16,7.152, 16,16l0,128 c0,8.848-7.152,16-16,16L 144,192 c-8.832,0-16-7.152-16-16L 128,48 z
|
||||
M 352,400c0,8.848-7.152,16-16,16s-16-7.152-16-16l0-48 c0-8.848, 7.152-16, 16-16s 16,7.152, 16,16L 352,400 z M 448,368l-48,48l-16,0 l0-112 c0-8.848-7.152-16-16-16L 144,288
|
||||
c-8.832,0-16,7.152-16,16L 128,416 L 80,416 C 71.168,416, 64,408.848, 64,400l0-352 c0-8.848, 7.168-16, 16-16l 16,0 L 96,208 c0,8.848, 7.168,16, 16,16l 288,0 c 8.848,0, 16-7.152, 16-16l0-176 l 16,0
|
||||
c 8.848,0, 16,7.152, 16,16L 448,368 z" />
|
||||
<glyph unicode="" d="M 379.392,110.131c-63.104,22.989-83.277,42.394-83.277,83.942c0,24.934, 19.277,16.794, 27.725,62.464c 3.507,18.944, 20.531,0.307, 23.808,43.546
|
||||
c0,17.229-9.293,21.53-9.293,21.53s 4.736,25.523, 6.579,45.133C 347.187,391.219, 330.803,454.4, 243.2,454.4C 155.622,454.4, 139.187,391.219, 141.491,366.746
|
||||
C 143.334,347.136, 148.070,321.613, 148.070,321.613S 138.752,317.338, 138.752,300.083c 3.251-43.238, 20.275-24.602, 23.782-43.546
|
||||
c 8.474-45.67, 27.75-37.53, 27.75-62.464c0-41.549-20.173-60.954-83.277-83.942c-63.334-23.040-104.448-46.566-104.448-62.618c0-16.026,0-53.888,0-53.888
|
||||
l 240.64,0 l 240.64,0 c0,0,0,37.862,0,53.888C 483.84,63.539, 442.701,87.066, 379.392,110.131z" />
|
||||
<glyph unicode="" d="M 464,416L 48,416 C 21.488,416,0,394.512,0,368l0-288 c0-26.496, 21.488-48, 48-48l 416,0 c 26.512,0, 48,21.504, 48,48L 512,368 C 512,394.512, 490.512,416, 464,416z M 43.856,64.16
|
||||
L 32.16,75.872l 131.984,131.968l 11.696-11.712L 43.856,64.16z M 468.144,64.16l-131.984,131.968l 11.696,11.712l 131.984-131.968L 468.144,64.16z M 272,170.8
|
||||
L 272,160 l-32,0 l0,10.8 L 32.048,363.6l 20.352,20.352L 256,195.184L 459.6,383.952l 20.352-20.352L 272,170.8z" />
|
||||
<glyph unicode="" d="M 316.851,110.131C 253.082,133.12, 232.704,152.525, 232.704,194.074c0,24.934, 19.482,16.794, 28.032,62.464c 3.558,18.944, 20.762,0.307, 24.013,43.546
|
||||
c0,17.229-9.37,21.53-9.37,21.53s 4.787,25.523, 6.63,45.133C 284.314,391.219, 267.725,454.4, 179.2,454.4S 74.086,391.219, 76.39,366.746
|
||||
c 1.869-19.635, 6.656-45.133, 6.656-45.133S 73.651,317.338, 73.651,300.083c 3.302-43.238, 20.506-24.602, 24.013-43.546
|
||||
c 8.576-45.67, 28.058-37.53, 28.058-62.464c0-41.549-20.403-60.954-84.173-83.942c-7.68-2.739-25.984-7.040-41.549-13.773L0-6.4 l 409.6,0
|
||||
c0,0,0,37.862,0,53.888S 380.851,87.066, 316.851,110.131z M 435.2,249.6L 435.2,326.4 l-51.2,0 l0-76.8 l-76.8,0 l0-51.2 l 76.8,0 l0-76.8 l 51.2,0 l0,76.8 l 76.8,0 L 512,249.6 L 435.2,249.6 z" />
|
||||
<glyph unicode="" d="M 256,384C 144.341,384, 47.559,318.979,0,224c 47.559-94.979, 144.341-160, 256-160c 111.657,0, 208.439,65.021, 256,160
|
||||
C 464.442,318.979, 367.657,384, 256,384z M 382.225,299.148c 30.081-19.187, 55.571-44.887, 74.717-75.148
|
||||
c-19.146-30.261-44.637-55.961-74.718-75.149C 344.427,124.743, 300.779,112, 256,112c-44.78,0-88.428,12.743-126.225,36.852
|
||||
C 99.695,168.038, 74.205,193.738, 55.058,224c 19.146,30.262, 44.637,55.962, 74.717,75.148c 1.959,1.25, 3.938,2.461, 5.929,3.65
|
||||
C 130.725,289.134, 128,274.387, 128,259c0-70.692, 57.308-128, 128-128s 128,57.308, 128,128c0,15.387-2.725,30.134-7.704,43.799
|
||||
C 378.286,301.61, 380.265,300.398, 382.225,299.148z M 256,275c0-26.51-21.49-48-48-48s-48,21.49-48,48s 21.49,48, 48,48
|
||||
S 256,301.51, 256,275z" />
|
||||
<glyph unicode="" d="M 194.586,136.499c-6.861-6.938-6.861-18.15,0-25.062c 6.835-6.938, 17.946-6.938, 24.806,0l 98.048,100.019
|
||||
c 6.861,6.938, 6.861,18.15,0,25.062l-98.048,100.045c-6.861,6.938-17.946,6.938-24.806,0S 187.725,318.438, 194.56,311.526L 274.97,224L 194.586,136.499z" />
|
||||
<glyph unicode="" d="M 343.501,285.414c 6.938,6.861, 18.15,6.861, 25.062,0c 6.938-6.861, 6.938-17.946,0-24.806l-100.019-98.048
|
||||
c-6.938-6.861-18.15-6.861-25.062,0l-100.045,98.048c-6.912,6.861-6.912,17.946,0,24.806c 6.938,6.861, 18.125,6.861, 25.062,0L 256,205.030
|
||||
L 343.501,285.414z" />
|
||||
<glyph unicode="" d="M 287.935-32L 192-32 L 192,224 l-64,0 l0,88.225 l 64,0.029l-0.104,51.976C 191.896,436.206, 211.413,480, 296.195,480l 70.588,0 l0-88.242 l-44.115,0
|
||||
c-33.016,0-34.603-12.328-34.603-35.342l-0.131-44.162l 79.345,0 l-9.352-88.225L 288,224L 287.935-32z" />
|
||||
<glyph unicode="" d="M 96,224c0,6.090, 0.352,12.098, 1.015,18.011l-92.49,30.052C 1.567,256.493,0,240.431,0,224
|
||||
c0-73.615, 31.083-139.961, 80.827-186.662l 57.142,78.648C 111.907,144.449, 96,182.365, 96,224zM 416,224c0-41.634-15.906-79.551-41.969-108.014l 57.142-78.648C 480.917,84.039, 512,150.385, 512,224
|
||||
c0,16.431-1.566,32.493-4.524,48.063l-92.49-30.052C 415.648,236.097, 416,230.090, 416,224zM 288,380.796c 45.967-9.331, 84.772-38.371, 107.225-77.913l 92.489,30.051C 451.116,410.644, 376.594,466.964, 288,478.012L 288,380.796 zM 116.775,302.884c 22.453,39.542, 61.258,68.582, 107.225,77.913L 224,478.012 C 135.406,466.964, 60.885,410.644, 24.287,332.935
|
||||
L 116.775,302.884zM 322.278,78.336C 302.083,69.132, 279.642,64, 256,64s-46.083,5.132-66.277,14.335l-57.146-78.655
|
||||
C 169.18-20.503, 211.245-32, 256-32s 86.82,11.497, 123.424,31.68L 322.278,78.336z" />
|
||||
<glyph unicode="" d="M 192,480L0,224L 192,224L 64-32L 512,288L 256,288L 448,480 z" />
|
||||
<glyph unicode="" d="M 480,384l-9,0 l-430,0 l-9,0 q-13,0 -22.5,9.25t-9.5,22.5t 9.25,22.75t 22.75,9.5l 160,0 q0,13 9.25,22.5t 22.75,9.5l 64,0 q 13.5,0 22.75-9.5t 9.25-22.5l 160,0 q 13,0 22.5-9.5t 9.5-22.75t-9.5-22.5t-22.5-9.25zM 480,32q0-26.5 -18.75-45.25t-45.25-18.75l-320,0 q-26.5,0 -45.25,18.75t-18.75,45.25l0,320 l 448,0 l0-320 zM 160,256
|
||||
q0,13 -9.5,22.5t-22.75,9.5t-22.5-9.5t-9.25-22.5l0-192 q0-13.5 9.25-22.75t 22.5-9.25t 22.75,9.25t 9.5,22.75l0,192 zM 288,256q0,13 -9.5,22.5t-22.75,9.5t-22.5-9.5t-9.25-22.5l0-192 q0-13.5 9.25-22.75t 22.5-9.25t 22.75,9.25t 9.5,22.75l0,192 zM 416,256q0,13 -9.5,22.5t-22.75,9.5t-22.5-9.5t-9.25-22.5l0-192
|
||||
q0-13.5 9.25-22.75t 22.5-9.25t 22.75,9.25t 9.5,22.75l0,192 z" />
|
||||
<glyph unicode="" d="M 448-32l-384,0 q-26.5,0 -45.25,18.75t-18.75,45.25l0,48 q0,13 9.25,22.5t 22.5,9.5t 22.75-9.5t 9.5-22.5l0-16 q0-13.5 9.25-22.75t 22.75-9.25l 320,0 q 13,0 22.5,9.25t 9.5,22.75l0,16 q0,13 9.25,22.5t 22.5,9.5t 22.75-9.5t 9.5-22.5l0-48 q0-26.5 -18.75-45.25t-45.25-18.75zM 272.5,103q-7-7 -16.5-7t-16.5,7l-170.5,172.5
|
||||
q-6,6.5 -4.25,9.5t 9.25,3l 118,0 l0,160 q0,13.5 9.25,22.75t 22.75,9.25l 64,0 q 13.5,0 22.75-9.25t 9.25-22.75l0-160 l 117.5,0 q 7.5,0 9.5-3t-4-9.5z" />
|
||||
<glyph unicode="" d="M 448-32l-384,0 q-26.5,0 -45.25,18.75t-18.75,45.25l0,48 q0,13 9.5,22.5t 22.5,9.5t 22.5-9.5t 9.5-22.5l0-16 q0-13.5 9.25-22.75t 22.75-9.25l 320,0 q 13.5,0 22.75,9.25t 9.25,22.75l0,16 q0,13 9.5,22.5t 22.5,9.5t 22.5-9.5t 9.5-22.5l0-48 q0-26.5 -18.75-45.25t-45.25-18.75zM 437.5,288l-117.5,0 l0-160 q0-13.5 -9.25-22.75t-22.75-9.25
|
||||
l-64,0 q-13.5,0 -22.75,9.25t-9.25,22.75l0,160 l-118,0 q-7.5,0 -9.25,3t 4.25,9.5l 170.5,172.5q 7,7 16.5,7t 16.5-7l 170.5-172.5q 6-6.5 4-9.5t-9.5-3z" />
|
||||
<glyph unicode="" d="M 480,192l-160,0 q0-13 -9.5-22.5t-22.5-9.5l-64,0 q-13.5,0 -22.75,9.5t-9.25,22.5l-160,0 q-13.5,0 -22.75,9.5t-9.25,22.75t 9.25,22.5t 22.75,9.25l 160,0 q0,13.5 9.25,22.75t 22.75,9.25l 64,0 q 13.5,0 22.75-9.25t 9.25-22.75l 160,0 q 13.5,0 22.75-9.25t 9.25-22.5t-9.25-22.75t-22.75-9.5zM 288,256l-64,0 l0-64 l 64,0 l0,64
|
||||
zM 480,384l-32,0 q0-13 -9.5-22.5t-22.5-9.5l-64,0 q-13.5,0 -22.75,9.5t-9.25,22.5l-288,0 q-13.5,0 -22.75,9.5t-9.25,22.75t 9.25,22.5t 22.75,9.25l 288,0 q0,13.5 9.25,22.75t 22.75,9.25l 64,0 q 13.5,0 22.75-9.25t 9.25-22.75l 32,0 q 13.5,0 22.75-9.25t 9.25-22.5t-9.25-22.75t-22.75-9.5zM 416,448l-64,0 l0-64 l 64,0 l0,64 z
|
||||
M 32,64l 32,0 q0,13.5 9.25,22.75t 22.75,9.25l 64,0 q 13,0 22.5-9.25t 9.5-22.75l 288,0 q 13.5,0 22.75-9.25t 9.25-22.5t-9.5-22.75t-22.5-9.5l-288,0 q0-13.5 -9.5-22.75t-22.5-9.25l-64,0 q-13.5,0 -22.75,9.5t-9.25,22.5l-32,0 q-13.5,0 -22.75,9.5t-9.25,22.75t 9.25,22.5t 22.75,9.25zM 96,0l 64,0 l0,64 l-64,0 l0-64 z" />
|
||||
<glyph unicode="" d="M 512,192l0,32 l-96.645,0 c-2.931,36.343-15.893,69.513-35.835,96.125l 80.972,0 l 35.030,140.12l-31.045,7.761l-28.97-115.88l-87.34,0
|
||||
c-0.446,0.347-0.898,0.687-1.349,1.028c 3.355,9.751, 5.181,20.211, 5.181,31.097C 352,437.131, 309.020,480, 256,480s-96-42.869-96-95.75
|
||||
c0-10.886, 1.825-21.346, 5.181-31.097c-0.45-0.342-0.902-0.681-1.349-1.028l-87.34,0 l-28.97,115.88l-31.045-7.761l 35.030-140.12l 80.972,0
|
||||
C 112.537,293.513, 99.576,260.343, 96.645,224L0,224 l0-32 l 96.685,0 c 1.901-22.832, 7.754-44.406, 16.819-63.875L 51.508,128.125 l-35.030-140.119
|
||||
l 31.045-7.762l 28.97,115.881l 56.177,0 C 162.016,57.109, 206.368,32.25, 256,32.25s 93.983,24.859, 123.331,63.875l 56.177,0 l 28.97-115.881
|
||||
l 31.045,7.762l-35.030,140.119l-61.996,0 c 9.065,19.469, 14.918,41.043, 16.818,63.875L 512,192 z" />
|
||||
<glyph unicode="" d="M 267.313,468.686C 261.091,474.908, 248.8,480, 240,480L 48,480 c-8.8,0-16-7.2-16-16l0-480 c0-8.8, 7.2-16, 16-16l 384,0 c 8.8,0, 16,7.2, 16,16L 448,272
|
||||
c0,8.8-5.091,21.091-11.313,27.313L 267.313,468.686z M 416,0L 64,0 L 64,448 l 175.579,0 c 1.458-0.24, 4.204-1.377, 5.405-2.239l 168.778-168.777
|
||||
c 0.861-1.201, 1.998-3.947, 2.238-5.405L 416,0 zM 432,480l-96,0 c-8.8,0-10.909-5.091-4.687-11.313l 105.373-105.373C 442.909,357.091, 448,359.2, 448,368L 448,464 C 448,472.8, 440.8,480, 432,480
|
||||
z" />
|
||||
<glyph unicode="" d="M 345.11,244.159c-30.334,14.326-68.986,17.21-97.417-3.024c 34.57,3.302, 72.479-2.419, 97.553-28.562
|
||||
c 24,27.54, 62.057,32.703, 96.479,29.866C 412.981,261.511, 375.115,258.951, 345.11,244.159zM 332.824,177.125c-34.189,0.789-67.217-11.586-95.55-30.052c-53.588,22.794-121.368,18.562-167.001-19.491
|
||||
c 13.165,0.467, 26.003,3.723, 39.028,5.396c 47.591,4.744, 98.294-7.071, 134.256-39.912c 14.886,21.771, 35.822,39.121, 59.826,49.961
|
||||
c 31.537,15.26, 67.080,16.842, 101.41,17.26C 383.949,174.611, 357.485,177.264, 332.824,177.125zM 451.716,380.285l-71.432,71.431C 364.728,467.272, 334,480, 312,480L 72,480 C 50,480, 32,462, 32,440l0-432 c0-22, 18-40, 40-40l 368,0
|
||||
c 22,0, 40,18, 40,40L 480,312 C 480,334, 467.272,364.729, 451.716,380.285z M 429.089,357.657c 1.565-1.565, 3.125-3.487, 4.64-5.657L 352,352 L 352,433.728
|
||||
c 2.17-1.515, 4.092-3.075, 5.657-4.64L 429.089,357.657z M 448,8c0-4.336-3.664-8-8-8L 72,0 c-4.336,0-8,3.664-8,8L 64,440
|
||||
c0,4.336, 3.664,8, 8,8l 240,0 c 2.416,0, 5.127-0.305, 8-0.852L 320,320 l 127.148,0 c 0.547-2.873, 0.852-5.583, 0.852-8L 448,8 z" />
|
||||
<glyph unicode="" d="M 229.665,150.084L 144.338,2.25L 426.665,2.25L 512,150.084 zM 487.806,192L 341.339,445.75L 170.665,445.75L 317.143,192 zM 146.418,403.743L0,150.084L 85.338,2.25L 231.754,255.912 z" />
|
||||
<glyph unicode="" d="M 480-32l-384,0 q-13,0 -22.5,9.25t-9.5,22.75l0,180 l 139.5-139q 9-9.5 23-8.5l 61.5,0 q 13,0 22.5,9.25t 9.5,22.75l0,63.5 q0,11.5 -9.5,20.5l-246.5,246.5l0,52.5 q0,13.5 9.5,22.75t 22.5,9.25l 224,0 l0-176 q0-6.5 4.5-11.25t 11.5-4.75l 175.5,0 l0-0.5 l0-287 q0-13.5 -9.25-22.75t-22.25-9.25zM 352,480q 13,0 22-9l 128-128.5
|
||||
q 9.5-9.5 9.5-23l-159.5,0 l0,160.5 zM 39.5,258l-34,33.5q-5.5,6 -5.5,14t 5.5,13.5l 27.5,27.5q 5.5,5.5 13.75,5.5t 13.75-5.5l 33.5-33.5zM 288,112.5l0-32 q0-7 -4.75-11.5t-11.25-4.5l-32,0 q-7,0 -13,5.5l-162,162l 55,55l 162-162q 6-6 6-12.5z" />
|
||||
<glyph unicode="" d="M 480,0l-32,0 l0,128 l 32,0 q 13.5,0 22.75-9.25t 9.25-22.75l0-64 q0-13.5 -9.25-22.75t-22.75-9.25zM 480,160l-32,0 l0,128 l 32,0 q 13.5,0 22.75-9.25t 9.25-22.75l0-64 q0-13.5 -9.25-22.75t-22.75-9.25zM 480,320l-32,0 l0,128 l 32,0 q 13.5,0 22.75-9.25t 9.25-22.75l0-64 q0-13.5 -9.25-22.75t-22.75-9.25z
|
||||
M 416,0q0-13 -9.25-22.5t-22.75-9.5l-352,0 q-13,0 -22.5,9.5t-9.5,22.5l0,448 q0,13.5 9.5,22.75t 22.5,9.25l 352,0 q 13.5,0 22.75-9.25t 9.25-22.75l0-448 zM 240,173l0,9 q 48,19.5 48,106q0,31.5 -22.25,47.75t-57.5,16.25t-57.75-16.25t-22.5-47.75q0-84 48-105.5l0-9.5 q-34.5-6 -57-22.5t-23-37.5q0-6 10.75-9.75
|
||||
t 31.5-5.25t 34.25-1.75t 35.5-0.25t 35.5,0.25t 34.25,1.75t 31.5,5.25t 10.75,9.75q-0.5,21 -23,37.5t-57,22.5z" />
|
||||
<glyph unicode="" d="M 448,416l0-416 L 112,0 c-26.511,0-48,21.49-48,48c0,26.509, 21.489,48, 48,48l 304,0 L 416,480 L 96,480 C 60.801,480, 32,451.2, 32,416l0-384
|
||||
c0-35.2, 28.801-64, 64-64l 384,0 L 480,416 L 448,416 zM 128,64L 416,64L 416,32L 128,32z" />
|
||||
<glyph unicode="" d="M 256,480 C 116.626,480 3.271,368.619 0.076,230.013 C 3.036,350.945 94.992,448 208,448 C 322.875,448 416,347.712 416,224 C 416,197.49 437.49,176 464,176 C 490.51,176 512,197.49 512,224 C 512,365.385 397.385,480 256,480 ZM 256-32 C 395.374-32 508.729,79.381 511.924,217.987 C 508.964,97.055 417.008,0 304,0 C 189.125,0 96,100.288 96,224 C 96,250.51 74.51,272 48,272 C 21.49,272 0,250.51 0,224 C 0,82.615 114.615-32 256-32 Z" />
|
||||
<glyph unicode="" d="M 242.286-4.571q0,4.571 -4.571,4.571q-16.857,0 -29,12.143t-12.143,29q0,4.571 -4.571,4.571t-4.571-4.571q0-20.857 14.714-35.571t 35.571-14.714q 4.571,0 4.571,4.571zM 52.286,77.714l 370.857,0 q-46.857,51.714 -70.429,117.571t-23.571,138.429q0,73.143 -91.429,73.143t-91.429-73.143q0-72.571 -23.571-138.429t-70.429-117.571zM 475.429,77.714q0-14.857 -10.857-25.714t-25.714-10.857 l-128,0 q0-30.286 -21.429-51.714t-51.714-21.429t-51.714,21.429t-21.429,51.714l-128,0 q-14.857,0 -25.714,10.857t-10.857,25.714q 54.286,46 82,113.571t 27.714,142.429q0,47.143 27.429,74.857t 75.429,33.429q-2.286,5.143 -2.286,10.571q0,11.429 8,19.429t 19.429,8t 19.429-8t 8-19.429q0-5.429 -2.286-10.571q 48-5.714 75.429-33.429t 27.429-74.857q0-74.857 27.714-142.429t 82-113.571z" horiz-adv-x="475.429" />
|
||||
<glyph unicode="" d="M 488.791,382.769c-16.992,4.854-34.705-4.985-39.56-21.978L 446.72,352L 148.249,352 l-4.496,35.969
|
||||
C 141.751,403.983, 128.138,416, 112,416L 32,416 C 14.327,416,0,401.673,0,384s 14.327-32, 32-32l 51.751,0 l 28.496-227.969
|
||||
C 114.249,108.018, 127.862,96, 144,96l 272,0 c 14.287,0, 26.844,9.472, 30.769,23.209l 64,224
|
||||
C 515.624,360.202, 505.784,377.914, 488.791,382.769z M 256,224l0,32 l 63.998,0 l0-32 L 256,224 z M 319.998,192l0-32 L 256,160 l0,32 L 319.998,192 z M 256,288l0,32
|
||||
l 63.998,0 l0-32 L 256,288 z M 152.249,320L 224,320 l0-32 l-67.751,0 L 152.249,320z M 160.249,256L 224,256 l0-32 l-59.751,0 L 160.249,256z M 168.249,192L 224,192 l0-32 l-51.751,0
|
||||
L 168.249,192z M 391.862,160l-39.864,0 l0,32 l 49.007,0 L 391.862,160z M 410.148,224l-58.15,0 l0,32 l 67.293,0 L 410.148,224z M 428.434,288l-76.436,0
|
||||
l0,32 l 85.579,0 L 428.434,288zM 128,16A48,48 2700 1 1 224,16A48,48 2700 1 1 128,16zM 320,16A48,48 2700 1 1 416,16A48,48 2700 1 1 320,16z" />
|
||||
<glyph unicode="" d="M 512,175.953l0,96.094 l-73.387,12.231c-2.979,9.066-6.611,17.834-10.847,26.25l 43.227,60.517l-67.948,67.949l-60.413-43.152
|
||||
c-8.455,4.277-17.269,7.944-26.384,10.951L 304.047,480l-96.094,0 l-12.201-73.208c-9.115-3.007-17.929-6.674-26.383-10.951
|
||||
l-60.414,43.152l-67.949-67.949l 43.227-60.518c-4.235-8.415-7.867-17.183-10.846-26.249L0,272.047l0-96.094 l 73.559-12.26
|
||||
c 2.98-8.984, 6.605-17.674, 10.821-26.015l-43.374-60.724l 67.949-67.948l 60.827,43.447c 8.301-4.175, 16.945-7.764, 25.882-10.717
|
||||
L 207.953-32l 96.094,0 l 12.289,73.737c 8.937,2.953, 17.581,6.542, 25.883,10.716l 60.826-43.446l 67.948,67.948l-43.372,60.723
|
||||
c 4.216,8.341, 7.839,17.031, 10.82,26.016L 512,175.953z M 256,160c-35.346,0-64,28.653-64,64c0,35.346, 28.654,64, 64,64
|
||||
c 35.347,0, 64-28.654, 64-64C 320,188.653, 291.347,160, 256,160z" />
|
||||
<glyph unicode="" d="M 448,0l-384,0 q-26.5,0 -45.25,18.75t-18.75,45.25l0,256 q0,13 9.25,22.5t 22.75,9.5l 240,0 l 23,42.5q 3.5,9 14,15.25t 22,6.25l 120,0 q 12,0 22.5-6.25t 14-15.25l 24.5-42.5l0-288 q0-26.5 -18.75-45.25t-45.25-18.75zM 448,320q0,13 -9.5,22.5t-22.5,9.5l-64,0 q-13.5,0 -22.75-9.5t-9.25-22.75t-14-22.5t-34-9.25l-192,0
|
||||
q-6.5,0 -11.25-4.75t-4.75-11.25l0-192 q0-6.5 4.75-11.25t 11.25-4.75l 352,0 q 6.5,0 11.25,4.75t 4.75,11.25l0,240 zM 23,426q 3.5,9.5 14,15.75t 22,6.25l 120,0 q 12,0 22.5-6.25t 14.5-15.75l 24-42l-240,0 z" />
|
||||
<glyph unicode="" d="M 512.5,248.5l-101-112l 14.5-148.5q-1.5-10 -9.5-15.75t-18-3.75l-139.5,59.5l-139.5-59.5q-10-2 -18,4t-9.5,15.5l 14.5,148.5l-101,112q-4.5,8.5 -1.25,18t 11.75,14l 149,32l 77,129q 7,7 17,7t 17-7l 77-129l 149-32q 8.5-4.5 11.75-14t-1.25-18z" />
|
||||
<glyph unicode="" d="M 512.5,248.5l-101-112l 14.5-148.5q-1.5-10 -9.5-15.75t-18-3.75l-139.5,59.5l-139.5-59.5q-10-2 -18,3.75t-9.5,15.75l 14.5,148.5l-101,112q-4.5,8.5 -1.25,18t 11.75,14l 149,32l 77,129q 7,7 17,7t 17-7l 77-129l 149-32q 8.5-4.5 11.75-14t-1.25-18zM 425.5,251l-102,22.5l-53,90q-5,5 -11.75,5
|
||||
t-11.75-5l-53-90l-102.5-22.5q-6-3.5 -8-10t 1-12.5l 70.5-80l-8-100q 1-7.5 5.25-12.5t 10.25-4l 96,42l 96-42q 6.5-1 10.75,4t 5.25,12.5l-8,100.5l 70.5,79.5q 3,6 0.75,12.5t-8.25,10z" />
|
||||
<glyph unicode="" d="M 402.5,118l-146.5-150l-147,150q-59.5,61 -84.25,115.5t-24.75,118.5q0,53 37.5,90.5t 90.5,37.5t 90.5-37.5t 37.5-90.5q0,53 37.5,90.5t 90.5,37.5t 90.5-37.5t 37.5-90.5q0-63.5 -24.75-118.25t-84.75-115.75z" />
|
||||
<glyph unicode="" d="M 402.5,118l-146.5-150l-147,150q-59.5,61 -84.25,115.5t-24.75,118.5q0,53 37.5,90.5t 90.5,37.5t 90.5-37.5t 37.5-90.5q0,53 37.5,90.5t 90.5,37.5t 90.5-37.5t 37.5-90.5q0-63.5 -24.75-118.25t-84.75-115.75zM 448,352q0,26.5 -18.75,45.25t-45.25,18.75t-45.25-18.75t-18.75-45.25l0-0.5 q0-8.5 -20-20t-44-11.5
|
||||
q-25,0 -44.5,11t-19.5,21l0,0 q0,26.5 -18.75,45.25t-45.25,18.75t-45.25-18.75t-18.75-45.25l0-0.5 q0-53 18-95.25t 63.5-95.25l 110.5-113l 110,113q 46,53.5 64,95.5t 18,95.5l0,0 z" />
|
||||
<glyph unicode="" d="M 480-32l-191.5,0 q-13.5,0 -22.75,9.25t-9.25,22.75l 67.5,67.5l-74.5,72.5q-9,9.5 -9,22.75t 9,22.75l 46,45.5q 9,9 22.5,9t 23-9l 73.5-72.5l 65.5,65q 13.5,0 22.75-9.25t 9.25-22.75l0-191.5 q0-13.5 -9.25-22.75t-22.75-9.25zM 217,217q-9.5-9.5 -22.75-9.5t-22.75,9.5l-74,72.5l-65.5-65.5
|
||||
q-13,0 -22.5,9.5t-9.5,22.5l0,192 q0,13.5 9.5,22.75t 22.5,9.25l 192,0 q 13.5,0 22.75-9.25t 9.25-22.75l-67.5-67.5l 74.5-73q 9.5-9 9.5-22.5t-9.5-22.5z" />
|
||||
<glyph unicode="" d="M 502.5,69.5q 9.5-9.5 9.5-23t-9.5-23l-45.5-46q-9.5-9.5 -22.75-9.5t-22.75,9.5l-57,57l-66.5-66.5q-13.5,0 -22.75,9.5t-9.25,22.5l0,192.5 q0,13 9.25,22.5t 22.75,9.5l 192,0 q 13,0 22.5-9.5t 9.5-22.5l-66.5-66.5zM 224,224.5l-191.5,0 q-13.5,0 -22.75,9.25t-9.25,22.75l 66,66l-57,56.5q-9.5,9.5 -9.5,23t 9.5,23
|
||||
l 45.5,46q 9.5,9.5 23,9.5t 23-9.5l 57-57l 66,66q 13.5,0 22.75-9.25t 9.25-22.75l0-191.5 q0-13.5 -9.5-22.75t-22.5-9.25z" />
|
||||
<glyph unicode="" d="M 448,96l-256,0 q-26.5,0 -45.25,18.75t-18.75,45.25l0,256 q0,26.5 18.75,45.25t 45.25,18.75l 256,0 q 26.5,0 45.25-18.75t 18.75-45.25l0-256 q0-26.5 -18.75-45.25t-45.25-18.75zM 448,384q0,13.5 -9.25,22.75t-22.75,9.25l-192,0 q-13.5,0 -22.75-9.25t-9.25-22.5t 9.25-22.75t 22.75-9.5l 116,0 l-139.5-139.5
|
||||
q-9-9 -9-21.75t 9-21.75t 21.75-9t 21.75,9l 140,140l0-117 q0-13.5 9.5-22.75t 22.75-9.25t 22.5,9.25t 9.25,22.75l0,192 zM 416-0.25q0-13.25 -9.25-22.5t-22.75-9.25l-320,0 q-26.5,0 -45.25,18.75t-18.75,45.25l0,320 q0,13.5 9.25,22.75t 22.5,9.25t 22.75-9.25t 9.5-22.75l0-288 q0-13.5 9.25-22.75
|
||||
t 22.75-9.25l 288,0 q 13,0 22.5-9.5t 9.5-22.75z" />
|
||||
<glyph unicode="" d="M 438.857,406.857l0-128 q0-7.429 -5.429-12.857t-12.857-5.429l-128,0 q-12,0 -16.857,11.429q-4.857,11.143 4,19.714l 39.429,39.429q-42.286,39.143 -99.714,39.143q-29.714,0 -56.714-11.571t-46.714-31.286t-31.286-46.714t-11.571-56.714t 11.571-56.714t 31.286-46.714t 46.714-31.286t 56.714-11.571q 48.286,0 86.857,28.429t 52.857,74.714q 2,6.571 8.571,6.571l 56.857,0 q 4.571,0 7.143-3.429q 2.857-3.714 2-7.714q-11.143-50 -42.143-89.143t-76-60.857t-96.143-21.714q-44.571,0 -85.143,17.429t-70,46.857t-46.857,70t-17.429,85.143t 17.429,85.143t 46.857,70t 70,46.857t 85.143,17.429q 42,0 81.286-15.857t 69.857-44.714l 37.143,36.857q 8.286,8.857 20,4q 11.143-4.857 11.143-16.857z" horiz-adv-x="438.857" />
|
||||
<glyph unicode="" d="M 438.857,96l0-36.571 q0-7.429 -5.429-12.857t-12.857-5.429l-402.286,0 q-7.429,0 -12.857,5.429t-5.429,12.857l0,36.571 q0,7.429 5.429,12.857t 12.857,5.429l 402.286,0 q 7.429,0 12.857-5.429t 5.429-12.857zM 438.857,242.286l0-36.571 q0-7.429 -5.429-12.857t-12.857-5.429l-402.286,0 q-7.429,0 -12.857,5.429t-5.429,12.857l0,36.571 q0,7.429 5.429,12.857t 12.857,5.429l 402.286,0 q 7.429,0 12.857-5.429t 5.429-12.857zM 438.857,388.571l0-36.571 q0-7.429 -5.429-12.857 t-12.857-5.429l-402.286,0 q-7.429,0 -12.857,5.429t-5.429,12.857l0,36.571 q0,7.429 5.429,12.857t 12.857,5.429l 402.286,0 q 7.429,0 12.857-5.429t 5.429-12.857z" horiz-adv-x="438.857" />
|
||||
<glyph unicode="" d="M 512,96q0-53 -37.5-90.5t-90.5-37.5q-51.5,0 -88.5,35.5q-20.5-3.5 -39.5-3.5q-45.5,0 -87,17.75t-71.5,47.75t-47.75,71.5t-17.75,87q0,18.5 3.5,39.5q-35.5,37 -35.5,88.5q0,53 37.5,90.5t 90.5,37.5q 51.5,0 88.5-35.5q 20.5,3.5 39.5,3.5q 45.5,0 87-17.75t 71.5-47.75t 47.75-71.5t 17.75-87q0-19 -3.5-39.5q 35.5-37 35.5-88.5
|
||||
zM 256,320q 26.5,0 45.25-9.25t 18.75-22.5t 9.5-22.75t 22.75-9.5t 22.5,9.5t 9.25,22.5q0,40 -37.5,68t-90.5,28t-90.5-28t-37.5-68t 37.5-68t 90.5-28q 26.5,0 45.25-9.25t 18.75-22.75t-18.75-22.75t-45.25-9.25t-45.25,9.5t-18.75,22.75t-9.25,22.5t-22.5,9.25t-22.75-9.25t-9.5-22.75q0-40 37.5-68t 90.5-28
|
||||
t 90.5,28t 37.5,68t-37.5,68t-90.5,28q-26.5,0 -45.25,9.5t-18.75,22.75t 18.75,22.5t 45.25,9.25z" />
|
||||
<glyph unicode="" d="M 156.39,456.909L 10.24,365.875l 100.122-83.942L 256,376.525L 156.39,456.909z M 344.371,70.554c-2.611,0-5.197,0.896-7.296,2.662L 256,140.442
|
||||
l-81.075-67.251c-2.099-1.741-4.71-2.662-7.296-2.662c-2.176,0-4.352,0.589-6.246,1.843l-60.058,39.296l0-23.194 L 256-8.909l 154.675,97.408
|
||||
l0,23.194 l-60.058-39.296C 348.723,71.142, 346.547,70.554, 344.371,70.554z M 501.76,365.875l-146.15,91.034L 256,376.525l 145.613-94.566L 501.76,365.875z
|
||||
M 256,190.95l 90.291-74.957l 144.435,94.413l-89.088,71.526L 256,190.95z M 165.709,115.994L 256,190.95L 110.387,281.958l-89.088-71.552L 165.709,115.994z" />
|
||||
<glyph unicode=" " horiz-adv-x="256" />
|
||||
</font></defs></svg>
|
||||
|
Before Width: | Height: | Size: 49 KiB |
Binary file not shown.
Binary file not shown.
BIN
rainloop/v/0.0.0/static/css/fonts/rainloop.eot
Normal file
BIN
rainloop/v/0.0.0/static/css/fonts/rainloop.eot
Normal file
Binary file not shown.
102
rainloop/v/0.0.0/static/css/fonts/rainloop.svg
Normal file
102
rainloop/v/0.0.0/static/css/fonts/rainloop.svg
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Generated by Fontastic.me</metadata>
|
||||
<defs>
|
||||
<font id="rainloop" horiz-adv-x="512">
|
||||
<font-face font-family="rainloop" units-per-em="512" ascent="480" descent="-32"/>
|
||||
<missing-glyph horiz-adv-x="512" />
|
||||
|
||||
<glyph unicode="" d="m416 351c5 0 10 4 10 10l0 30c0 6-5 10-10 10l-24 0l0 9c0 9-7 16-16 16l-274 0c-9 0-16-7-16-16l0-308c0-9 7-16 16-16l274 0c9 0 16 7 16 16l0 9l24 0c5 0 10 5 10 10l0 30c0 6-5 11-10 11l-24 0l0 29l24 0c5 0 10 4 10 10l0 30c0 6-5 11-10 11l-24 0l0 29l24 0c5 0 10 4 10 10l0 30c0 6-5 10-10 10l-24 0l0 30l24 0z m-97-165c0-6-4-11-9-11l-142 0c-5 0-10 5-10 11l0 44c0 4 3 8 6 10l56 26c-13 8-22 24-22 42c0 27 18 48 41 48c23 0 41-21 41-48c0-18-9-34-21-42l55-26c3-2 5-6 5-10l0-44z"/>
|
||||
<glyph unicode="" d="m184 54l24 145c1 3 0 5-2 7c0 0 0 0 0 0c-2 2-5 3-7 3l-145-25c-3 0-5-2-6-5c-1-3 0-7 2-9l28-28l-76-76c-3-3-3-8 0-11l53-53c3-3 8-3 11 0l76 76l28-28c3-2 6-3 9-2c3 1 5 3 5 6z m144 404l-24-145c-1-3 0-5 2-7c0 0 0 0 0 0c2-2 5-3 7-3l145 25c3 0 5 2 6 5c1 3 0 7-2 9l-28 28l76 76c3 3 3 8 0 11l-53 53c-3 3-8 3-11 0l-76-76l-28 28c-3 2-6 3-9 2c-3-1-5-3-5-6z m130-274l-145 24c-3 1-5 0-7-2c0 0 0 0 0 0c-2-2-3-5-3-7l25-145c0-3 2-5 5-6c3-1 7 0 9 2l28 28l76-76c3-3 8-3 11 0l53 53c3 3 3 8 0 11l-76 76l28 28c2 3 3 6 2 9c-1 3-3 5-6 5z m-404 144l145-24c3-1 5 0 7 2c0 0 0 0 0 0c2 2 3 5 3 7l-25 145c0 3-2 5-5 6c-3 1-6 0-9-2l-28-28l-76 76c-3 3-8 3-11 0l-53-53c-3-3-3-8 0-11l76-76l-28-28c-2-3-3-6-2-9c1-3 3-5 6-5z"/>
|
||||
<glyph unicode="" d="m24 154l-24-144c0-3 1-6 2-8c0 0 0 0 0 0c2-1 5-2 8-2l144 25c3 0 6 2 6 5c1 3 1 6-2 8l-28 29l76 75c3 4 3 9 0 12l-52 52c-3 4-9 4-12 0l-76-75l-28 28c-2 2-5 3-8 2c-3-1-5-4-6-7z m464 204l24 144c0 3-1 6-2 8c0 0 0 0 0 0c-2 1-5 2-8 2l-144-25c-3 0-6-2-6-5c-1-3-1-6 2-8l28-29l-76-75c-3-4-3-9 0-12l52-52c3-4 9-4 12 0l76 75l28-28c2-2 5-3 8-2c3 1 5 4 6 7z m-130-334l144-24c3 0 6 1 8 2c0 0 0 0 0 0c1 2 2 5 2 8l-25 144c0 3-2 6-5 6c-3 1-6 1-8-2l-29-28l-75 76c-4 3-9 3-12 0l-52-52c-4-3-4-9 0-12l75-76l-28-28c-2-2-3-5-2-8c1-3 4-5 7-6z m-204 464l-144 24c-3 0-6-1-8-2c0 0 0 0 0 0c-1-2-2-5-2-8l25-144c0-3 2-6 5-6c3-1 6-1 8 2l29 28l75-76c4-3 9-3 12 0l52 52c4 3 4 9 0 12l-75 76l28 28c2 2 3 5 2 8c-1 3-4 5-7 6z"/>
|
||||
<glyph unicode="" d="m90 357l0 0c0-6 5-12 11-12l0 0l310 0l0 0c6 0 11 6 11 12l0 0l0 54c0 6-5 11-11 11l-310 0c-6 0-11-5-11-11c0-1 0-1 0-1z m321-63l-310 0c-6 0-11-5-11-11c0 0 0-1 0-1l0-53l0 0c0-6 5-11 11-11l0 0l310 0l0 0c6 0 11 5 11 11l0 0l0 54c0 6-5 11-11 11z m0-127l-310 0c-6 0-11-6-11-12c0 0 0 0 0-1l0-53l0 0c0-6 5-11 11-11l0 0l310 0l0 0c6 0 11 5 11 11l0 0l0 54c0 6-5 12-11 12z"/>
|
||||
<glyph unicode="" d="m291 459c-91 0-164-74-164-164c0-31 8-60 23-85l-79-79l0 0c-8-8-14-20-14-33c0-25 21-45 46-45c12 0 24 5 32 14l0 0l82 81c22-11 47-17 74-17c90 0 164 73 164 164c0 90-74 164-164 164z m1-263c-57 0-103 45-103 102c0 56 46 102 103 102c56 0 102-46 102-102c0-57-46-102-102-102z"/>
|
||||
<glyph unicode="" d="m392 142c70-24 105-45 105-62c0 0 0-54 0-54c0 0-241 0-241 0c0 0-241 0-241 0c0 0 0 54 0 54c0 17 35 38 105 62c32 12 54 24 65 36c12 12 18 28 18 48c0 8-4 16-12 25c-7 10-12 22-16 38c-1 4-2 7-5 9c-2 2-4 3-7 4c-2 1-4 4-7 9c-2 5-4 12-4 22c0 5 0 10 2 13c2 4 3 6 5 6c0 0 2 2 2 2c-3 17-5 32-6 45c-2 19 5 38 21 58c15 20 42 29 80 29c38 0 65-9 81-29c16-20 22-39 20-58c0 0-6-45-6-45c6-2 9-10 9-21c0-10-2-17-4-22c-3-5-5-8-7-9c-3-1-5-2-7-4c-3-2-4-5-5-9c-3-17-8-29-16-38c-8-9-12-17-12-25c0-20 6-36 18-48c12-12 34-24 65-36"/>
|
||||
<glyph unicode="" d="m317 142c62-22 93-42 93-62c0 0 0-54 0-54c0 0-410 0-410 0c0 0 0 103 0 103c12 5 26 9 42 13c32 12 54 24 66 36c12 12 18 28 18 48c0 8-4 16-12 25c-8 9-13 21-16 38c0 4-4 8-11 13c-8 4-12 14-13 31c0 5 1 10 2 13c2 4 4 6 5 6c0 0 2 2 2 2c-3 17-5 32-6 45c-2 19 5 38 20 58c16 20 43 29 82 29c39 0 66-9 82-29c16-20 23-39 22-58c0 0-8-45-8-45c7-2 10-10 10-21c-1-10-3-17-5-22c-2-5-5-8-7-9c-2-1-5-2-7-4c-3-2-4-5-5-9c-3-16-9-28-17-38c-8-9-12-17-12-25c0-20 7-36 19-48c12-12 34-24 66-36m118 140c0 0 77 0 77 0c0 0 0-52 0-52c0 0-77 0-77 0c0 0 0-76 0-76c0 0-51 0-51 0c0 0 0 76 0 76c0 0-77 0-77 0c0 0 0 52 0 52c0 0 77 0 77 0c0 0 0 76 0 76c0 0 51 0 51 0c0 0 0-76 0-76"/>
|
||||
<glyph unicode="" d="m119 375c0 10-3 18-10 25c-6 6-14 10-24 10c-9 0-17-4-24-10c-6-7-10-15-10-25c0-9 4-17 10-24c7-6 15-10 24-10c10 0 18 4 24 10c7 7 10 15 10 24z m285-153c0-10-3-18-10-24l-131-131c-7-7-15-10-24-10c-9 0-17 3-24 10l-191 191c-6 6-12 15-17 27c-5 11-7 21-7 31l0 111c0 9 3 17 10 24c7 6 15 10 24 10l111 0c9 0 20-3 31-7c12-5 21-11 27-17l191-191c7-7 10-15 10-24z m102 0c0-10-3-18-9-24l-131-131c-7-7-15-10-25-10c-6 0-11 1-15 4c-4 2-9 6-15 12l126 125c6 6 10 14 10 24c0 9-4 17-10 24l-191 191c-7 6-16 12-27 17c-11 4-22 7-31 7l59 0c10 0 20-3 32-7c11-5 20-11 27-17l191-191c6-7 9-15 9-24z"/>
|
||||
<glyph unicode="" d="m478 445c5 2 8 1 11-1c3-2 4-6 2-10c0-2-13-55-37-159c-23-103-36-157-37-161c-1-5-4-8-8-10c-4-2-8-2-12 0c0 0-127 69-127 69c0 0-15 8-15 8c0 0 11 14 11 14c132 143 200 216 202 218c1 1 1 3-1 4c-2 2-3 2-4 1c0 0-282-206-282-206c0 0-57 22-57 22c0 0-98 39-98 39c-4 2-6 4-6 7c0 2 2 4 6 6c3 1 78 28 226 80c148 52 223 79 226 79m-298-372c0 0 0 104 0 104c0 0 82-42 82-42c-44-39-69-61-73-65c-6-5-9-4-9 3"/>
|
||||
<glyph unicode="" d="m486 82c-29 52-64 85-106 101c-42 15-98 23-169 23c0 0 0-112 0-112c0 0-185 171-185 171c0 0 185 165 185 165c0 0 0-98 0-98c31 0 59-5 86-14c27-9 49-21 67-36c18-15 35-31 49-49c15-17 27-35 36-53c8-18 16-34 22-48c6-15 10-27 12-36c0 0 3-14 3-14"/>
|
||||
<glyph unicode="" d="m185 361c0 0-108-96-108-96c0 0 108-100 108-100c0 0 0-71 0-71c0 0-185 171-185 171c0 0 185 165 185 165c0 0 0-69 0-69m128-29c36 0 67-9 94-26c26-17 46-38 58-62c13-25 23-49 31-74c8-25 13-45 14-62c0 0 2-26 2-26c-29 52-58 86-86 101c-28 15-66 23-113 23c0 0 0-112 0-112c0 0-185 171-185 171c0 0 185 165 185 165c0 0 0-98 0-98"/>
|
||||
<glyph unicode="" d="m302 206c-72 0-128-8-170-23c-42-16-77-49-106-101c1 7 3 16 6 27c3 11 12 31 26 60c14 29 30 54 49 76c19 22 45 42 80 60c34 18 73 27 115 27c0 0 0 98 0 98c0 0 184-165 184-165c0 0-184-171-184-171c0 0 0 112 0 112"/>
|
||||
<glyph unicode="" d="m318 512c17 0 29-5 38-14c9-9 14-21 14-35c0-17-7-32-20-45c-14-13-30-20-49-20c-16 0-29 5-38 14c-9 9-13 21-12 37c0 15 6 30 18 43c12 13 28 20 49 20m-105-512c-34 0-43 30-28 91c0 0 31 130 31 130c5 19 5 29 0 29c-4 0-13-3-28-9c-14-7-26-13-36-20c0 0-14 23-14 23c31 26 63 48 97 64c34 17 60 25 77 25c27 0 33-28 19-83c0 0-36-136-36-136c-6-22-5-33 3-33c15 0 35 10 60 31c0 0 16-21 16-21c-29-29-59-52-90-67c-31-16-55-24-71-24"/>
|
||||
<glyph unicode="" d="m154 374c0 0 204-118 204-118c0 0-204-118-204-118c0 0 0 236 0 236"/>
|
||||
<glyph unicode="" d="m374 358c0 0-118-204-118-204c0 0-118 204-118 204c0 0 236 0 236 0"/>
|
||||
<glyph unicode="" d="m171 341c0-14-5-26-15-36c-10-10-22-15-37-15c-14 0-26 5-36 15c-10 10-15 22-15 36c0 15 5 27 15 37c10 10 22 15 36 15c15 0 27-5 37-15c10-10 15-22 15-37z m273-102l0-120l-376 0l0 52l86 85l42-43l137 137z m25 188l-426 0c-3 0-5-1-6-3c-2-2-3-4-3-6l0-324c0-2 1-4 3-6c1-2 3-3 6-3l426 0c3 0 5 1 6 3c2 2 3 4 3 6l0 324c0 2-1 4-3 6c-1 2-3 3-6 3z m43-9l0-324c0-12-4-22-13-30c-8-9-18-13-30-13l-426 0c-12 0-22 4-30 13c-9 8-13 18-13 30l0 324c0 12 4 22 13 30c8 9 18 13 30 13l426 0c12 0 22-4 30-13c9-8 13-18 13-30z"/>
|
||||
<glyph unicode="" d="m39 346c-9 0-13 4-11 11c1 4 3 6 6 8c0 0 9 2 25 8c16 6 32 12 47 17c16 5 26 7 30 7c0 0 23 0 23 0c0 0 0 77 0 77c0 0 194 0 194 0c0 0 0-77 0-77c0 0 24 0 24 0c4 0 14-2 29-7c15-5 31-11 47-17c16-6 25-8 25-8c6-3 8-8 6-14c-1-3-4-5-10-5c0 0-435 0-435 0m440-29c7 0 13-3 19-9c6-7 9-14 9-21c0 0 0-89 0-89c0-8-3-15-9-21c-6-7-12-10-19-10c0 0-51 0-51 0c0 0 23-128 23-128c0 0-390 0-390 0c0 0 23 128 23 128c0 0-50 0-50 0c-7 0-14 3-20 10c-6 6-9 13-9 21c0 0 0 89 0 89c0 7 3 14 9 21c6 6 13 9 20 9c0 0 445 0 445 0m-366-227c0 0 286 0 286 0c0 0-35 166-35 166c0 0-216 0-216 0c0 0-35-166-35-166"/>
|
||||
<glyph unicode="" d="m55 37l82 0l0 82l-82 0z m100 0l92 0l0 82l-92 0z m-100 100l82 0l0 92l-82 0z m100 0l92 0l0 92l-92 0z m-100 110l82 0l0 82l-82 0z m210-210l92 0l0 82l-92 0z m-110 210l92 0l0 82l-92 0z m220-210l82 0l0 82l-82 0z m-110 100l92 0l0 92l-92 0z m-100 247l0 82c0 3-1 5-3 7c-2 2-4 2-7 2l-18 0c-2 0-4 0-6-2c-2-2-3-4-3-7l0-82c0-2 1-5 3-6c2-2 4-3 6-3l18 0c3 0 5 1 7 3c2 1 3 4 3 6z m210-247l82 0l0 92l-82 0z m-110 110l92 0l0 82l-92 0z m110 0l82 0l0 82l-82 0z m9 137l0 82c0 3-1 5-3 7c-2 2-4 2-6 2l-18 0c-3 0-5 0-7-2c-2-2-3-4-3-7l0-82c0-2 1-5 3-6c2-2 4-3 7-3l18 0c2 0 4 1 6 3c2 1 3 4 3 6z m110 18l0-365c0-10-4-19-11-26c-7-7-16-11-26-11l-402 0c-10 0-19 4-26 11c-7 7-11 16-11 26l0 365c0 10 4 19 11 26c7 7 16 11 26 11l36 0l0 27c0 13 5 24 14 33c9 9 20 13 32 13l18 0c13 0 24-4 33-13c9-9 13-20 13-33l0-27l110 0l0 27c0 13 4 24 13 33c9 9 20 13 33 13l18 0c12 0 23-4 32-13c9-9 14-20 14-33l0-27l36 0c10 0 19-4 26-11c7-7 11-16 11-26z"/>
|
||||
<glyph unicode="" d="m430 256c0-25 14-45 41-62c-4-14-10-28-17-42c-24 6-47-2-70-23c-18-20-24-43-17-70c-14-6-28-13-43-18c-16 28-39 42-68 42c-29 0-52-14-68-42c-15 5-29 12-43 18c7 28 1 51-17 70c-18 18-42 24-70 17c-4 9-10 23-17 42c28 18 42 41 42 68c0 25-14 46-42 63c7 20 13 34 17 42c26-6 49 2 70 23c18 19 24 42 17 70c15 7 29 13 43 17c16-27 39-41 68-41c29 0 52 14 68 41c14-4 28-10 43-17c-7-27-1-50 17-70c23-21 46-29 70-23c7-14 13-28 17-42c-27-17-41-38-41-63m-174-93c26 0 48 9 66 27c18 18 27 40 27 66c0 26-9 48-27 67c-18 18-40 27-66 27c-26 0-48-9-66-27c-18-19-27-41-27-67c0-26 9-48 27-66c18-18 40-27 66-27"/>
|
||||
<glyph unicode="" d="m442 392l-20-20l-19-19l-25-24c-13-1-26 4-36 13c-9 10-14 23-13 36l63 64c1 1 1 3 0 4c0 1 0 1-1 1l0 0c0 0 0 0 0 0c0 0 0 0 0 0c-14 6-29 10-45 10c-61 0-111-50-111-111c0-12 2-23 6-33l-116-116c-39-1-70-32-70-71c0-39 32-71 71-71c39 0 70 31 71 70l116 116c10-4 21-6 33-6c61 0 111 50 111 111c0 16-4 31-10 45c0 0 0 0 0 0c0 0 0 1 0 1l0 0c0 0-1 0-1 0c-1 1-3 1-4 0z m-286-266c0-16-14-29-30-29c-16 0-29 13-29 29c0 16 13 30 29 30c16 0 30-14 30-30z"/>
|
||||
<glyph unicode="" d="m314 198c3-17 4-31 5-42c0-10-1-20-5-30c-3-10-5-16-6-21c-1-4-7-9-18-16c-11-7-19-11-23-13c-5-2-17-8-36-16c-19-9-34-15-43-19c-11-4-19-3-24 2c-4 5-4 13-1 23c0 0 20 56 20 56c0 0-66 67-66 67c0 0-54-20-54-20c-10-4-17-4-22 1c-6 5-6 13-2 24c4 10 9 23 16 40c6 17 11 28 14 33c2 6 6 13 11 23c5 10 9 16 13 19c4 2 9 6 15 10c6 4 13 7 21 7c0 0 26 0 26 0c0 0 12-1 37-3c3 4 8 11 14 20c7 8 20 23 40 43c20 21 40 38 60 53c21 15 46 28 75 39c29 10 57 14 84 9c3 0 5-1 7-3c2-1 3-3 3-7c4-28 1-56-9-86c-10-29-22-55-39-77c-16-22-33-42-50-61c-17-18-32-31-44-41c0 0-19-14-19-14m26 151c8-7 17-11 28-11c11 0 20 4 27 11c8 8 12 18 12 29c0 11-4 20-12 29c-7 7-16 11-27 11c-11 0-20-4-28-11c-7-9-11-18-11-29c0-11 4-21 11-29"/>
|
||||
<glyph unicode="" d="m176 36c-90 51-114 99-100 165c10 48 43 87 46 136c14-26 20-44 21-71c45 55 74 130 76 210c0 0 116-68 123-171c10 21 15 55 5 76c30-21 206-215-23-345c43 84 11 197-64 249c5-22-4-106-37-143c9 62-9 88-9 88c0 0-6-35-29-69c-22-32-37-66-9-125z"/>
|
||||
<glyph unicode="" d="m201 73c0-10-3-19-11-26c-7-7-15-10-25-10c-11 0-19 3-26 10c-7 7-11 16-11 26c0 10 4 19 11 26c7 7 15 11 26 11c10 0 18-4 25-11c8-7 11-16 11-26z m256 0c0-10-3-19-11-26c-7-7-15-10-25-10c-11 0-19 3-26 10c-7 7-11 16-11 26c0 10 4 19 11 26c7 7 15 11 26 11c10 0 18-4 25-11c8-7 11-16 11-26z m37 311l0-146c0-5-2-9-5-12c-3-4-7-6-12-7l-298-34c0-2 1-4 1-7c1-2 2-5 2-7c1-2 1-5 1-6c0-3-2-10-7-19l263 0c5 0 9-2 13-5c3-4 5-8 5-13c0-5-2-9-5-13c-4-3-8-5-13-5l-293 0c-5 0-9 2-13 5c-3 4-5 8-5 13c0 3 1 6 3 11c2 5 5 11 9 17c3 7 5 10 5 11l-50 235l-58 0c-5 0-10 2-13 6c-4 3-6 8-6 13c0 5 2 9 6 12c3 4 8 6 13 6l73 0c3 0 5-1 8-2c2-1 4-3 6-4c1-2 2-4 3-7c1-3 2-6 2-8c1-2 1-5 2-8c1-4 1-6 1-8l343 0c5 0 10-2 13-5c4-4 6-8 6-13z"/>
|
||||
<glyph unicode="" d="m280 451c16 20 44 34 67 35c3-27-8-54-24-73c-16-20-42-35-68-33c-3 27 10 54 25 71z m131-368c-19-28-39-56-70-57c-31 0-41 19-76 19c-35 0-46-18-75-19c-30-2-53 30-73 58c-39 57-69 162-29 232c20 35 56 57 95 58c30 0 58-20 76-20c18 0 52 25 88 21c15-1 57-6 84-46c-2-1-50-29-50-87c1-70 61-93 62-94c-1-1-10-33-32-65z"/>
|
||||
<glyph unicode="" d="m399 303l-137 84l87 72l137-85z m-51-159l132 78l-80 67l-129-78z m-107 67l-129 78l-80-67l132-78z m-123-56l0-25l132-81l0 154l-87-72z m276 0l-45-24l-87 72l0-154l132 81z m-144 232l-86 72l-138-85l87-71z"/>
|
||||
<glyph unicode="" d="m465 221c2 10 3 22 3 33c0 118-96 214-214 214c-11 0-22-1-33-3c-20 12-43 19-68 19c-71 0-129-57-129-129c0-25 7-48 19-68c-2-11-2-22-2-33c0-118 95-214 213-214c12 0 23 1 34 3c19-12 43-19 68-19c71 0 129 57 129 129c0 25-7 48-20 68z m-109-64c-9-13-23-23-40-31c-17-7-38-11-62-11c-28 0-52 5-70 15c-13 7-24 17-32 29c-9 12-13 24-13 36c0 6 3 12 8 17c5 5 12 7 19 7c7 0 12-2 16-5c5-4 9-10 12-17c3-8 7-15 11-21c4-5 10-10 18-14c7-3 17-5 30-5c17 0 31 4 41 11c11 7 16 16 16 27c0 9-3 15-8 21c-6 5-13 9-23 12c-9 3-21 6-36 9c-21 5-38 10-52 16c-14 6-26 15-34 25c-8 11-12 24-12 39c0 15 4 28 13 40c9 11 21 20 38 26c16 7 35 10 58 10c17 0 33-2 46-6c13-5 23-10 32-17c9-7 15-14 19-21c4-8 6-15 6-22c0-7-3-13-8-18c-5-6-11-8-19-8c-7 0-12 1-16 5c-3 3-7 8-11 15c-5 10-11 18-19 23c-7 6-18 8-34 8c-15 0-27-3-36-9c-9-6-13-13-13-21c0-5 1-9 4-13c3-4 7-7 13-10c5-3 11-5 16-6c6-2 15-4 28-7c16-4 31-8 44-12c13-4 24-9 34-15c9-7 16-14 22-24c5-9 7-21 7-34c0-17-4-31-13-44z"/>
|
||||
<glyph unicode="" d="m258 256c0 45 30 71 67 71c26 0 48-9 61-33l-30-16c-7 16-20 19-26 19c-23 0-31-18-31-41c0-23 10-41 31-41c12 0 22 5 29 20l28-14c-12-22-34-36-60-36c-41 0-69 25-69 71z m-64-71c26 0 48 14 60 36l-29 14c-6-15-16-20-28-20c-21 0-31 18-31 41c0 23 8 41 31 41c6 0 19-3 26-19l30 16c-13 24-35 33-61 33c-37 0-67-26-67-71c0-46 28-71 69-71z m-101-91c-44 44-67 101-67 162c0 61 24 119 68 163c43 44 98 67 162 67c63 0 120-23 164-67c44-44 66-101 66-163c0-63-22-119-65-162c-46-44-105-68-165-68c-61 0-119 24-163 68z m-26 162c0-49 21-97 57-133c36-36 82-55 132-55c50 0 98 19 135 56c35 35 54 80 54 132c0 51-19 98-55 133c-36 36-82 56-134 56c-52 0-97-19-132-55c-36-37-57-84-57-134z"/>
|
||||
<glyph unicode="" d="m77 312c16 0 29-5 40-16c11-11 16-24 16-40c0-15-5-28-16-39c-11-12-24-17-40-17c-16 0-29 5-40 17c-11 11-17 24-17 39c0 16 6 29 17 40c11 11 24 16 40 16m179 0c16 0 29-5 40-16c11-11 16-24 16-40c0-15-5-28-17-39c-11-12-24-17-39-17c-15 0-28 5-39 17c-12 11-17 24-17 39c0 16 5 29 16 40c11 11 24 16 40 16m179 0c16 0 29-5 40-16c11-11 17-24 17-40c0-15-6-28-17-39c-11-12-24-17-40-17c-15 0-29 5-40 17c-11 11-16 24-16 39c0 16 5 29 16 40c11 11 25 16 40 16"/>
|
||||
<glyph unicode="" d="m263 87c0 0-194 169-194 169c0 0 194 169 194 169c0 0 0-97 0-97c0 0 180 0 180 0c0 0 0-143 0-143c0 0-180 0-180 0c0 0 0-98 0-98"/>
|
||||
<glyph unicode="" d="m248 425c0 0 195-169 195-169c0 0-195-169-195-169c0 0 0 98 0 98c0 0-179 0-179 0c0 0 0 143 0 143c0 0 179 0 179 0c0 0 0 97 0 97"/>
|
||||
<glyph unicode="" d="m425 264c0 0-169-194-169-194c0 0-169 194-169 194c0 0 98 0 98 0c0 0 0 179 0 179c0 0 142 0 142 0c0 0 0-179 0-179c0 0 98 0 98 0"/>
|
||||
<glyph unicode="" d="m195 169c0 0 81 87 81 87c0 0-81 88-81 88c-9 9-9 17 0 25c9 9 17 9 24 0c0 0 99-100 99-100c8-9 8-17 0-25c0 0-99-100-99-100c-7-8-15-8-24 0c-9 8-9 16 0 25"/>
|
||||
<glyph unicode="" d="m344 317c8 9 16 9 25 0c9-7 9-15 0-24c0 0-101-98-101-98c-7-8-15-8-24 0c0 0-101 98-101 98c-9 9-9 17 0 24c9 9 17 9 26 0c0 0 87-79 87-79c0 0 88 79 88 79"/>
|
||||
<glyph unicode="" d="m425 249c0 0-98 0-98 0c0 0 0-179 0-179c0 0-142 0-142 0c0 0 0 179 0 179c0 0-98 0-98 0c0 0 169 194 169 194c0 0 169-194 169-194"/>
|
||||
<glyph unicode="" d="m343 225l88 85l-121 18l-54 109l-54-109l-121-18l88-85l-21-120l108 57l108-57z m151 102c0-4-3-9-8-14l-103-101l24-143c0-1 0-3 0-5c0-10-3-15-11-15c-4 0-8 2-12 4l-128 67l-128-67c-4-2-8-4-12-4c-4 0-7 2-9 5c-2 2-3 6-3 10c0 1 0 3 1 5l24 143l-104 101c-4 6-7 10-7 14c0 7 6 12 16 13l144 21l64 130c4 8 8 12 14 12c6 0 10-4 14-12l64-130l144-21c10-1 16-6 16-13z"/>
|
||||
<glyph unicode="" d="m494 327c0-4-3-9-8-14l-103-101l24-143c0-1 0-3 0-5c0-4-1-8-3-10c-2-3-4-5-8-5c-4 0-8 2-12 4l-128 67l-128-67c-4-2-8-4-12-4c-4 0-7 2-9 5c-2 2-3 6-3 10c0 1 0 3 1 5l24 143l-104 101c-4 6-7 10-7 14c0 7 6 12 16 13l144 21l64 130c4 8 8 12 14 12c6 0 10-4 14-12l64-130l144-21c10-1 16-6 16-13z"/>
|
||||
<glyph unicode="" d="m418 127l-7-5c-17-13-34-24-50-31c-29-13-61-20-95-20c-49 0-91 14-126 44c-39 33-58 78-58 135c0 51 16 95 50 131c36 41 85 61 146 61c33 0 63-8 89-22c42-24 63-62 63-115c0-36-7-65-23-87c-15-22-31-33-46-33c-8 0-14 3-18 8c-3 5-5 10-5 16c0 4 1 8 2 13c1 5 3 13 5 23l35 126l-51 0l-9-37c-3 12-8 22-16 30c-11 12-25 17-44 17c-32 0-59-15-81-46c-22-30-33-63-33-98c0-31 8-54 22-71c15-17 32-25 54-25c21 0 39 7 55 22c8 8 16 20 22 34c0-2 0-4 0-6c0-2 0-3 0-4c0-11 4-22 13-32c9-10 22-15 38-15c32 0 60 16 85 47c24 32 37 70 37 114c0 56-20 101-59 135c-37 32-83 48-139 48c-70 0-126-24-171-71c-42-44-63-98-63-162c0-57 17-106 51-147c41-51 98-76 172-76c32 0 63 6 92 17c30 11 57 28 83 49c0 0 12 11 5 27c-7 16-21 9-25 6z m-132 104c-12-32-28-47-47-47c-11 0-19 4-25 13c-6 8-9 20-9 34c0 24 7 48 20 73c13 25 29 38 48 38c10 0 17-4 23-11c5-7 8-15 8-26c0-18-6-43-18-74z"/>
|
||||
<glyph unicode="" d="m179 282c8 0 14-3 19-8c4-5 7-11 7-18c0-7-3-13-8-18c-5-5-11-8-18-8c0 0-153 0-153 0c-7 0-13 3-18 8c-5 5-8 11-8 18c0 7 2 13 7 18c5 5 11 8 19 8c0 0 153 0 153 0m0-103c8 0 14-2 19-7c4-6 7-12 7-18c0-7-3-13-8-18c-5-5-11-8-18-8c0 0-153 0-153 0c-7 0-13 3-18 8c-5 5-8 11-8 18c0 6 2 12 7 18c5 5 11 7 19 7c0 0 153 0 153 0m318 103c10 0 15-9 15-26c0-17-5-26-15-26c0 0-87 0-87 0c0 0 0-87 0-87c0-10-9-15-26-15c-17 0-26 5-26 15c0 0 0 87 0 87c0 0-84 0-84 0c-10 0-15 9-15 26c0 17 5 26 15 26c0 0 84 0 84 0c0 0 0 87 0 87c0 10 9 15 26 15c17 0 26-5 26-15c0 0 0-87 0-87c0 0 87 0 87 0m-318 102c8 0 14-3 19-8c4-5 7-11 7-18c0-6-3-12-8-18c-5-5-11-7-18-7c0 0-153 0-153 0c-7 0-13 2-18 7c-5 6-8 12-8 18c0 7 2 13 7 18c5 5 11 8 19 8c0 0 153 0 153 0"/>
|
||||
<glyph unicode="" d="m407 486l-125 0c-32 0-73-4-108-33c-26-22-39-53-39-81c0-47 37-95 101-95c6 0 12 1 19 1c-3-7-6-13-6-23c0-19 10-30 18-41c-27-2-78-5-115-28c-36-21-47-52-47-74c0-45 42-86 130-86c104 0 159 57 159 114c0 42-24 62-50 85l-22 17c-7 5-16 12-16 26c0 13 9 21 17 29c25 20 51 41 51 86c0 46-29 70-43 82l37 0z m-53-370c0-37-31-65-89-65c-65 0-107 31-107 74c0 43 39 57 52 62c26 9 58 10 64 10c6 0 9 0 14-1c46-32 66-49 66-80z m-49 195c-9-10-26-17-41-17c-52 0-75 67-75 108c0 15 3 32 13 45c10 12 26 19 42 19c50 0 77-67 77-111c0-11-2-30-16-44z"/>
|
||||
<glyph unicode="" d="m269 93c0 4-1 8-2 12c-1 4-1 7-2 10c-1 3-3 7-5 10c-3 4-5 6-6 9c-2 2-5 5-8 8c-3 4-6 6-8 8c-2 1-5 4-9 7c-4 3-7 5-9 6c-1 2-5 4-9 7c-5 3-8 5-9 6c-3 0-8 1-14 1c-11 0-21-1-31-2c-9-2-20-4-30-8c-11-3-20-7-28-13c-8-5-15-12-20-21c-5-9-8-19-8-31c0-13 4-24 10-34c7-11 16-19 27-24c11-6 22-11 34-13c12-3 24-5 37-5c11 0 22 1 32 4c10 2 19 6 28 11c9 5 16 12 22 21c5 9 8 19 8 31z m-35 247c0 11-1 23-4 36c-4 13-8 25-14 37c-6 12-14 22-24 30c-10 8-21 12-34 12c-18 0-31-7-41-20c-10-13-15-29-15-47c0-9 1-18 4-28c2-10 5-20 10-30c4-10 10-19 16-27c6-8 13-14 22-19c9-5 18-7 28-7c18 0 32 5 40 17c8 11 12 27 12 46z m-37 135l125 0l-39-22l-38 0c13-9 24-21 31-36c7-16 11-32 11-48c0-15-2-27-6-38c-5-11-10-20-16-26c-7-7-13-13-19-19c-7-5-12-11-16-17c-5-6-7-13-7-20c0-5 2-9 5-14c3-5 7-9 12-14c5-4 11-9 17-14c6-4 12-10 18-15c6-6 12-13 17-19c5-7 9-15 12-25c3-9 5-19 5-30c0-30-13-57-40-81c-29-25-69-37-120-37c-11 0-23 1-34 3c-12 2-23 5-35 9c-12 5-22 10-31 17c-9 7-16 15-22 25c-6 11-9 22-9 35c0 12 4 25 11 39c6 12 15 22 27 31c12 9 26 16 42 21c15 4 30 8 44 10c14 2 28 3 43 4c-12 16-18 30-18 42c0 3 0 5 0 7c1 2 1 4 2 6c0 1 1 3 2 6c1 2 1 4 2 6c-8-1-14-2-20-2c-29 0-53 10-73 28c-20 19-31 43-31 71c0 26 9 50 28 71c18 21 40 35 66 41c18 4 36 5 54 5z m297-73l0-36l-73 0l0-73l-37 0l0 73l-73 0l0 36l73 0l0 73l37 0l0-73z"/>
|
||||
<glyph unicode="" d="m492 402c-13-18-29-35-49-50c0 0 0-12 0-12c0-44-10-87-30-128c-21-41-53-76-96-104c-43-28-92-42-148-42c-55 0-104 14-149 43c5-1 13-1 24-1c45 0 85 13 120 40c-21 1-40 8-56 20c-17 12-28 28-34 48c3-1 9-2 17-2c9 0 18 1 26 3c-23 5-41 16-56 34c-14 18-21 38-21 61c0 0 0 1 0 1c12-6 27-11 43-12c-29 20-43 47-43 81c0 16 4 32 13 48c53-64 119-98 200-100c-2 6-3 13-3 21c0 27 9 50 28 68c19 19 42 28 69 28c28 0 51-9 70-29c20 4 41 11 61 22c-7-22-21-40-42-53c19 3 38 8 56 15"/>
|
||||
<glyph unicode="" d="m486 346c0 38-30 69-68 69l-324 0c-38 0-68-31-68-69l0-185c0-38 30-69 68-69l324 0c38 0 68 31 68 69z m-276-171l0 174l132-87z"/>
|
||||
<glyph unicode="" d="m499 65c4-6 4-12 0-18c-3-5-8-8-15-8c0 0-457 0-457 0c-6 0-11 3-14 8c-4 6-4 12-1 18c0 0 228 400 228 400c3 6 8 9 16 9c7 0 12-3 15-9c0 0 228-400 228-400m-215 25c0 0 0 51 0 51c0 0-56 0-56 0c0 0 0-51 0-51c0 0 56 0 56 0m0 89c0 0 0 154 0 154c0 0-56 0-56 0c0 0 0-154 0-154c0 0 56 0 56 0"/>
|
||||
<glyph unicode="" d="m256 484c-126 0-228-102-228-228c0-126 102-228 228-228c126 0 228 102 228 228c0 126-102 228-228 228z m0-399c-94 0-171 77-171 171c0 94 77 171 171 171c94 0 171-77 171-171c0-94-77-171-171-171z m-2 312c-23-2-40-23-37-46l12-118c2-13 12-24 26-26c16-1 30 10 31 26l13 118c0 3 0 6 0 8c-2 23-22 40-45 38z m-21-220c-7-7-11-16-11-25c0-10 4-19 11-26c7-6 16-10 25-10c9 0 19 4 25 10c7 7 11 16 11 26c0 9-4 18-11 25c-13 13-37 13-50 0z"/>
|
||||
<glyph unicode="" d="m392 396l0 0c-2 2-5 3-8 3c-3 0-5-1-7-3l0 0l-1 0c0 0 0 0 0 0l-21-19c0 0 0 0 0-1l0 0l0 0c-2-2-3-4-3-7c0-4 2-8 5-10c25-25 40-60 40-98c0-78-63-141-141-141c-78 0-141 63-141 141c0 38 16 73 41 99l0 0c2 2 4 5 4 9c0 3-2 5-4 7l0 0l0 0c0 1 0 1 0 1l-21 19c0 0 0 0 0 0l-1 0l0 0c-2 2-4 3-7 3c-4 0-8-2-10-6c-33-34-53-81-53-132c0-106 86-192 192-192c106 0 192 86 192 192c0 52-21 100-56 135z m-150-205l28 0c0 0 0 0 0 0c6 0 11 5 11 11l0 230l0 0c0 0 0 0 0 0c0 6-5 11-11 11c0 0 0 0 0 0l-28 0c-6 0-11-5-11-11c0 0 0 0 0 0l0 0l0-230c0-6 5-11 11-11z"/>
|
||||
<glyph unicode="" d="m432 309l-123 0l0 123c0 5-5 10-10 10l-86 0c-5 0-10-5-10-10l0-123l-123 0c-5 0-10-5-10-10l0-86c0-3 1-5 3-7c2-2 4-3 7-3l123 0l0-123c0-3 1-5 3-7c2-2 4-3 7-3l86 0c3 0 5 1 7 3c2 2 3 4 3 7l0 123l123 0c3 0 5 1 7 3c2 2 3 4 3 7l0 86c0 5-5 10-10 10z"/>
|
||||
<glyph unicode="" d="m451 357l-66 66c-3 2-6 4-9 4c-3 0-7-2-9-4l-176-176l-46 47c-5 5-13 5-18 0l-66-66c-2-3-3-6-3-9c0-3 1-7 3-9l121-121c3-2 6-4 9-4c0 0 0 1 0 1c1 0 1-1 1-1c3 0 6 2 9 4l250 250c5 5 5 13 0 18z"/>
|
||||
<glyph unicode="" d="m434 160l-96 96l96 96c4 4 4 10 0 14l-68 68c-4 4-10 4-14 0l-96-96l-96 96c-4 4-11 4-14 0l-68-68c-2-1-3-4-3-7c0-2 1-5 3-7l96-96l-96-96c-2-2-3-5-3-7c0-3 1-6 3-7l68-68c1-2 4-3 7-3c2 0 5 1 7 3l96 96l96-96c2-2 5-3 7-3c3 0 5 1 7 3l68 68c4 4 4 10 0 14z"/>
|
||||
<glyph unicode="" d="m96 448l179 0l13-13l0-83l83 0l13-13l0-275l-288 0z m-64 64l0-512l416 0l0 365l-147 147z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m96-290l96-96l0 45l-51 51l51 50l0 46l-73-74z m160 56l51-51l-51-51l0-45l73 73l23 23l-96 96z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m96-352l64 0l0-64l-64 0z m96 160l64 0l0-224l-64 0z m96-96l64 0l0-128l-64 0z"/>
|
||||
<glyph unicode="" d="m192 160l128 0l0-128l-128 0z m96 32l-32 0l0 32l32 0z m0 96l0-32l-32 0l0-32l-32 0l0 32l32 0l0 32z m32 147l96-96l0-275l-64 0l0 128l-32 0z m-224 13l96 0l0-256l-32 0l0-128l-64 0z m128 0l32 0l0-32l32 0l0-32l-32 0l0-32l32 0l0-32l-32 0l0-32l-32 0l0 32l32 0l0 32l-32 0l0 32l32 0l0 32l-32 0z m-192 64l0-512l448 0l0 365l-147 147z m192-384l64 0l0-32l-64 0z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m224-96l-32-6l0-225c-9 4-20 7-32 7c-35 0-64-22-64-48c0-26 29-48 64-48c12 0 23 3 32 7c19 8 32 23 32 41l0 179c64 0 96-67 96-99c0 128-64 163-96 163z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m128-224l192 0l0-32l-192 0z m0 64l128 0l0-32l-128 0z m0-128l192 0l0-32l-192 0z m0-64l192 0l0-32l-192 0z"/>
|
||||
<glyph unicode="" d="m288 448l19 0l109-109l0-275l-320 0l0 384l64 0l0-288l64 96l64-96z m-256 64l0-512l448 0l0 365l-147 147z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m144-253c26 0 48 22 48 48c0 27-22 48-48 48c-26 0-48-21-48-48c0-26 22-48 48-48m16-64l-64-96l256 0l-64 224l-64-192z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m192-262l-96-96l0-45l96 96l64-64l96 96l0 45l-96-96z"/>
|
||||
<glyph unicode="" d="m384 320c-53 0-96-43-96-96c0-28 13-53 32-71l0-153l64 64l64-64l0 153c20 18 32 43 32 71c0 53-43 96-96 96m0-160c-35 0-64 29-64 64c0 35 29 64 64 64c35 0 64-29 64-64c0-35-29-64-64-64m-170-96l-150 0l0 384l179 0l96-96l77 0l0 13l-147 147l-269 0l0-512l275 0l-60 63z m-118 288l160 0l0-32l-160 0z m0-64l160 0l0-32l-160 0z m0-64l160 0l0-32l-160 0z"/>
|
||||
<glyph unicode="" d="m111 10c-20 0-39 9-57 27l-3 3c-19 18-96 83 0 172c40 37 89 90 143 144c30 29 60 59 90 89c55 55 95 42 157-17c73-69 87-138 55-175c-42-48-201-207-208-214c-9-9-23-9-32 0c-9 9-9 23 0 32c1 2 164 165 205 212c10 11 11 52-51 112c-37 35-47 64-93 18c-31-30-61-61-90-90c-55-53-105-105-143-142c-59-60-21-89-1-109l3-3c17-16 31-21 55 4c7 6 21 20 39 37c49 48 141 138 160 161c6 7 14 25 6 32c-11 10-32-10-38-16c-65-68-149-149-150-150c-9-8-23-8-32 1c-9 9-8 24 1 32c1 1 84 81 148 148c41 44 79 39 101 20c26-24 20-69-1-96c-19-23-91-94-163-164c-18-17-32-31-39-38c-20-20-41-30-62-30"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m96-416l256 0l0 224l-256 0z m128 192l96 0l0-64l-96 0z m0-96l96 0l0-64l-96 0z m-96 96l64 0l0-64l-64 0z m0-96l64 0l0-64l-64 0z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m160-381l170 96l-170 96z"/>
|
||||
<glyph unicode="" d="m440 389l-188 0c-10 12-20 25-23 28c-2 6-8 10-14 10l-75 0c-5 0-9-3-13-6l-25-32l-30 0c-16 0-28-13-28-28l0-248c0-15 12-28 28-28l368 0c16 0 28 13 28 28l0 248c0 15-12 28-28 28z m-22-201c0-1-1-2-1-2c-1-1-2-1-3-1l-45 0l0-45c0-1 0-2-1-3c0 0-1-1-2-1l-32 0c-1 0-1 1-2 1c-1 1-1 2-1 3l0 45l-45 0c-1 0-2 0-2 1c-1 0-1 1-1 2l0 31c0 2 1 4 3 4l45 0l0 45c0 2 1 3 3 3l32 0c2 0 3-1 3-3l0-45l45 0c2 0 4-2 4-4z"/>
|
||||
<glyph unicode="" d="m440 389l-188 0c-10 12-20 25-23 28c-2 6-8 10-14 10l-75 0c-5 0-9-3-13-6l-25-32l-30 0c-16 0-28-13-28-28l0-248c0-15 12-28 28-28l368 0c16 0 28 13 28 28l0 248c0 15-12 28-28 28z"/>
|
||||
<glyph unicode="" d="m448 96l32 0l0-32l-32 0z m-384 128l352 0l0-192l-352 0z m64 288l256 0l0-160l-256 0z m-128 0l0-512l512 0l0 448l-64 64z m288-32l64 0l0-96l-64 0z m-160-384l224 0l0-32l-224 0z m0 64l160 0l0-32l-160 0z"/>
|
||||
<glyph unicode="" d="m475 238c-29 45-65 78-108 101c11-20 17-42 17-65c0-35-13-65-38-90c-25-25-55-38-90-38c-35 0-65 13-90 38c-25 25-38 55-38 90c0 23 6 45 17 65c-43-23-79-56-108-101c25-39 57-70 95-94c38-23 79-34 124-34c45 0 86 11 124 34c38 24 70 55 95 94z m-205 109c0 4-2 7-4 10c-3 3-6 4-10 4c-24 0-44-8-61-25c-17-17-26-38-26-62c0-4 1-7 4-9c3-3 6-4 10-4c4 0 7 1 10 4c2 2 4 5 4 9c0 17 5 31 17 42c12 12 26 18 42 18c4 0 7 1 10 4c2 2 4 6 4 9z m242-109c0-7-2-13-6-20c-26-44-62-79-107-105c-45-27-93-40-143-40c-50 0-98 13-143 40c-45 26-81 61-107 105c-4 7-6 13-6 20c0 6 2 13 6 19c26 44 62 79 107 106c45 26 93 39 143 39c50 0 98-13 143-39c45-27 81-62 107-106c4-6 6-13 6-19z"/>
|
||||
<glyph unicode="" d="m195 397c0-11 0-63 0-63l-47 0l0-78l47 0l0-230l95 0l0 230l65 0c0 0 6 37 8 78c-8 0-72 0-72 0c0 0 0 45 0 53c0 8 10 19 21 19c10 0 31 0 52 0c0 10 0 47 0 80c-27 0-58 0-71 0c-100 0-98-77-98-89z"/>
|
||||
<glyph unicode="" d="m486 410c0 40-36 76-76 76l-308 0c-40 0-76-36-76-76l0-308c0-40 36-76 76-76l154 0l0 174l-56 0l0 76l56 0l0 30c0 52 39 98 86 98l62 0l0-76l-62 0c-6 0-14-9-14-21l0-31l76 0l0-76l-76 0l0-174l82 0c40 0 76 36 76 76z"/>
|
||||
<glyph unicode="" d="m195 37l68 223l26-73l-104 41l-66 26l39 47l149 180c2 3 6 3 9 1c2-2 3-4 2-7l-68-223l-26 73l104-41l65-26l-38-47l-149-180c-3-3-6-3-9-1c-2 2-3 4-2 7z"/>
|
||||
<glyph unicode="" d="m480 288c-18 0-32-14-32-32l0-192l-384 0l0 192c0 18-14 32-32 32c-18 0-32-14-32-32l0-224c0-18 14-32 32-32l448 0c18 0 32 14 32 32l0 224c0 18-14 32-32 32z m-192 0l0 196c0 15-14 28-32 28c-18 0-32-13-32-28l0-196l-96 0l128-128l128 128z"/>
|
||||
<glyph unicode="" d="m480 288c-18 0-32-14-32-32l0-192l-384 0l0 192c0 18-14 32-32 32c-18 0-32-14-32-32l0-224c0-18 14-32 32-32l448 0c18 0 32 14 32 32l0 224c0 18-14 32-32 32z m-256-96c0-18 14-32 32-32c18 0 32 14 32 32l0 192l96 0l-128 128l-128-128l96 0z"/>
|
||||
<glyph unicode="" d="m485 238c0-5-2-10-6-13c-3-4-8-6-13-6l-64 0c0-32-6-60-19-82l60-60c3-4 5-8 5-13c0-5-2-9-5-13c-4-3-8-5-13-5c-5 0-10 2-13 5l-57 56c-1-1-2-2-4-3c-2-2-6-5-12-8c-6-4-12-8-19-11c-6-3-14-6-23-8c-9-3-19-4-28-4l0 256l-36 0l0-256c-10 0-20 1-29 4c-10 3-18 6-25 9c-7 4-13 8-19 12c-6 3-10 6-12 9l-5 4l-52-59c-4-4-8-6-14-6c-4 0-8 1-12 4c-4 4-6 8-6 13c0 5 1 9 5 13l57 65c-11 22-16 48-16 78l-64 0c-5 0-10 2-13 6c-4 3-6 8-6 13c0 5 2 9 6 13c3 3 8 5 13 5l64 0l0 84l-50 49c-3 4-5 8-5 13c0 5 2 10 5 13c4 4 8 6 13 6c5 0 9-2 13-6l49-49l242 0l49 49c4 4 8 6 13 6c5 0 9-2 13-6c3-3 5-8 5-13c0-5-2-9-5-13l-50-49l0-84l64 0c5 0 10-2 13-5c4-4 6-8 6-13z m-138 164l-182 0c0 26 8 47 26 65c18 18 40 27 65 27c25 0 47-9 65-27c18-18 26-39 26-65z"/>
|
||||
<glyph unicode="" d="m440 407c24-22 36-49 36-80c0-32-12-59-36-81c0 0-184-169-184-169c0 0-184 169-184 169c-24 22-36 49-36 81c0 31 12 58 36 80c21 19 47 29 77 29c30 0 56-10 78-29c0 0 29-27 29-27c0 0 30 27 30 27c21 19 46 29 76 29c31 0 56-10 78-29"/>
|
||||
<glyph unicode="" d="m440 406c24-22 36-49 36-80c0-32-12-58-36-80c0 0-184-169-184-169c0 0-184 169-184 169c-24 22-36 48-36 80c0 31 12 58 36 80c22 19 47 29 78 29c30 0 55-10 76-29c0 0 30-27 30-27c0 0 29 27 29 27c22 19 47 29 77 29c31 0 56-10 78-29m-27-134c14 14 21 32 21 54c0 22-6 39-19 51c-13 13-31 19-53 19c-17 0-35-8-53-24c0 0-53-47-53-47c0 0-54 47-54 47c-17 16-34 24-52 24c-22 0-40-6-54-19c-13-12-19-30-19-51c0-23 7-41 22-54c0 0 157-146 157-146c0 0 157 146 157 146"/>
|
||||
<glyph unicode="" d="m410 461c14 0 26-5 36-15c10-10 15-22 15-36c0 0 0-205 0-205c0-14-5-26-15-36c-10-10-22-15-36-15c0 0-205 0-205 0c-14 0-26 5-36 15c-10 10-15 22-15 36c0 0 0 206 0 206c0 13 5 25 14 35c10 10 22 15 37 15c0 0 205 0 205 0m0-256c0 0 0 205 0 205c0 0-205 0-205 0c0 0 0-205 0-205c0 0 205 0 205 0m-308 51c0 0 0-154 0-154c0 0 154 0 154 0c0 0 0-51 0-51c0 0-154 0-154 0c-13 0-25 5-35 16c-11 10-16 22-16 35c0 0 0 154 0 154c0 0 51 0 51 0"/>
|
||||
<glyph unicode="" d="m0 512l0-512l512 0l0 512z m480-480l-448 0l0 448l448 0z m-96 368l-160-160l-96 96l-64-64l160-160l224 224z"/>
|
||||
<glyph unicode="" d="m0 512l0-512l512 0l0 512z m480-480l-448 0l0 448l448 0z"/>
|
||||
<glyph unicode="" d="m0 512l0-512l512 0l0 512z m480-480l-448 0l0 448l448 0z m-352 352l256 0l0-256l-256 0z"/>
|
||||
<glyph unicode="" d="m256 512c-141 0-256-115-256-256c0-141 115-256 256-256c141 0 256 115 256 256c0 141-115 256-256 256z m0-448c-106 0-192 86-192 192c0 106 86 192 192 192c106 0 192-86 192-192c0-106-86-192-192-192z m-96 192c0 53 43 96 96 96c53 0 96-43 96-96c0-53-43-96-96-96c-53 0-96 43-96 96z"/>
|
||||
<glyph unicode="" d="m256 512c-141 0-256-115-256-256c0-141 115-256 256-256c141 0 256 115 256 256c0 141-115 256-256 256z m0-448c-106 0-192 86-192 192c0 106 86 192 192 192c106 0 192-86 192-192c0-106-86-192-192-192z"/>
|
||||
<glyph unicode="" d="m230 182l-86-148l283 0l85 148z m258 42l-147 254l-170 0l146-254z m-342 212l-146-254l85-148l147 254z"/>
|
||||
<glyph unicode="" d="m256 512c-139 0-253-111-256-250c3 121 95 218 208 218c115 0 208-100 208-224c0-27 21-48 48-48c27 0 48 21 48 48c0 141-115 256-256 256z m0-512c139 0 253 111 256 250c-3-121-95-218-208-218c-115 0-208 100-208 224c0 27-21 48-48 48c-27 0-48-21-48-48c0-141 115-256 256-256z"/>
|
||||
<glyph unicode="" d="m446 256c0 51-22 100-56 134c-34 34-83 56-134 56c-51 0-100-22-134-56c-34-34-56-83-56-134c0-83 55-156 133-181l0 50c-11-1-17-2-20-2c-22 0-37 10-46 30c-3 7-6 13-10 19c-1 1-3 2-7 5c-3 3-6 5-8 7c-3 2-4 4-4 5c0 2 3 4 9 4c11 0 20-7 26-15c6-8 12-17 22-23c4-3 10-4 16-4c8 0 16 1 24 4c3 11 10 20 19 26c-66 7-97 30-97 92c0 23 7 43 22 58c-3 9-4 17-4 25c0 12 2 22 8 32c22 0 37-7 60-23c15 3 31 5 50 5c15 0 30-1 45-5c22 16 37 23 59 23c6-10 8-20 8-32c0-8-1-16-4-24c15-17 22-36 22-59c0-62-31-86-97-92c14-9 21-22 21-39l0-67c78 25 133 98 133 181z m7 114c20-35 31-73 31-114c0-83-44-156-114-197c-35-20-73-31-114-31c-83 0-156 44-197 114c-20 35-31 73-31 114c0 83 44 156 114 197c35 20 73 31 114 31c83 0 156-44 197-114z"/>
|
||||
<glyph unicode="" d="m435 152c-1 6-4 10-9 13l-74 43l0 0c-3 2-7 3-10 3c-6 0-12-3-16-7l-22-21c-1-1-4-2-5-3c0 0-25 2-71 48c-46 46-48 71-48 71c0 1 2 4 3 5l18 19c7 6 8 17 5 26l-41 76c-3 6-9 10-15 10c-5 0-9-2-13-5l-50-50c-5-5-9-14-10-20c0-4-9-81 97-186c89-90 159-97 179-97c4 0 6 0 7 0c6 1 15 5 20 10l50 50c4 5 6 10 5 15z"/>
|
||||
<glyph unicode="" d="m279 110c0 6-2 11-7 16c-4 4-10 7-16 7c-6 0-12-3-16-7c-5-5-7-10-7-16c0-7 2-12 7-16c4-5 10-7 16-7c6 0 12 2 16 7c5 4 7 9 7 16z m59 45l0 202c0 2-1 4-2 6c-2 2-4 3-7 3l-146 0c-3 0-5-1-7-3c-1-2-2-4-2-6l0-202c0-2 1-4 2-6c2-2 4-3 7-3l146 0c3 0 5 1 7 3c1 2 2 4 2 6z m-55 243c0 3-1 4-4 4l-46 0c-3 0-4-1-4-4c0-3 1-5 4-5l46 0c3 0 4 2 4 5z m83 4l0-292c0-10-4-19-11-26c-7-7-16-11-26-11l-146 0c-10 0-19 4-26 11c-7 7-11 16-11 26l0 292c0 10 4 19 11 26c7 7 16 11 26 11l146 0c10 0 19-4 26-11c7-7 11-16 11-26z"/>
|
||||
<glyph unicode="" d="m269 232l189 193c-3 1-7 2-10 2l-384 0c-3 0-6-1-10-2l190-193c6-6 18-6 25 0z m25-26c-10-10-24-16-38-16c-14 0-28 5-38 16l-189 192c0-3 0-5 0-8l0-268c0-20 16-37 35-37l384 0c19 0 35 17 35 37l0 268c0 3 0 5 0 8z"/>
|
||||
<glyph unicode="" d="m11 78l-11-78l79 11l78 11l-67 68l-68 67z m168 12l-22 22l202 202l-45 45l-202-202l-23 23l202 202l-22 22l-224-224l134-135l224 225l-22 22z m294 290l-90 90c-12 12-32 13-44 1l-2-3l0 0l-43-43l134-134l43 43l0 0l3 2c12 12 12 32-1 44"/>
|
||||
<glyph unicode="" d="m480 403c-2 25-23 45-48 45l-48 0l0 16c0 26-22 48-48 48l-160 0c-27 0-48-22-48-48l0-16l-48 0c-26 0-46-20-48-45l0 0l0-35c0-18 14-32 32-32l0-272c0-35 29-64 64-64l256 0c35 0 64 29 64 64l0 272c18 0 32 14 32 32l0 35z m-320 61c0 9 7 16 16 16l160 0c9 0 16-7 16-16l0-16l-192 0z m256-400c0-18-14-32-32-32l-256 0c-18 0-32 14-32 32l0 272l320 0z m32 320l0-16l-384 0l0 32c0 9 7 16 16 16l352 0c9 0 16-7 16-16z m-304-320l32 0c9 0 16 7 16 16l0 208c0 9-7 16-16 16l-32 0c-9 0-16-7-16-16l0-208c0-9 7-16 16-16z m0 224l32 0l0-208l-32 0z m96-224l32 0c9 0 16 7 16 16l0 208c0 9-7 16-16 16l-32 0c-9 0-16-7-16-16l0-208c0-9 7-16 16-16z m0 224l32 0l0-208l-32 0z m96-224l32 0c9 0 16 7 16 16l0 208c0 9-7 16-16 16l-32 0c-9 0-16-7-16-16l0-208c0-9 7-16 16-16z m0 224l32 0l0-208l-32 0z"/>
|
||||
<glyph unicode="" d="m293 397c4 6 11 9 20 9c8 0 15-3 21-9c13-12 13-26 0-41c0 0-96-100-96-100c0 0 96-99 96-99c13-15 13-29 0-41c-6-6-13-8-21-8c-8 0-15 2-20 8c0 0-116 121-116 121c-6 5-8 11-8 19c0 8 2 15 8 20c70 74 109 114 116 121"/>
|
||||
<glyph unicode="" d="m219 397c0 0 116-121 116-121c5-5 8-12 8-20c0-8-3-14-8-19c0 0-116-121-116-121c-5-6-12-8-20-8c-9 0-15 2-21 8c-12 12-12 26 0 41c0 0 95 99 95 99c0 0-95 100-95 100c-12 15-12 29 0 41c6 6 13 9 21 9c9 0 15-3 20-9"/>
|
||||
<glyph unicode="" d="m256 480c-60 0-117-24-158-66l-66 66l0-192l192 0l-81 81c30 30 70 47 113 47c88 0 160-72 160-160c0-88-72-160-160-160c-57 0-110 31-139 80l-55-32c40-69 114-112 194-112c124 0 224 101 224 224c0 123-100 224-224 224"/>
|
||||
<glyph unicode="" d="m352 448c53 0 96-43 96-96c0-53-43-96-96-96c-5 0-10 1-17 2l-33 6l-24-24l-3-3l-19-19l0-26l-64 0l0-64l-64 0l0-64l-64 0l0 38l200 200l-6 33c-1 7-2 12-2 17c0 53 43 96 96 96m0 64c-88 0-160-72-160-160c0-10 1-20 3-29l-195-195l0-128l192 0l0 64l64 0l0 64l64 0l0 64l3 3c9-2 19-3 29-3c88 0 160 72 160 160c0 88-72 160-160 160z m32-160c0-18-14-32-32-32c-18 0-32 14-32 32c0 18 14 32 32 32c18 0 32-14 32-32z"/>
|
||||
<glyph unicode="" d="m420 286l-45 0l0 43c0 0 0 0 0 0c0 67-54 122-121 122c-67 0-122-55-122-122l0-43l-40 0c-8 0-14-6-14-14l0-197c0-8 6-14 14-14l328 0c8 0 14 6 14 14l0 197c0 8-6 14-14 14z m-216 43c0 28 22 50 50 50c27 0 49-22 50-49c0 0 0 0 0 0l0 0c0-1 0-1 0-1l0-43l-100 0z"/>
|
||||
</font></defs></svg>
|
||||
|
After Width: | Height: | Size: 35 KiB |
BIN
rainloop/v/0.0.0/static/css/fonts/rainloop.ttf
Normal file
BIN
rainloop/v/0.0.0/static/css/fonts/rainloop.ttf
Normal file
Binary file not shown.
BIN
rainloop/v/0.0.0/static/css/fonts/rainloop.woff
Normal file
BIN
rainloop/v/0.0.0/static/css/fonts/rainloop.woff
Normal file
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 244 B After Width: | Height: | Size: 832 B |
|
|
@ -3067,22 +3067,24 @@ a.badge:hover {
|
|||
.affix {
|
||||
position: fixed;
|
||||
}
|
||||
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
||||
@font-face {
|
||||
font-family: 'icomoon';
|
||||
src: url('fonts/icomoon.svg#icomoon') format('svg');
|
||||
}
|
||||
}
|
||||
[class^="icon-"],
|
||||
[class*=" icon-"] {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
font-size: 15px;
|
||||
*margin-right: .3em;
|
||||
line-height: 17px;
|
||||
font-size: 16px;
|
||||
vertical-align: text-top;
|
||||
}
|
||||
.icon-folder,
|
||||
.icon-folder-add,
|
||||
.icon-address-book,
|
||||
.icon-list {
|
||||
line-height: 18px;
|
||||
font-size: 18px;
|
||||
margin-top: -2px;
|
||||
margin-left: -2px;
|
||||
}
|
||||
/* White icons with optional class, or on hover/active states of certain elements */
|
||||
.icon-white,
|
||||
.nav > .active > a > [class^="icon-"],
|
||||
|
|
@ -3093,22 +3095,8 @@ a.badge:hover {
|
|||
.g-ui-menu .e-item:hover [class*=" icon-"] {
|
||||
color: #fff;
|
||||
}
|
||||
[class^="icon2-"],
|
||||
[class*=" icon2-"] {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
font-size: 15px;
|
||||
*margin-right: .3em;
|
||||
vertical-align: text-top;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.icon2-none {
|
||||
background-image: none;
|
||||
}
|
||||
.icon3-as-button {
|
||||
cursor: pointer;
|
||||
.icon-none {
|
||||
background-image: none !important;
|
||||
}
|
||||
.icon-checkbox-checked,
|
||||
.icon-checkbox-unchecked,
|
||||
|
|
@ -3150,10 +3138,6 @@ a.badge:hover {
|
|||
.icon-white.icon-radio-unchecked:active {
|
||||
color: #fff;
|
||||
}
|
||||
.icon-refresh.in-process {
|
||||
background-position: 0px 0px;
|
||||
background-image: url('images/sync.gif');
|
||||
}
|
||||
.denied-by-browser {
|
||||
cursor: default;
|
||||
}
|
||||
|
|
@ -3161,19 +3145,11 @@ a.badge:hover {
|
|||
.denied-by-browser icon-checkbox-unchecked {
|
||||
cursor: default;
|
||||
}
|
||||
.icon-arrow-right-3,
|
||||
.icon-arrow-down-3 {
|
||||
.right-mini,
|
||||
.down-mini {
|
||||
width: 16px;
|
||||
line-height: 20px;
|
||||
}
|
||||
.icon2-reload {
|
||||
background-image: url('images/sync.png');
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.icon2-aminate-reload {
|
||||
background-image: url('images/sync.gif');
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
@-webkit-keyframes rotation {
|
||||
from {
|
||||
-webkit-transform: rotate(0deg);
|
||||
|
|
@ -3198,38 +3174,26 @@ a.badge:hover {
|
|||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
.icon-repeat,
|
||||
.icon-spinner,
|
||||
.icon-spinner-2 {
|
||||
.icon-spinner {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.icon-repeat:before,
|
||||
.icon-spinner:before,
|
||||
.icon-spinner-2:before {
|
||||
.icon-spinner:before {
|
||||
font-size: 16px;
|
||||
line-height: 100%;
|
||||
}
|
||||
html.no-cssanimations .icon-repeat,
|
||||
html.no-cssanimations .icon-spinner,
|
||||
html.no-cssanimations .icon-spinner-2 {
|
||||
html.no-cssanimations .icon-spinner {
|
||||
background-image: url('images/sync.png');
|
||||
background-repeat: no-repeat;
|
||||
font-family: Arial;
|
||||
}
|
||||
html.no-cssanimations .icon-repeat:before,
|
||||
html.no-cssanimations .icon-spinner:before,
|
||||
html.no-cssanimations .icon-spinner-2:before {
|
||||
html.no-cssanimations .icon-spinner:before {
|
||||
content: "";
|
||||
}
|
||||
html.no-cssanimations .icon-repeat.animated,
|
||||
html.no-cssanimations .icon-spinner.animated,
|
||||
html.no-cssanimations .icon-spinner-2.animated {
|
||||
html.no-cssanimations .icon-spinner.animated {
|
||||
background-image: url('images/sync.gif');
|
||||
}
|
||||
html.cssanimations .icon-repeat.animated,
|
||||
html.cssanimations .icon-spinner.animated,
|
||||
html.cssanimations .icon-spinner-2.animated {
|
||||
html.cssanimations .icon-spinner.animated {
|
||||
-webkit-animation: rotation 1s infinite linear;
|
||||
-moz-animation: rotation 1s infinite linear;
|
||||
animation: rotation 1s infinite linear;
|
||||
|
|
|
|||
|
|
@ -1859,7 +1859,7 @@ Utils.convertPlainTextToHtml = function (sPlain)
|
|||
|
||||
Utils.draggeblePlace = function ()
|
||||
{
|
||||
return $('<div class="draggablePlace"><span class="text"></span> <i class="icon-envelope icon-white"></i></div>').appendTo('#rl-hidden');
|
||||
return $('<div class="draggablePlace"><span class="text"></span> <i class="icon-mail icon-white"></i></div>').appendTo('#rl-hidden');
|
||||
};
|
||||
|
||||
Utils.defautOptionsAfterRender = function (oOption, oItem)
|
||||
|
|
@ -2591,66 +2591,6 @@ ko.bindingHandlers.nano = {
|
|||
}
|
||||
};
|
||||
|
||||
ko.bindingHandlers.saveTrigger1 = {
|
||||
'init': function (oElement) {
|
||||
|
||||
var $oEl = $(oElement);
|
||||
|
||||
$oEl.data('save-trigger-type', $oEl.is('input[type=text]') ? 'input' : 'custom');
|
||||
|
||||
if ('custom' === $oEl.data('save-trigger-type'))
|
||||
{
|
||||
$oEl.append(
|
||||
' <i class="icon-spinner-2 animated"></i><i class="icon-remove error"></i><i class="icon-ok success"></i>'
|
||||
).addClass('settings-saved-trigger');
|
||||
}
|
||||
else
|
||||
{
|
||||
$oEl.addClass('settings-saved-trigger-input');
|
||||
}
|
||||
},
|
||||
'update': function (oElement, fValueAccessor) {
|
||||
var
|
||||
mValue = ko.utils.unwrapObservable(fValueAccessor()),
|
||||
$oEl = $(oElement),
|
||||
bCustom = 'custom' === $oEl.data('save-trigger-type'),
|
||||
sSuffix = bCustom ? '' : '-input'
|
||||
;
|
||||
|
||||
switch (mValue.toString())
|
||||
{
|
||||
case '1':
|
||||
$oEl
|
||||
.find('.sst-animated' + sSuffix + ',.sst-error' + sSuffix).hide().removeClass('sst-visible' + sSuffix)
|
||||
.end()
|
||||
.find('.sst-success' + sSuffix).show().addClass('sst-visible' + sSuffix)
|
||||
;
|
||||
break;
|
||||
case '0':
|
||||
$oEl
|
||||
.find('.sst-animated' + sSuffix + ',.sst-success' + sSuffix).hide().removeClass('sst-visible' + sSuffix)
|
||||
.end()
|
||||
.find('.sst-error' + sSuffix).show().addClass('sst-visible' + sSuffix)
|
||||
;
|
||||
break;
|
||||
case '-2':
|
||||
$oEl
|
||||
.find('.sst-error' + sSuffix + ',.sst-success' + sSuffix).hide().removeClass('sst-visible' + sSuffix)
|
||||
.end()
|
||||
.find('.sst-animated' + sSuffix).show().addClass('sst-visible' + sSuffix)
|
||||
;
|
||||
break;
|
||||
default:
|
||||
$oEl
|
||||
.find('.sst-animated' + sSuffix).hide()
|
||||
.end()
|
||||
.find('.sst-error' + sSuffix + ',.sst-success' + sSuffix).removeClass('sst-visible' + sSuffix)
|
||||
;
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
ko.bindingHandlers.saveTrigger = {
|
||||
'init': function (oElement) {
|
||||
|
||||
|
|
@ -2661,7 +2601,7 @@ ko.bindingHandlers.saveTrigger = {
|
|||
if ('custom' === $oEl.data('save-trigger-type'))
|
||||
{
|
||||
$oEl.append(
|
||||
' <i class="icon-spinner-2 animated"></i><i class="icon-remove error"></i><i class="icon-ok success"></i>'
|
||||
' <i class="icon-spinner animated"></i><i class="icon-remove error"></i><i class="icon-ok success"></i>'
|
||||
).addClass('settings-saved-trigger');
|
||||
}
|
||||
else
|
||||
|
|
|
|||
4
rainloop/v/0.0.0/static/js/admin.min.js
vendored
4
rainloop/v/0.0.0/static/js/admin.min.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1859,7 +1859,7 @@ Utils.convertPlainTextToHtml = function (sPlain)
|
|||
|
||||
Utils.draggeblePlace = function ()
|
||||
{
|
||||
return $('<div class="draggablePlace"><span class="text"></span> <i class="icon-envelope icon-white"></i></div>').appendTo('#rl-hidden');
|
||||
return $('<div class="draggablePlace"><span class="text"></span> <i class="icon-mail icon-white"></i></div>').appendTo('#rl-hidden');
|
||||
};
|
||||
|
||||
Utils.defautOptionsAfterRender = function (oOption, oItem)
|
||||
|
|
@ -2591,66 +2591,6 @@ ko.bindingHandlers.nano = {
|
|||
}
|
||||
};
|
||||
|
||||
ko.bindingHandlers.saveTrigger1 = {
|
||||
'init': function (oElement) {
|
||||
|
||||
var $oEl = $(oElement);
|
||||
|
||||
$oEl.data('save-trigger-type', $oEl.is('input[type=text]') ? 'input' : 'custom');
|
||||
|
||||
if ('custom' === $oEl.data('save-trigger-type'))
|
||||
{
|
||||
$oEl.append(
|
||||
' <i class="icon-spinner-2 animated"></i><i class="icon-remove error"></i><i class="icon-ok success"></i>'
|
||||
).addClass('settings-saved-trigger');
|
||||
}
|
||||
else
|
||||
{
|
||||
$oEl.addClass('settings-saved-trigger-input');
|
||||
}
|
||||
},
|
||||
'update': function (oElement, fValueAccessor) {
|
||||
var
|
||||
mValue = ko.utils.unwrapObservable(fValueAccessor()),
|
||||
$oEl = $(oElement),
|
||||
bCustom = 'custom' === $oEl.data('save-trigger-type'),
|
||||
sSuffix = bCustom ? '' : '-input'
|
||||
;
|
||||
|
||||
switch (mValue.toString())
|
||||
{
|
||||
case '1':
|
||||
$oEl
|
||||
.find('.sst-animated' + sSuffix + ',.sst-error' + sSuffix).hide().removeClass('sst-visible' + sSuffix)
|
||||
.end()
|
||||
.find('.sst-success' + sSuffix).show().addClass('sst-visible' + sSuffix)
|
||||
;
|
||||
break;
|
||||
case '0':
|
||||
$oEl
|
||||
.find('.sst-animated' + sSuffix + ',.sst-success' + sSuffix).hide().removeClass('sst-visible' + sSuffix)
|
||||
.end()
|
||||
.find('.sst-error' + sSuffix).show().addClass('sst-visible' + sSuffix)
|
||||
;
|
||||
break;
|
||||
case '-2':
|
||||
$oEl
|
||||
.find('.sst-error' + sSuffix + ',.sst-success' + sSuffix).hide().removeClass('sst-visible' + sSuffix)
|
||||
.end()
|
||||
.find('.sst-animated' + sSuffix).show().addClass('sst-visible' + sSuffix)
|
||||
;
|
||||
break;
|
||||
default:
|
||||
$oEl
|
||||
.find('.sst-animated' + sSuffix).hide()
|
||||
.end()
|
||||
.find('.sst-error' + sSuffix + ',.sst-success' + sSuffix).removeClass('sst-visible' + sSuffix)
|
||||
;
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
ko.bindingHandlers.saveTrigger = {
|
||||
'init': function (oElement) {
|
||||
|
||||
|
|
@ -2661,7 +2601,7 @@ ko.bindingHandlers.saveTrigger = {
|
|||
if ('custom' === $oEl.data('save-trigger-type'))
|
||||
{
|
||||
$oEl.append(
|
||||
' <i class="icon-spinner-2 animated"></i><i class="icon-remove error"></i><i class="icon-ok success"></i>'
|
||||
' <i class="icon-spinner animated"></i><i class="icon-remove error"></i><i class="icon-ok success"></i>'
|
||||
).addClass('settings-saved-trigger');
|
||||
}
|
||||
else
|
||||
|
|
@ -6167,36 +6107,36 @@ AttachmentModel.prototype.iconClass = function ()
|
|||
{
|
||||
if ('image' === aParts[0])
|
||||
{
|
||||
sClass = 'icon-image';
|
||||
sClass = 'icon-file-image';
|
||||
}
|
||||
else if ('text' === aParts[0])
|
||||
{
|
||||
sClass = 'icon-file-xml';
|
||||
sClass = 'icon-file-text';
|
||||
}
|
||||
else if ('audio' === aParts[0])
|
||||
{
|
||||
sClass = 'icon-music';
|
||||
sClass = 'icon-file-music';
|
||||
}
|
||||
else if ('video' === aParts[0])
|
||||
{
|
||||
sClass = 'icon-film';
|
||||
sClass = 'icon-file-movie';
|
||||
}
|
||||
else if (-1 < Utils.inArray(aParts[1],
|
||||
['zip', '7z', 'tar', 'rar', 'gzip', 'bzip', 'bzip2', 'x-zip', 'x-7z', 'x-rar', 'x-tar', 'x-gzip', 'x-bzip', 'x-bzip2', 'x-zip-compressed', 'x-7z-compressed', 'x-rar-compressed']))
|
||||
{
|
||||
sClass = 'icon-file-zip';
|
||||
}
|
||||
else if (-1 < Utils.inArray(aParts[1],
|
||||
['pdf', 'x-pdf']))
|
||||
{
|
||||
sClass = 'icon-file-pdf';
|
||||
}
|
||||
else if (-1 < Utils.inArray(aParts[1], [
|
||||
'exe', 'x-exe', 'x-winexe', 'bat'
|
||||
]))
|
||||
{
|
||||
sClass = 'icon-console';
|
||||
}
|
||||
// else if (-1 < Utils.inArray(aParts[1],
|
||||
// ['pdf', 'x-pdf']))
|
||||
// {
|
||||
// sClass = 'icon-file-pdf';
|
||||
// }
|
||||
// else if (-1 < Utils.inArray(aParts[1], [
|
||||
// 'exe', 'x-exe', 'x-winexe', 'bat'
|
||||
// ]))
|
||||
// {
|
||||
// sClass = 'icon-console';
|
||||
// }
|
||||
else if (-1 < Utils.inArray(aParts[1], [
|
||||
'rtf', 'msword', 'vnd.msword', 'vnd.openxmlformats-officedocument.wordprocessingml.document',
|
||||
'vnd.openxmlformats-officedocument.wordprocessingml.template',
|
||||
|
|
@ -6204,7 +6144,7 @@ AttachmentModel.prototype.iconClass = function ()
|
|||
'vnd.ms-word.template.macroEnabled.12'
|
||||
]))
|
||||
{
|
||||
sClass = 'icon-file-word';
|
||||
sClass = 'icon-file-text';
|
||||
}
|
||||
else if (-1 < Utils.inArray(aParts[1], [
|
||||
'excel', 'ms-excel', 'vnd.ms-excel',
|
||||
|
|
@ -6229,7 +6169,7 @@ AttachmentModel.prototype.iconClass = function ()
|
|||
'vnd.ms-powerpoint.slideshow.macroEnabled.12'
|
||||
]))
|
||||
{
|
||||
sClass = 'icon-file-powerpoint';
|
||||
sClass = 'icon-file-chart-graph';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -6353,11 +6293,11 @@ function MessageModel()
|
|||
sClass = 'icon-file-zip';
|
||||
break;
|
||||
case 'doc':
|
||||
sClass = 'icon-file';
|
||||
break;
|
||||
case 'pdf':
|
||||
sClass = 'icon-file-pdf';
|
||||
sClass = 'icon-file-text';
|
||||
break;
|
||||
// case 'pdf':
|
||||
// sClass = 'icon-file-pdf';
|
||||
// break;
|
||||
}
|
||||
}
|
||||
return sClass;
|
||||
|
|
@ -7465,7 +7405,7 @@ FolderModel.prototype.isUnpaddigFolder = false;
|
|||
FolderModel.prototype.collapsedCss = function ()
|
||||
{
|
||||
return this.hasSubScribedSubfolders() ?
|
||||
(this.collapsed() ? 'icon-arrow-right-3 e-collapsed-sign' : 'icon-arrow-down-3 e-collapsed-sign') : 'icon-none e-collapsed-sign';
|
||||
(this.collapsed() ? 'icon-right-mini e-collapsed-sign' : 'icon-down-mini e-collapsed-sign') : 'icon-none e-collapsed-sign';
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
12
rainloop/v/0.0.0/static/js/app.min.js
vendored
12
rainloop/v/0.0.0/static/js/app.min.js
vendored
File diff suppressed because one or more lines are too long
BIN
vendors/fontastic/fonts/rainloop.eot
vendored
Normal file
BIN
vendors/fontastic/fonts/rainloop.eot
vendored
Normal file
Binary file not shown.
102
vendors/fontastic/fonts/rainloop.svg
vendored
Normal file
102
vendors/fontastic/fonts/rainloop.svg
vendored
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Generated by Fontastic.me</metadata>
|
||||
<defs>
|
||||
<font id="rainloop" horiz-adv-x="512">
|
||||
<font-face font-family="rainloop" units-per-em="512" ascent="480" descent="-32"/>
|
||||
<missing-glyph horiz-adv-x="512" />
|
||||
|
||||
<glyph unicode="" d="m416 351c5 0 10 4 10 10l0 30c0 6-5 10-10 10l-24 0l0 9c0 9-7 16-16 16l-274 0c-9 0-16-7-16-16l0-308c0-9 7-16 16-16l274 0c9 0 16 7 16 16l0 9l24 0c5 0 10 5 10 10l0 30c0 6-5 11-10 11l-24 0l0 29l24 0c5 0 10 4 10 10l0 30c0 6-5 11-10 11l-24 0l0 29l24 0c5 0 10 4 10 10l0 30c0 6-5 10-10 10l-24 0l0 30l24 0z m-97-165c0-6-4-11-9-11l-142 0c-5 0-10 5-10 11l0 44c0 4 3 8 6 10l56 26c-13 8-22 24-22 42c0 27 18 48 41 48c23 0 41-21 41-48c0-18-9-34-21-42l55-26c3-2 5-6 5-10l0-44z"/>
|
||||
<glyph unicode="" d="m184 54l24 145c1 3 0 5-2 7c0 0 0 0 0 0c-2 2-5 3-7 3l-145-25c-3 0-5-2-6-5c-1-3 0-7 2-9l28-28l-76-76c-3-3-3-8 0-11l53-53c3-3 8-3 11 0l76 76l28-28c3-2 6-3 9-2c3 1 5 3 5 6z m144 404l-24-145c-1-3 0-5 2-7c0 0 0 0 0 0c2-2 5-3 7-3l145 25c3 0 5 2 6 5c1 3 0 7-2 9l-28 28l76 76c3 3 3 8 0 11l-53 53c-3 3-8 3-11 0l-76-76l-28 28c-3 2-6 3-9 2c-3-1-5-3-5-6z m130-274l-145 24c-3 1-5 0-7-2c0 0 0 0 0 0c-2-2-3-5-3-7l25-145c0-3 2-5 5-6c3-1 7 0 9 2l28 28l76-76c3-3 8-3 11 0l53 53c3 3 3 8 0 11l-76 76l28 28c2 3 3 6 2 9c-1 3-3 5-6 5z m-404 144l145-24c3-1 5 0 7 2c0 0 0 0 0 0c2 2 3 5 3 7l-25 145c0 3-2 5-5 6c-3 1-6 0-9-2l-28-28l-76 76c-3 3-8 3-11 0l-53-53c-3-3-3-8 0-11l76-76l-28-28c-2-3-3-6-2-9c1-3 3-5 6-5z"/>
|
||||
<glyph unicode="" d="m24 154l-24-144c0-3 1-6 2-8c0 0 0 0 0 0c2-1 5-2 8-2l144 25c3 0 6 2 6 5c1 3 1 6-2 8l-28 29l76 75c3 4 3 9 0 12l-52 52c-3 4-9 4-12 0l-76-75l-28 28c-2 2-5 3-8 2c-3-1-5-4-6-7z m464 204l24 144c0 3-1 6-2 8c0 0 0 0 0 0c-2 1-5 2-8 2l-144-25c-3 0-6-2-6-5c-1-3-1-6 2-8l28-29l-76-75c-3-4-3-9 0-12l52-52c3-4 9-4 12 0l76 75l28-28c2-2 5-3 8-2c3 1 5 4 6 7z m-130-334l144-24c3 0 6 1 8 2c0 0 0 0 0 0c1 2 2 5 2 8l-25 144c0 3-2 6-5 6c-3 1-6 1-8-2l-29-28l-75 76c-4 3-9 3-12 0l-52-52c-4-3-4-9 0-12l75-76l-28-28c-2-2-3-5-2-8c1-3 4-5 7-6z m-204 464l-144 24c-3 0-6-1-8-2c0 0 0 0 0 0c-1-2-2-5-2-8l25-144c0-3 2-6 5-6c3-1 6-1 8 2l29 28l75-76c4-3 9-3 12 0l52 52c4 3 4 9 0 12l-75 76l28 28c2 2 3 5 2 8c-1 3-4 5-7 6z"/>
|
||||
<glyph unicode="" d="m90 357l0 0c0-6 5-12 11-12l0 0l310 0l0 0c6 0 11 6 11 12l0 0l0 54c0 6-5 11-11 11l-310 0c-6 0-11-5-11-11c0-1 0-1 0-1z m321-63l-310 0c-6 0-11-5-11-11c0 0 0-1 0-1l0-53l0 0c0-6 5-11 11-11l0 0l310 0l0 0c6 0 11 5 11 11l0 0l0 54c0 6-5 11-11 11z m0-127l-310 0c-6 0-11-6-11-12c0 0 0 0 0-1l0-53l0 0c0-6 5-11 11-11l0 0l310 0l0 0c6 0 11 5 11 11l0 0l0 54c0 6-5 12-11 12z"/>
|
||||
<glyph unicode="" d="m291 459c-91 0-164-74-164-164c0-31 8-60 23-85l-79-79l0 0c-8-8-14-20-14-33c0-25 21-45 46-45c12 0 24 5 32 14l0 0l82 81c22-11 47-17 74-17c90 0 164 73 164 164c0 90-74 164-164 164z m1-263c-57 0-103 45-103 102c0 56 46 102 103 102c56 0 102-46 102-102c0-57-46-102-102-102z"/>
|
||||
<glyph unicode="" d="m392 142c70-24 105-45 105-62c0 0 0-54 0-54c0 0-241 0-241 0c0 0-241 0-241 0c0 0 0 54 0 54c0 17 35 38 105 62c32 12 54 24 65 36c12 12 18 28 18 48c0 8-4 16-12 25c-7 10-12 22-16 38c-1 4-2 7-5 9c-2 2-4 3-7 4c-2 1-4 4-7 9c-2 5-4 12-4 22c0 5 0 10 2 13c2 4 3 6 5 6c0 0 2 2 2 2c-3 17-5 32-6 45c-2 19 5 38 21 58c15 20 42 29 80 29c38 0 65-9 81-29c16-20 22-39 20-58c0 0-6-45-6-45c6-2 9-10 9-21c0-10-2-17-4-22c-3-5-5-8-7-9c-3-1-5-2-7-4c-3-2-4-5-5-9c-3-17-8-29-16-38c-8-9-12-17-12-25c0-20 6-36 18-48c12-12 34-24 65-36"/>
|
||||
<glyph unicode="" d="m317 142c62-22 93-42 93-62c0 0 0-54 0-54c0 0-410 0-410 0c0 0 0 103 0 103c12 5 26 9 42 13c32 12 54 24 66 36c12 12 18 28 18 48c0 8-4 16-12 25c-8 9-13 21-16 38c0 4-4 8-11 13c-8 4-12 14-13 31c0 5 1 10 2 13c2 4 4 6 5 6c0 0 2 2 2 2c-3 17-5 32-6 45c-2 19 5 38 20 58c16 20 43 29 82 29c39 0 66-9 82-29c16-20 23-39 22-58c0 0-8-45-8-45c7-2 10-10 10-21c-1-10-3-17-5-22c-2-5-5-8-7-9c-2-1-5-2-7-4c-3-2-4-5-5-9c-3-16-9-28-17-38c-8-9-12-17-12-25c0-20 7-36 19-48c12-12 34-24 66-36m118 140c0 0 77 0 77 0c0 0 0-52 0-52c0 0-77 0-77 0c0 0 0-76 0-76c0 0-51 0-51 0c0 0 0 76 0 76c0 0-77 0-77 0c0 0 0 52 0 52c0 0 77 0 77 0c0 0 0 76 0 76c0 0 51 0 51 0c0 0 0-76 0-76"/>
|
||||
<glyph unicode="" d="m119 375c0 10-3 18-10 25c-6 6-14 10-24 10c-9 0-17-4-24-10c-6-7-10-15-10-25c0-9 4-17 10-24c7-6 15-10 24-10c10 0 18 4 24 10c7 7 10 15 10 24z m285-153c0-10-3-18-10-24l-131-131c-7-7-15-10-24-10c-9 0-17 3-24 10l-191 191c-6 6-12 15-17 27c-5 11-7 21-7 31l0 111c0 9 3 17 10 24c7 6 15 10 24 10l111 0c9 0 20-3 31-7c12-5 21-11 27-17l191-191c7-7 10-15 10-24z m102 0c0-10-3-18-9-24l-131-131c-7-7-15-10-25-10c-6 0-11 1-15 4c-4 2-9 6-15 12l126 125c6 6 10 14 10 24c0 9-4 17-10 24l-191 191c-7 6-16 12-27 17c-11 4-22 7-31 7l59 0c10 0 20-3 32-7c11-5 20-11 27-17l191-191c6-7 9-15 9-24z"/>
|
||||
<glyph unicode="" d="m478 445c5 2 8 1 11-1c3-2 4-6 2-10c0-2-13-55-37-159c-23-103-36-157-37-161c-1-5-4-8-8-10c-4-2-8-2-12 0c0 0-127 69-127 69c0 0-15 8-15 8c0 0 11 14 11 14c132 143 200 216 202 218c1 1 1 3-1 4c-2 2-3 2-4 1c0 0-282-206-282-206c0 0-57 22-57 22c0 0-98 39-98 39c-4 2-6 4-6 7c0 2 2 4 6 6c3 1 78 28 226 80c148 52 223 79 226 79m-298-372c0 0 0 104 0 104c0 0 82-42 82-42c-44-39-69-61-73-65c-6-5-9-4-9 3"/>
|
||||
<glyph unicode="" d="m486 82c-29 52-64 85-106 101c-42 15-98 23-169 23c0 0 0-112 0-112c0 0-185 171-185 171c0 0 185 165 185 165c0 0 0-98 0-98c31 0 59-5 86-14c27-9 49-21 67-36c18-15 35-31 49-49c15-17 27-35 36-53c8-18 16-34 22-48c6-15 10-27 12-36c0 0 3-14 3-14"/>
|
||||
<glyph unicode="" d="m185 361c0 0-108-96-108-96c0 0 108-100 108-100c0 0 0-71 0-71c0 0-185 171-185 171c0 0 185 165 185 165c0 0 0-69 0-69m128-29c36 0 67-9 94-26c26-17 46-38 58-62c13-25 23-49 31-74c8-25 13-45 14-62c0 0 2-26 2-26c-29 52-58 86-86 101c-28 15-66 23-113 23c0 0 0-112 0-112c0 0-185 171-185 171c0 0 185 165 185 165c0 0 0-98 0-98"/>
|
||||
<glyph unicode="" d="m302 206c-72 0-128-8-170-23c-42-16-77-49-106-101c1 7 3 16 6 27c3 11 12 31 26 60c14 29 30 54 49 76c19 22 45 42 80 60c34 18 73 27 115 27c0 0 0 98 0 98c0 0 184-165 184-165c0 0-184-171-184-171c0 0 0 112 0 112"/>
|
||||
<glyph unicode="" d="m318 512c17 0 29-5 38-14c9-9 14-21 14-35c0-17-7-32-20-45c-14-13-30-20-49-20c-16 0-29 5-38 14c-9 9-13 21-12 37c0 15 6 30 18 43c12 13 28 20 49 20m-105-512c-34 0-43 30-28 91c0 0 31 130 31 130c5 19 5 29 0 29c-4 0-13-3-28-9c-14-7-26-13-36-20c0 0-14 23-14 23c31 26 63 48 97 64c34 17 60 25 77 25c27 0 33-28 19-83c0 0-36-136-36-136c-6-22-5-33 3-33c15 0 35 10 60 31c0 0 16-21 16-21c-29-29-59-52-90-67c-31-16-55-24-71-24"/>
|
||||
<glyph unicode="" d="m154 374c0 0 204-118 204-118c0 0-204-118-204-118c0 0 0 236 0 236"/>
|
||||
<glyph unicode="" d="m374 358c0 0-118-204-118-204c0 0-118 204-118 204c0 0 236 0 236 0"/>
|
||||
<glyph unicode="" d="m171 341c0-14-5-26-15-36c-10-10-22-15-37-15c-14 0-26 5-36 15c-10 10-15 22-15 36c0 15 5 27 15 37c10 10 22 15 36 15c15 0 27-5 37-15c10-10 15-22 15-37z m273-102l0-120l-376 0l0 52l86 85l42-43l137 137z m25 188l-426 0c-3 0-5-1-6-3c-2-2-3-4-3-6l0-324c0-2 1-4 3-6c1-2 3-3 6-3l426 0c3 0 5 1 6 3c2 2 3 4 3 6l0 324c0 2-1 4-3 6c-1 2-3 3-6 3z m43-9l0-324c0-12-4-22-13-30c-8-9-18-13-30-13l-426 0c-12 0-22 4-30 13c-9 8-13 18-13 30l0 324c0 12 4 22 13 30c8 9 18 13 30 13l426 0c12 0 22-4 30-13c9-8 13-18 13-30z"/>
|
||||
<glyph unicode="" d="m39 346c-9 0-13 4-11 11c1 4 3 6 6 8c0 0 9 2 25 8c16 6 32 12 47 17c16 5 26 7 30 7c0 0 23 0 23 0c0 0 0 77 0 77c0 0 194 0 194 0c0 0 0-77 0-77c0 0 24 0 24 0c4 0 14-2 29-7c15-5 31-11 47-17c16-6 25-8 25-8c6-3 8-8 6-14c-1-3-4-5-10-5c0 0-435 0-435 0m440-29c7 0 13-3 19-9c6-7 9-14 9-21c0 0 0-89 0-89c0-8-3-15-9-21c-6-7-12-10-19-10c0 0-51 0-51 0c0 0 23-128 23-128c0 0-390 0-390 0c0 0 23 128 23 128c0 0-50 0-50 0c-7 0-14 3-20 10c-6 6-9 13-9 21c0 0 0 89 0 89c0 7 3 14 9 21c6 6 13 9 20 9c0 0 445 0 445 0m-366-227c0 0 286 0 286 0c0 0-35 166-35 166c0 0-216 0-216 0c0 0-35-166-35-166"/>
|
||||
<glyph unicode="" d="m55 37l82 0l0 82l-82 0z m100 0l92 0l0 82l-92 0z m-100 100l82 0l0 92l-82 0z m100 0l92 0l0 92l-92 0z m-100 110l82 0l0 82l-82 0z m210-210l92 0l0 82l-92 0z m-110 210l92 0l0 82l-92 0z m220-210l82 0l0 82l-82 0z m-110 100l92 0l0 92l-92 0z m-100 247l0 82c0 3-1 5-3 7c-2 2-4 2-7 2l-18 0c-2 0-4 0-6-2c-2-2-3-4-3-7l0-82c0-2 1-5 3-6c2-2 4-3 6-3l18 0c3 0 5 1 7 3c2 1 3 4 3 6z m210-247l82 0l0 92l-82 0z m-110 110l92 0l0 82l-92 0z m110 0l82 0l0 82l-82 0z m9 137l0 82c0 3-1 5-3 7c-2 2-4 2-6 2l-18 0c-3 0-5 0-7-2c-2-2-3-4-3-7l0-82c0-2 1-5 3-6c2-2 4-3 7-3l18 0c2 0 4 1 6 3c2 1 3 4 3 6z m110 18l0-365c0-10-4-19-11-26c-7-7-16-11-26-11l-402 0c-10 0-19 4-26 11c-7 7-11 16-11 26l0 365c0 10 4 19 11 26c7 7 16 11 26 11l36 0l0 27c0 13 5 24 14 33c9 9 20 13 32 13l18 0c13 0 24-4 33-13c9-9 13-20 13-33l0-27l110 0l0 27c0 13 4 24 13 33c9 9 20 13 33 13l18 0c12 0 23-4 32-13c9-9 14-20 14-33l0-27l36 0c10 0 19-4 26-11c7-7 11-16 11-26z"/>
|
||||
<glyph unicode="" d="m430 256c0-25 14-45 41-62c-4-14-10-28-17-42c-24 6-47-2-70-23c-18-20-24-43-17-70c-14-6-28-13-43-18c-16 28-39 42-68 42c-29 0-52-14-68-42c-15 5-29 12-43 18c7 28 1 51-17 70c-18 18-42 24-70 17c-4 9-10 23-17 42c28 18 42 41 42 68c0 25-14 46-42 63c7 20 13 34 17 42c26-6 49 2 70 23c18 19 24 42 17 70c15 7 29 13 43 17c16-27 39-41 68-41c29 0 52 14 68 41c14-4 28-10 43-17c-7-27-1-50 17-70c23-21 46-29 70-23c7-14 13-28 17-42c-27-17-41-38-41-63m-174-93c26 0 48 9 66 27c18 18 27 40 27 66c0 26-9 48-27 67c-18 18-40 27-66 27c-26 0-48-9-66-27c-18-19-27-41-27-67c0-26 9-48 27-66c18-18 40-27 66-27"/>
|
||||
<glyph unicode="" d="m442 392l-20-20l-19-19l-25-24c-13-1-26 4-36 13c-9 10-14 23-13 36l63 64c1 1 1 3 0 4c0 1 0 1-1 1l0 0c0 0 0 0 0 0c0 0 0 0 0 0c-14 6-29 10-45 10c-61 0-111-50-111-111c0-12 2-23 6-33l-116-116c-39-1-70-32-70-71c0-39 32-71 71-71c39 0 70 31 71 70l116 116c10-4 21-6 33-6c61 0 111 50 111 111c0 16-4 31-10 45c0 0 0 0 0 0c0 0 0 1 0 1l0 0c0 0-1 0-1 0c-1 1-3 1-4 0z m-286-266c0-16-14-29-30-29c-16 0-29 13-29 29c0 16 13 30 29 30c16 0 30-14 30-30z"/>
|
||||
<glyph unicode="" d="m314 198c3-17 4-31 5-42c0-10-1-20-5-30c-3-10-5-16-6-21c-1-4-7-9-18-16c-11-7-19-11-23-13c-5-2-17-8-36-16c-19-9-34-15-43-19c-11-4-19-3-24 2c-4 5-4 13-1 23c0 0 20 56 20 56c0 0-66 67-66 67c0 0-54-20-54-20c-10-4-17-4-22 1c-6 5-6 13-2 24c4 10 9 23 16 40c6 17 11 28 14 33c2 6 6 13 11 23c5 10 9 16 13 19c4 2 9 6 15 10c6 4 13 7 21 7c0 0 26 0 26 0c0 0 12-1 37-3c3 4 8 11 14 20c7 8 20 23 40 43c20 21 40 38 60 53c21 15 46 28 75 39c29 10 57 14 84 9c3 0 5-1 7-3c2-1 3-3 3-7c4-28 1-56-9-86c-10-29-22-55-39-77c-16-22-33-42-50-61c-17-18-32-31-44-41c0 0-19-14-19-14m26 151c8-7 17-11 28-11c11 0 20 4 27 11c8 8 12 18 12 29c0 11-4 20-12 29c-7 7-16 11-27 11c-11 0-20-4-28-11c-7-9-11-18-11-29c0-11 4-21 11-29"/>
|
||||
<glyph unicode="" d="m176 36c-90 51-114 99-100 165c10 48 43 87 46 136c14-26 20-44 21-71c45 55 74 130 76 210c0 0 116-68 123-171c10 21 15 55 5 76c30-21 206-215-23-345c43 84 11 197-64 249c5-22-4-106-37-143c9 62-9 88-9 88c0 0-6-35-29-69c-22-32-37-66-9-125z"/>
|
||||
<glyph unicode="" d="m201 73c0-10-3-19-11-26c-7-7-15-10-25-10c-11 0-19 3-26 10c-7 7-11 16-11 26c0 10 4 19 11 26c7 7 15 11 26 11c10 0 18-4 25-11c8-7 11-16 11-26z m256 0c0-10-3-19-11-26c-7-7-15-10-25-10c-11 0-19 3-26 10c-7 7-11 16-11 26c0 10 4 19 11 26c7 7 15 11 26 11c10 0 18-4 25-11c8-7 11-16 11-26z m37 311l0-146c0-5-2-9-5-12c-3-4-7-6-12-7l-298-34c0-2 1-4 1-7c1-2 2-5 2-7c1-2 1-5 1-6c0-3-2-10-7-19l263 0c5 0 9-2 13-5c3-4 5-8 5-13c0-5-2-9-5-13c-4-3-8-5-13-5l-293 0c-5 0-9 2-13 5c-3 4-5 8-5 13c0 3 1 6 3 11c2 5 5 11 9 17c3 7 5 10 5 11l-50 235l-58 0c-5 0-10 2-13 6c-4 3-6 8-6 13c0 5 2 9 6 12c3 4 8 6 13 6l73 0c3 0 5-1 8-2c2-1 4-3 6-4c1-2 2-4 3-7c1-3 2-6 2-8c1-2 1-5 2-8c1-4 1-6 1-8l343 0c5 0 10-2 13-5c4-4 6-8 6-13z"/>
|
||||
<glyph unicode="" d="m280 451c16 20 44 34 67 35c3-27-8-54-24-73c-16-20-42-35-68-33c-3 27 10 54 25 71z m131-368c-19-28-39-56-70-57c-31 0-41 19-76 19c-35 0-46-18-75-19c-30-2-53 30-73 58c-39 57-69 162-29 232c20 35 56 57 95 58c30 0 58-20 76-20c18 0 52 25 88 21c15-1 57-6 84-46c-2-1-50-29-50-87c1-70 61-93 62-94c-1-1-10-33-32-65z"/>
|
||||
<glyph unicode="" d="m399 303l-137 84l87 72l137-85z m-51-159l132 78l-80 67l-129-78z m-107 67l-129 78l-80-67l132-78z m-123-56l0-25l132-81l0 154l-87-72z m276 0l-45-24l-87 72l0-154l132 81z m-144 232l-86 72l-138-85l87-71z"/>
|
||||
<glyph unicode="" d="m465 221c2 10 3 22 3 33c0 118-96 214-214 214c-11 0-22-1-33-3c-20 12-43 19-68 19c-71 0-129-57-129-129c0-25 7-48 19-68c-2-11-2-22-2-33c0-118 95-214 213-214c12 0 23 1 34 3c19-12 43-19 68-19c71 0 129 57 129 129c0 25-7 48-20 68z m-109-64c-9-13-23-23-40-31c-17-7-38-11-62-11c-28 0-52 5-70 15c-13 7-24 17-32 29c-9 12-13 24-13 36c0 6 3 12 8 17c5 5 12 7 19 7c7 0 12-2 16-5c5-4 9-10 12-17c3-8 7-15 11-21c4-5 10-10 18-14c7-3 17-5 30-5c17 0 31 4 41 11c11 7 16 16 16 27c0 9-3 15-8 21c-6 5-13 9-23 12c-9 3-21 6-36 9c-21 5-38 10-52 16c-14 6-26 15-34 25c-8 11-12 24-12 39c0 15 4 28 13 40c9 11 21 20 38 26c16 7 35 10 58 10c17 0 33-2 46-6c13-5 23-10 32-17c9-7 15-14 19-21c4-8 6-15 6-22c0-7-3-13-8-18c-5-6-11-8-19-8c-7 0-12 1-16 5c-3 3-7 8-11 15c-5 10-11 18-19 23c-7 6-18 8-34 8c-15 0-27-3-36-9c-9-6-13-13-13-21c0-5 1-9 4-13c3-4 7-7 13-10c5-3 11-5 16-6c6-2 15-4 28-7c16-4 31-8 44-12c13-4 24-9 34-15c9-7 16-14 22-24c5-9 7-21 7-34c0-17-4-31-13-44z"/>
|
||||
<glyph unicode="" d="m258 256c0 45 30 71 67 71c26 0 48-9 61-33l-30-16c-7 16-20 19-26 19c-23 0-31-18-31-41c0-23 10-41 31-41c12 0 22 5 29 20l28-14c-12-22-34-36-60-36c-41 0-69 25-69 71z m-64-71c26 0 48 14 60 36l-29 14c-6-15-16-20-28-20c-21 0-31 18-31 41c0 23 8 41 31 41c6 0 19-3 26-19l30 16c-13 24-35 33-61 33c-37 0-67-26-67-71c0-46 28-71 69-71z m-101-91c-44 44-67 101-67 162c0 61 24 119 68 163c43 44 98 67 162 67c63 0 120-23 164-67c44-44 66-101 66-163c0-63-22-119-65-162c-46-44-105-68-165-68c-61 0-119 24-163 68z m-26 162c0-49 21-97 57-133c36-36 82-55 132-55c50 0 98 19 135 56c35 35 54 80 54 132c0 51-19 98-55 133c-36 36-82 56-134 56c-52 0-97-19-132-55c-36-37-57-84-57-134z"/>
|
||||
<glyph unicode="" d="m77 312c16 0 29-5 40-16c11-11 16-24 16-40c0-15-5-28-16-39c-11-12-24-17-40-17c-16 0-29 5-40 17c-11 11-17 24-17 39c0 16 6 29 17 40c11 11 24 16 40 16m179 0c16 0 29-5 40-16c11-11 16-24 16-40c0-15-5-28-17-39c-11-12-24-17-39-17c-15 0-28 5-39 17c-12 11-17 24-17 39c0 16 5 29 16 40c11 11 24 16 40 16m179 0c16 0 29-5 40-16c11-11 17-24 17-40c0-15-6-28-17-39c-11-12-24-17-40-17c-15 0-29 5-40 17c-11 11-16 24-16 39c0 16 5 29 16 40c11 11 25 16 40 16"/>
|
||||
<glyph unicode="" d="m263 87c0 0-194 169-194 169c0 0 194 169 194 169c0 0 0-97 0-97c0 0 180 0 180 0c0 0 0-143 0-143c0 0-180 0-180 0c0 0 0-98 0-98"/>
|
||||
<glyph unicode="" d="m248 425c0 0 195-169 195-169c0 0-195-169-195-169c0 0 0 98 0 98c0 0-179 0-179 0c0 0 0 143 0 143c0 0 179 0 179 0c0 0 0 97 0 97"/>
|
||||
<glyph unicode="" d="m425 264c0 0-169-194-169-194c0 0-169 194-169 194c0 0 98 0 98 0c0 0 0 179 0 179c0 0 142 0 142 0c0 0 0-179 0-179c0 0 98 0 98 0"/>
|
||||
<glyph unicode="" d="m195 169c0 0 81 87 81 87c0 0-81 88-81 88c-9 9-9 17 0 25c9 9 17 9 24 0c0 0 99-100 99-100c8-9 8-17 0-25c0 0-99-100-99-100c-7-8-15-8-24 0c-9 8-9 16 0 25"/>
|
||||
<glyph unicode="" d="m344 317c8 9 16 9 25 0c9-7 9-15 0-24c0 0-101-98-101-98c-7-8-15-8-24 0c0 0-101 98-101 98c-9 9-9 17 0 24c9 9 17 9 26 0c0 0 87-79 87-79c0 0 88 79 88 79"/>
|
||||
<glyph unicode="" d="m425 249c0 0-98 0-98 0c0 0 0-179 0-179c0 0-142 0-142 0c0 0 0 179 0 179c0 0-98 0-98 0c0 0 169 194 169 194c0 0 169-194 169-194"/>
|
||||
<glyph unicode="" d="m343 225l88 85l-121 18l-54 109l-54-109l-121-18l88-85l-21-120l108 57l108-57z m151 102c0-4-3-9-8-14l-103-101l24-143c0-1 0-3 0-5c0-10-3-15-11-15c-4 0-8 2-12 4l-128 67l-128-67c-4-2-8-4-12-4c-4 0-7 2-9 5c-2 2-3 6-3 10c0 1 0 3 1 5l24 143l-104 101c-4 6-7 10-7 14c0 7 6 12 16 13l144 21l64 130c4 8 8 12 14 12c6 0 10-4 14-12l64-130l144-21c10-1 16-6 16-13z"/>
|
||||
<glyph unicode="" d="m494 327c0-4-3-9-8-14l-103-101l24-143c0-1 0-3 0-5c0-4-1-8-3-10c-2-3-4-5-8-5c-4 0-8 2-12 4l-128 67l-128-67c-4-2-8-4-12-4c-4 0-7 2-9 5c-2 2-3 6-3 10c0 1 0 3 1 5l24 143l-104 101c-4 6-7 10-7 14c0 7 6 12 16 13l144 21l64 130c4 8 8 12 14 12c6 0 10-4 14-12l64-130l144-21c10-1 16-6 16-13z"/>
|
||||
<glyph unicode="" d="m418 127l-7-5c-17-13-34-24-50-31c-29-13-61-20-95-20c-49 0-91 14-126 44c-39 33-58 78-58 135c0 51 16 95 50 131c36 41 85 61 146 61c33 0 63-8 89-22c42-24 63-62 63-115c0-36-7-65-23-87c-15-22-31-33-46-33c-8 0-14 3-18 8c-3 5-5 10-5 16c0 4 1 8 2 13c1 5 3 13 5 23l35 126l-51 0l-9-37c-3 12-8 22-16 30c-11 12-25 17-44 17c-32 0-59-15-81-46c-22-30-33-63-33-98c0-31 8-54 22-71c15-17 32-25 54-25c21 0 39 7 55 22c8 8 16 20 22 34c0-2 0-4 0-6c0-2 0-3 0-4c0-11 4-22 13-32c9-10 22-15 38-15c32 0 60 16 85 47c24 32 37 70 37 114c0 56-20 101-59 135c-37 32-83 48-139 48c-70 0-126-24-171-71c-42-44-63-98-63-162c0-57 17-106 51-147c41-51 98-76 172-76c32 0 63 6 92 17c30 11 57 28 83 49c0 0 12 11 5 27c-7 16-21 9-25 6z m-132 104c-12-32-28-47-47-47c-11 0-19 4-25 13c-6 8-9 20-9 34c0 24 7 48 20 73c13 25 29 38 48 38c10 0 17-4 23-11c5-7 8-15 8-26c0-18-6-43-18-74z"/>
|
||||
<glyph unicode="" d="m179 282c8 0 14-3 19-8c4-5 7-11 7-18c0-7-3-13-8-18c-5-5-11-8-18-8c0 0-153 0-153 0c-7 0-13 3-18 8c-5 5-8 11-8 18c0 7 2 13 7 18c5 5 11 8 19 8c0 0 153 0 153 0m0-103c8 0 14-2 19-7c4-6 7-12 7-18c0-7-3-13-8-18c-5-5-11-8-18-8c0 0-153 0-153 0c-7 0-13 3-18 8c-5 5-8 11-8 18c0 6 2 12 7 18c5 5 11 7 19 7c0 0 153 0 153 0m318 103c10 0 15-9 15-26c0-17-5-26-15-26c0 0-87 0-87 0c0 0 0-87 0-87c0-10-9-15-26-15c-17 0-26 5-26 15c0 0 0 87 0 87c0 0-84 0-84 0c-10 0-15 9-15 26c0 17 5 26 15 26c0 0 84 0 84 0c0 0 0 87 0 87c0 10 9 15 26 15c17 0 26-5 26-15c0 0 0-87 0-87c0 0 87 0 87 0m-318 102c8 0 14-3 19-8c4-5 7-11 7-18c0-6-3-12-8-18c-5-5-11-7-18-7c0 0-153 0-153 0c-7 0-13 2-18 7c-5 6-8 12-8 18c0 7 2 13 7 18c5 5 11 8 19 8c0 0 153 0 153 0"/>
|
||||
<glyph unicode="" d="m407 486l-125 0c-32 0-73-4-108-33c-26-22-39-53-39-81c0-47 37-95 101-95c6 0 12 1 19 1c-3-7-6-13-6-23c0-19 10-30 18-41c-27-2-78-5-115-28c-36-21-47-52-47-74c0-45 42-86 130-86c104 0 159 57 159 114c0 42-24 62-50 85l-22 17c-7 5-16 12-16 26c0 13 9 21 17 29c25 20 51 41 51 86c0 46-29 70-43 82l37 0z m-53-370c0-37-31-65-89-65c-65 0-107 31-107 74c0 43 39 57 52 62c26 9 58 10 64 10c6 0 9 0 14-1c46-32 66-49 66-80z m-49 195c-9-10-26-17-41-17c-52 0-75 67-75 108c0 15 3 32 13 45c10 12 26 19 42 19c50 0 77-67 77-111c0-11-2-30-16-44z"/>
|
||||
<glyph unicode="" d="m269 93c0 4-1 8-2 12c-1 4-1 7-2 10c-1 3-3 7-5 10c-3 4-5 6-6 9c-2 2-5 5-8 8c-3 4-6 6-8 8c-2 1-5 4-9 7c-4 3-7 5-9 6c-1 2-5 4-9 7c-5 3-8 5-9 6c-3 0-8 1-14 1c-11 0-21-1-31-2c-9-2-20-4-30-8c-11-3-20-7-28-13c-8-5-15-12-20-21c-5-9-8-19-8-31c0-13 4-24 10-34c7-11 16-19 27-24c11-6 22-11 34-13c12-3 24-5 37-5c11 0 22 1 32 4c10 2 19 6 28 11c9 5 16 12 22 21c5 9 8 19 8 31z m-35 247c0 11-1 23-4 36c-4 13-8 25-14 37c-6 12-14 22-24 30c-10 8-21 12-34 12c-18 0-31-7-41-20c-10-13-15-29-15-47c0-9 1-18 4-28c2-10 5-20 10-30c4-10 10-19 16-27c6-8 13-14 22-19c9-5 18-7 28-7c18 0 32 5 40 17c8 11 12 27 12 46z m-37 135l125 0l-39-22l-38 0c13-9 24-21 31-36c7-16 11-32 11-48c0-15-2-27-6-38c-5-11-10-20-16-26c-7-7-13-13-19-19c-7-5-12-11-16-17c-5-6-7-13-7-20c0-5 2-9 5-14c3-5 7-9 12-14c5-4 11-9 17-14c6-4 12-10 18-15c6-6 12-13 17-19c5-7 9-15 12-25c3-9 5-19 5-30c0-30-13-57-40-81c-29-25-69-37-120-37c-11 0-23 1-34 3c-12 2-23 5-35 9c-12 5-22 10-31 17c-9 7-16 15-22 25c-6 11-9 22-9 35c0 12 4 25 11 39c6 12 15 22 27 31c12 9 26 16 42 21c15 4 30 8 44 10c14 2 28 3 43 4c-12 16-18 30-18 42c0 3 0 5 0 7c1 2 1 4 2 6c0 1 1 3 2 6c1 2 1 4 2 6c-8-1-14-2-20-2c-29 0-53 10-73 28c-20 19-31 43-31 71c0 26 9 50 28 71c18 21 40 35 66 41c18 4 36 5 54 5z m297-73l0-36l-73 0l0-73l-37 0l0 73l-73 0l0 36l73 0l0 73l37 0l0-73z"/>
|
||||
<glyph unicode="" d="m492 402c-13-18-29-35-49-50c0 0 0-12 0-12c0-44-10-87-30-128c-21-41-53-76-96-104c-43-28-92-42-148-42c-55 0-104 14-149 43c5-1 13-1 24-1c45 0 85 13 120 40c-21 1-40 8-56 20c-17 12-28 28-34 48c3-1 9-2 17-2c9 0 18 1 26 3c-23 5-41 16-56 34c-14 18-21 38-21 61c0 0 0 1 0 1c12-6 27-11 43-12c-29 20-43 47-43 81c0 16 4 32 13 48c53-64 119-98 200-100c-2 6-3 13-3 21c0 27 9 50 28 68c19 19 42 28 69 28c28 0 51-9 70-29c20 4 41 11 61 22c-7-22-21-40-42-53c19 3 38 8 56 15"/>
|
||||
<glyph unicode="" d="m486 346c0 38-30 69-68 69l-324 0c-38 0-68-31-68-69l0-185c0-38 30-69 68-69l324 0c38 0 68 31 68 69z m-276-171l0 174l132-87z"/>
|
||||
<glyph unicode="" d="m499 65c4-6 4-12 0-18c-3-5-8-8-15-8c0 0-457 0-457 0c-6 0-11 3-14 8c-4 6-4 12-1 18c0 0 228 400 228 400c3 6 8 9 16 9c7 0 12-3 15-9c0 0 228-400 228-400m-215 25c0 0 0 51 0 51c0 0-56 0-56 0c0 0 0-51 0-51c0 0 56 0 56 0m0 89c0 0 0 154 0 154c0 0-56 0-56 0c0 0 0-154 0-154c0 0 56 0 56 0"/>
|
||||
<glyph unicode="" d="m256 484c-126 0-228-102-228-228c0-126 102-228 228-228c126 0 228 102 228 228c0 126-102 228-228 228z m0-399c-94 0-171 77-171 171c0 94 77 171 171 171c94 0 171-77 171-171c0-94-77-171-171-171z m-2 312c-23-2-40-23-37-46l12-118c2-13 12-24 26-26c16-1 30 10 31 26l13 118c0 3 0 6 0 8c-2 23-22 40-45 38z m-21-220c-7-7-11-16-11-25c0-10 4-19 11-26c7-6 16-10 25-10c9 0 19 4 25 10c7 7 11 16 11 26c0 9-4 18-11 25c-13 13-37 13-50 0z"/>
|
||||
<glyph unicode="" d="m392 396l0 0c-2 2-5 3-8 3c-3 0-5-1-7-3l0 0l-1 0c0 0 0 0 0 0l-21-19c0 0 0 0 0-1l0 0l0 0c-2-2-3-4-3-7c0-4 2-8 5-10c25-25 40-60 40-98c0-78-63-141-141-141c-78 0-141 63-141 141c0 38 16 73 41 99l0 0c2 2 4 5 4 9c0 3-2 5-4 7l0 0l0 0c0 1 0 1 0 1l-21 19c0 0 0 0 0 0l-1 0l0 0c-2 2-4 3-7 3c-4 0-8-2-10-6c-33-34-53-81-53-132c0-106 86-192 192-192c106 0 192 86 192 192c0 52-21 100-56 135z m-150-205l28 0c0 0 0 0 0 0c6 0 11 5 11 11l0 230l0 0c0 0 0 0 0 0c0 6-5 11-11 11c0 0 0 0 0 0l-28 0c-6 0-11-5-11-11c0 0 0 0 0 0l0 0l0-230c0-6 5-11 11-11z"/>
|
||||
<glyph unicode="" d="m432 309l-123 0l0 123c0 5-5 10-10 10l-86 0c-5 0-10-5-10-10l0-123l-123 0c-5 0-10-5-10-10l0-86c0-3 1-5 3-7c2-2 4-3 7-3l123 0l0-123c0-3 1-5 3-7c2-2 4-3 7-3l86 0c3 0 5 1 7 3c2 2 3 4 3 7l0 123l123 0c3 0 5 1 7 3c2 2 3 4 3 7l0 86c0 5-5 10-10 10z"/>
|
||||
<glyph unicode="" d="m451 357l-66 66c-3 2-6 4-9 4c-3 0-7-2-9-4l-176-176l-46 47c-5 5-13 5-18 0l-66-66c-2-3-3-6-3-9c0-3 1-7 3-9l121-121c3-2 6-4 9-4c0 0 0 1 0 1c1 0 1-1 1-1c3 0 6 2 9 4l250 250c5 5 5 13 0 18z"/>
|
||||
<glyph unicode="" d="m434 160l-96 96l96 96c4 4 4 10 0 14l-68 68c-4 4-10 4-14 0l-96-96l-96 96c-4 4-11 4-14 0l-68-68c-2-1-3-4-3-7c0-2 1-5 3-7l96-96l-96-96c-2-2-3-5-3-7c0-3 1-6 3-7l68-68c1-2 4-3 7-3c2 0 5 1 7 3l96 96l96-96c2-2 5-3 7-3c3 0 5 1 7 3l68 68c4 4 4 10 0 14z"/>
|
||||
<glyph unicode="" d="m96 448l179 0l13-13l0-83l83 0l13-13l0-275l-288 0z m-64 64l0-512l416 0l0 365l-147 147z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m96-290l96-96l0 45l-51 51l51 50l0 46l-73-74z m160 56l51-51l-51-51l0-45l73 73l23 23l-96 96z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m96-352l64 0l0-64l-64 0z m96 160l64 0l0-224l-64 0z m96-96l64 0l0-128l-64 0z"/>
|
||||
<glyph unicode="" d="m192 160l128 0l0-128l-128 0z m96 32l-32 0l0 32l32 0z m0 96l0-32l-32 0l0-32l-32 0l0 32l32 0l0 32z m32 147l96-96l0-275l-64 0l0 128l-32 0z m-224 13l96 0l0-256l-32 0l0-128l-64 0z m128 0l32 0l0-32l32 0l0-32l-32 0l0-32l32 0l0-32l-32 0l0-32l-32 0l0 32l32 0l0 32l-32 0l0 32l32 0l0 32l-32 0z m-192 64l0-512l448 0l0 365l-147 147z m192-384l64 0l0-32l-64 0z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m224-96l-32-6l0-225c-9 4-20 7-32 7c-35 0-64-22-64-48c0-26 29-48 64-48c12 0 23 3 32 7c19 8 32 23 32 41l0 179c64 0 96-67 96-99c0 128-64 163-96 163z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m128-224l192 0l0-32l-192 0z m0 64l128 0l0-32l-128 0z m0-128l192 0l0-32l-192 0z m0-64l192 0l0-32l-192 0z"/>
|
||||
<glyph unicode="" d="m288 448l19 0l109-109l0-275l-320 0l0 384l64 0l0-288l64 96l64-96z m-256 64l0-512l448 0l0 365l-147 147z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m144-253c26 0 48 22 48 48c0 27-22 48-48 48c-26 0-48-21-48-48c0-26 22-48 48-48m16-64l-64-96l256 0l-64 224l-64-192z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m192-262l-96-96l0-45l96 96l64-64l96 96l0 45l-96-96z"/>
|
||||
<glyph unicode="" d="m384 320c-53 0-96-43-96-96c0-28 13-53 32-71l0-153l64 64l64-64l0 153c20 18 32 43 32 71c0 53-43 96-96 96m0-160c-35 0-64 29-64 64c0 35 29 64 64 64c35 0 64-29 64-64c0-35-29-64-64-64m-170-96l-150 0l0 384l179 0l96-96l77 0l0 13l-147 147l-269 0l0-512l275 0l-60 63z m-118 288l160 0l0-32l-160 0z m0-64l160 0l0-32l-160 0z m0-64l160 0l0-32l-160 0z"/>
|
||||
<glyph unicode="" d="m111 10c-20 0-39 9-57 27l-3 3c-19 18-96 83 0 172c40 37 89 90 143 144c30 29 60 59 90 89c55 55 95 42 157-17c73-69 87-138 55-175c-42-48-201-207-208-214c-9-9-23-9-32 0c-9 9-9 23 0 32c1 2 164 165 205 212c10 11 11 52-51 112c-37 35-47 64-93 18c-31-30-61-61-90-90c-55-53-105-105-143-142c-59-60-21-89-1-109l3-3c17-16 31-21 55 4c7 6 21 20 39 37c49 48 141 138 160 161c6 7 14 25 6 32c-11 10-32-10-38-16c-65-68-149-149-150-150c-9-8-23-8-32 1c-9 9-8 24 1 32c1 1 84 81 148 148c41 44 79 39 101 20c26-24 20-69-1-96c-19-23-91-94-163-164c-18-17-32-31-39-38c-20-20-41-30-62-30"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m96-416l256 0l0 224l-256 0z m128 192l96 0l0-64l-96 0z m0-96l96 0l0-64l-96 0z m-96 96l64 0l0-64l-64 0z m0-96l64 0l0-64l-64 0z"/>
|
||||
<glyph unicode="" d="m96 448l211 0l109-109l0-275l-320 0z m-64 64l0-512l448 0l0 365l-147 147z m160-381l170 96l-170 96z"/>
|
||||
<glyph unicode="" d="m440 389l-188 0c-10 12-20 25-23 28c-2 6-8 10-14 10l-75 0c-5 0-9-3-13-6l-25-32l-30 0c-16 0-28-13-28-28l0-248c0-15 12-28 28-28l368 0c16 0 28 13 28 28l0 248c0 15-12 28-28 28z m-22-201c0-1-1-2-1-2c-1-1-2-1-3-1l-45 0l0-45c0-1 0-2-1-3c0 0-1-1-2-1l-32 0c-1 0-1 1-2 1c-1 1-1 2-1 3l0 45l-45 0c-1 0-2 0-2 1c-1 0-1 1-1 2l0 31c0 2 1 4 3 4l45 0l0 45c0 2 1 3 3 3l32 0c2 0 3-1 3-3l0-45l45 0c2 0 4-2 4-4z"/>
|
||||
<glyph unicode="" d="m440 389l-188 0c-10 12-20 25-23 28c-2 6-8 10-14 10l-75 0c-5 0-9-3-13-6l-25-32l-30 0c-16 0-28-13-28-28l0-248c0-15 12-28 28-28l368 0c16 0 28 13 28 28l0 248c0 15-12 28-28 28z"/>
|
||||
<glyph unicode="" d="m448 96l32 0l0-32l-32 0z m-384 128l352 0l0-192l-352 0z m64 288l256 0l0-160l-256 0z m-128 0l0-512l512 0l0 448l-64 64z m288-32l64 0l0-96l-64 0z m-160-384l224 0l0-32l-224 0z m0 64l160 0l0-32l-160 0z"/>
|
||||
<glyph unicode="" d="m475 238c-29 45-65 78-108 101c11-20 17-42 17-65c0-35-13-65-38-90c-25-25-55-38-90-38c-35 0-65 13-90 38c-25 25-38 55-38 90c0 23 6 45 17 65c-43-23-79-56-108-101c25-39 57-70 95-94c38-23 79-34 124-34c45 0 86 11 124 34c38 24 70 55 95 94z m-205 109c0 4-2 7-4 10c-3 3-6 4-10 4c-24 0-44-8-61-25c-17-17-26-38-26-62c0-4 1-7 4-9c3-3 6-4 10-4c4 0 7 1 10 4c2 2 4 5 4 9c0 17 5 31 17 42c12 12 26 18 42 18c4 0 7 1 10 4c2 2 4 6 4 9z m242-109c0-7-2-13-6-20c-26-44-62-79-107-105c-45-27-93-40-143-40c-50 0-98 13-143 40c-45 26-81 61-107 105c-4 7-6 13-6 20c0 6 2 13 6 19c26 44 62 79 107 106c45 26 93 39 143 39c50 0 98-13 143-39c45-27 81-62 107-106c4-6 6-13 6-19z"/>
|
||||
<glyph unicode="" d="m195 397c0-11 0-63 0-63l-47 0l0-78l47 0l0-230l95 0l0 230l65 0c0 0 6 37 8 78c-8 0-72 0-72 0c0 0 0 45 0 53c0 8 10 19 21 19c10 0 31 0 52 0c0 10 0 47 0 80c-27 0-58 0-71 0c-100 0-98-77-98-89z"/>
|
||||
<glyph unicode="" d="m486 410c0 40-36 76-76 76l-308 0c-40 0-76-36-76-76l0-308c0-40 36-76 76-76l154 0l0 174l-56 0l0 76l56 0l0 30c0 52 39 98 86 98l62 0l0-76l-62 0c-6 0-14-9-14-21l0-31l76 0l0-76l-76 0l0-174l82 0c40 0 76 36 76 76z"/>
|
||||
<glyph unicode="" d="m195 37l68 223l26-73l-104 41l-66 26l39 47l149 180c2 3 6 3 9 1c2-2 3-4 2-7l-68-223l-26 73l104-41l65-26l-38-47l-149-180c-3-3-6-3-9-1c-2 2-3 4-2 7z"/>
|
||||
<glyph unicode="" d="m480 288c-18 0-32-14-32-32l0-192l-384 0l0 192c0 18-14 32-32 32c-18 0-32-14-32-32l0-224c0-18 14-32 32-32l448 0c18 0 32 14 32 32l0 224c0 18-14 32-32 32z m-192 0l0 196c0 15-14 28-32 28c-18 0-32-13-32-28l0-196l-96 0l128-128l128 128z"/>
|
||||
<glyph unicode="" d="m480 288c-18 0-32-14-32-32l0-192l-384 0l0 192c0 18-14 32-32 32c-18 0-32-14-32-32l0-224c0-18 14-32 32-32l448 0c18 0 32 14 32 32l0 224c0 18-14 32-32 32z m-256-96c0-18 14-32 32-32c18 0 32 14 32 32l0 192l96 0l-128 128l-128-128l96 0z"/>
|
||||
<glyph unicode="" d="m485 238c0-5-2-10-6-13c-3-4-8-6-13-6l-64 0c0-32-6-60-19-82l60-60c3-4 5-8 5-13c0-5-2-9-5-13c-4-3-8-5-13-5c-5 0-10 2-13 5l-57 56c-1-1-2-2-4-3c-2-2-6-5-12-8c-6-4-12-8-19-11c-6-3-14-6-23-8c-9-3-19-4-28-4l0 256l-36 0l0-256c-10 0-20 1-29 4c-10 3-18 6-25 9c-7 4-13 8-19 12c-6 3-10 6-12 9l-5 4l-52-59c-4-4-8-6-14-6c-4 0-8 1-12 4c-4 4-6 8-6 13c0 5 1 9 5 13l57 65c-11 22-16 48-16 78l-64 0c-5 0-10 2-13 6c-4 3-6 8-6 13c0 5 2 9 6 13c3 3 8 5 13 5l64 0l0 84l-50 49c-3 4-5 8-5 13c0 5 2 10 5 13c4 4 8 6 13 6c5 0 9-2 13-6l49-49l242 0l49 49c4 4 8 6 13 6c5 0 9-2 13-6c3-3 5-8 5-13c0-5-2-9-5-13l-50-49l0-84l64 0c5 0 10-2 13-5c4-4 6-8 6-13z m-138 164l-182 0c0 26 8 47 26 65c18 18 40 27 65 27c25 0 47-9 65-27c18-18 26-39 26-65z"/>
|
||||
<glyph unicode="" d="m440 407c24-22 36-49 36-80c0-32-12-59-36-81c0 0-184-169-184-169c0 0-184 169-184 169c-24 22-36 49-36 81c0 31 12 58 36 80c21 19 47 29 77 29c30 0 56-10 78-29c0 0 29-27 29-27c0 0 30 27 30 27c21 19 46 29 76 29c31 0 56-10 78-29"/>
|
||||
<glyph unicode="" d="m440 406c24-22 36-49 36-80c0-32-12-58-36-80c0 0-184-169-184-169c0 0-184 169-184 169c-24 22-36 48-36 80c0 31 12 58 36 80c22 19 47 29 78 29c30 0 55-10 76-29c0 0 30-27 30-27c0 0 29 27 29 27c22 19 47 29 77 29c31 0 56-10 78-29m-27-134c14 14 21 32 21 54c0 22-6 39-19 51c-13 13-31 19-53 19c-17 0-35-8-53-24c0 0-53-47-53-47c0 0-54 47-54 47c-17 16-34 24-52 24c-22 0-40-6-54-19c-13-12-19-30-19-51c0-23 7-41 22-54c0 0 157-146 157-146c0 0 157 146 157 146"/>
|
||||
<glyph unicode="" d="m410 461c14 0 26-5 36-15c10-10 15-22 15-36c0 0 0-205 0-205c0-14-5-26-15-36c-10-10-22-15-36-15c0 0-205 0-205 0c-14 0-26 5-36 15c-10 10-15 22-15 36c0 0 0 206 0 206c0 13 5 25 14 35c10 10 22 15 37 15c0 0 205 0 205 0m0-256c0 0 0 205 0 205c0 0-205 0-205 0c0 0 0-205 0-205c0 0 205 0 205 0m-308 51c0 0 0-154 0-154c0 0 154 0 154 0c0 0 0-51 0-51c0 0-154 0-154 0c-13 0-25 5-35 16c-11 10-16 22-16 35c0 0 0 154 0 154c0 0 51 0 51 0"/>
|
||||
<glyph unicode="" d="m0 512l0-512l512 0l0 512z m480-480l-448 0l0 448l448 0z m-96 368l-160-160l-96 96l-64-64l160-160l224 224z"/>
|
||||
<glyph unicode="" d="m0 512l0-512l512 0l0 512z m480-480l-448 0l0 448l448 0z"/>
|
||||
<glyph unicode="" d="m0 512l0-512l512 0l0 512z m480-480l-448 0l0 448l448 0z m-352 352l256 0l0-256l-256 0z"/>
|
||||
<glyph unicode="" d="m256 512c-141 0-256-115-256-256c0-141 115-256 256-256c141 0 256 115 256 256c0 141-115 256-256 256z m0-448c-106 0-192 86-192 192c0 106 86 192 192 192c106 0 192-86 192-192c0-106-86-192-192-192z m-96 192c0 53 43 96 96 96c53 0 96-43 96-96c0-53-43-96-96-96c-53 0-96 43-96 96z"/>
|
||||
<glyph unicode="" d="m256 512c-141 0-256-115-256-256c0-141 115-256 256-256c141 0 256 115 256 256c0 141-115 256-256 256z m0-448c-106 0-192 86-192 192c0 106 86 192 192 192c106 0 192-86 192-192c0-106-86-192-192-192z"/>
|
||||
<glyph unicode="" d="m230 182l-86-148l283 0l85 148z m258 42l-147 254l-170 0l146-254z m-342 212l-146-254l85-148l147 254z"/>
|
||||
<glyph unicode="" d="m256 512c-139 0-253-111-256-250c3 121 95 218 208 218c115 0 208-100 208-224c0-27 21-48 48-48c27 0 48 21 48 48c0 141-115 256-256 256z m0-512c139 0 253 111 256 250c-3-121-95-218-208-218c-115 0-208 100-208 224c0 27-21 48-48 48c-27 0-48-21-48-48c0-141 115-256 256-256z"/>
|
||||
<glyph unicode="" d="m446 256c0 51-22 100-56 134c-34 34-83 56-134 56c-51 0-100-22-134-56c-34-34-56-83-56-134c0-83 55-156 133-181l0 50c-11-1-17-2-20-2c-22 0-37 10-46 30c-3 7-6 13-10 19c-1 1-3 2-7 5c-3 3-6 5-8 7c-3 2-4 4-4 5c0 2 3 4 9 4c11 0 20-7 26-15c6-8 12-17 22-23c4-3 10-4 16-4c8 0 16 1 24 4c3 11 10 20 19 26c-66 7-97 30-97 92c0 23 7 43 22 58c-3 9-4 17-4 25c0 12 2 22 8 32c22 0 37-7 60-23c15 3 31 5 50 5c15 0 30-1 45-5c22 16 37 23 59 23c6-10 8-20 8-32c0-8-1-16-4-24c15-17 22-36 22-59c0-62-31-86-97-92c14-9 21-22 21-39l0-67c78 25 133 98 133 181z m7 114c20-35 31-73 31-114c0-83-44-156-114-197c-35-20-73-31-114-31c-83 0-156 44-197 114c-20 35-31 73-31 114c0 83 44 156 114 197c35 20 73 31 114 31c83 0 156-44 197-114z"/>
|
||||
<glyph unicode="" d="m435 152c-1 6-4 10-9 13l-74 43l0 0c-3 2-7 3-10 3c-6 0-12-3-16-7l-22-21c-1-1-4-2-5-3c0 0-25 2-71 48c-46 46-48 71-48 71c0 1 2 4 3 5l18 19c7 6 8 17 5 26l-41 76c-3 6-9 10-15 10c-5 0-9-2-13-5l-50-50c-5-5-9-14-10-20c0-4-9-81 97-186c89-90 159-97 179-97c4 0 6 0 7 0c6 1 15 5 20 10l50 50c4 5 6 10 5 15z"/>
|
||||
<glyph unicode="" d="m279 110c0 6-2 11-7 16c-4 4-10 7-16 7c-6 0-12-3-16-7c-5-5-7-10-7-16c0-7 2-12 7-16c4-5 10-7 16-7c6 0 12 2 16 7c5 4 7 9 7 16z m59 45l0 202c0 2-1 4-2 6c-2 2-4 3-7 3l-146 0c-3 0-5-1-7-3c-1-2-2-4-2-6l0-202c0-2 1-4 2-6c2-2 4-3 7-3l146 0c3 0 5 1 7 3c1 2 2 4 2 6z m-55 243c0 3-1 4-4 4l-46 0c-3 0-4-1-4-4c0-3 1-5 4-5l46 0c3 0 4 2 4 5z m83 4l0-292c0-10-4-19-11-26c-7-7-16-11-26-11l-146 0c-10 0-19 4-26 11c-7 7-11 16-11 26l0 292c0 10 4 19 11 26c7 7 16 11 26 11l146 0c10 0 19-4 26-11c7-7 11-16 11-26z"/>
|
||||
<glyph unicode="" d="m269 232l189 193c-3 1-7 2-10 2l-384 0c-3 0-6-1-10-2l190-193c6-6 18-6 25 0z m25-26c-10-10-24-16-38-16c-14 0-28 5-38 16l-189 192c0-3 0-5 0-8l0-268c0-20 16-37 35-37l384 0c19 0 35 17 35 37l0 268c0 3 0 5 0 8z"/>
|
||||
<glyph unicode="" d="m11 78l-11-78l79 11l78 11l-67 68l-68 67z m168 12l-22 22l202 202l-45 45l-202-202l-23 23l202 202l-22 22l-224-224l134-135l224 225l-22 22z m294 290l-90 90c-12 12-32 13-44 1l-2-3l0 0l-43-43l134-134l43 43l0 0l3 2c12 12 12 32-1 44"/>
|
||||
<glyph unicode="" d="m480 403c-2 25-23 45-48 45l-48 0l0 16c0 26-22 48-48 48l-160 0c-27 0-48-22-48-48l0-16l-48 0c-26 0-46-20-48-45l0 0l0-35c0-18 14-32 32-32l0-272c0-35 29-64 64-64l256 0c35 0 64 29 64 64l0 272c18 0 32 14 32 32l0 35z m-320 61c0 9 7 16 16 16l160 0c9 0 16-7 16-16l0-16l-192 0z m256-400c0-18-14-32-32-32l-256 0c-18 0-32 14-32 32l0 272l320 0z m32 320l0-16l-384 0l0 32c0 9 7 16 16 16l352 0c9 0 16-7 16-16z m-304-320l32 0c9 0 16 7 16 16l0 208c0 9-7 16-16 16l-32 0c-9 0-16-7-16-16l0-208c0-9 7-16 16-16z m0 224l32 0l0-208l-32 0z m96-224l32 0c9 0 16 7 16 16l0 208c0 9-7 16-16 16l-32 0c-9 0-16-7-16-16l0-208c0-9 7-16 16-16z m0 224l32 0l0-208l-32 0z m96-224l32 0c9 0 16 7 16 16l0 208c0 9-7 16-16 16l-32 0c-9 0-16-7-16-16l0-208c0-9 7-16 16-16z m0 224l32 0l0-208l-32 0z"/>
|
||||
<glyph unicode="" d="m293 397c4 6 11 9 20 9c8 0 15-3 21-9c13-12 13-26 0-41c0 0-96-100-96-100c0 0 96-99 96-99c13-15 13-29 0-41c-6-6-13-8-21-8c-8 0-15 2-20 8c0 0-116 121-116 121c-6 5-8 11-8 19c0 8 2 15 8 20c70 74 109 114 116 121"/>
|
||||
<glyph unicode="" d="m219 397c0 0 116-121 116-121c5-5 8-12 8-20c0-8-3-14-8-19c0 0-116-121-116-121c-5-6-12-8-20-8c-9 0-15 2-21 8c-12 12-12 26 0 41c0 0 95 99 95 99c0 0-95 100-95 100c-12 15-12 29 0 41c6 6 13 9 21 9c9 0 15-3 20-9"/>
|
||||
<glyph unicode="" d="m256 480c-60 0-117-24-158-66l-66 66l0-192l192 0l-81 81c30 30 70 47 113 47c88 0 160-72 160-160c0-88-72-160-160-160c-57 0-110 31-139 80l-55-32c40-69 114-112 194-112c124 0 224 101 224 224c0 123-100 224-224 224"/>
|
||||
<glyph unicode="" d="m352 448c53 0 96-43 96-96c0-53-43-96-96-96c-5 0-10 1-17 2l-33 6l-24-24l-3-3l-19-19l0-26l-64 0l0-64l-64 0l0-64l-64 0l0 38l200 200l-6 33c-1 7-2 12-2 17c0 53 43 96 96 96m0 64c-88 0-160-72-160-160c0-10 1-20 3-29l-195-195l0-128l192 0l0 64l64 0l0 64l64 0l0 64l3 3c9-2 19-3 29-3c88 0 160 72 160 160c0 88-72 160-160 160z m32-160c0-18-14-32-32-32c-18 0-32 14-32 32c0 18 14 32 32 32c18 0 32-14 32-32z"/>
|
||||
<glyph unicode="" d="m420 286l-45 0l0 43c0 0 0 0 0 0c0 67-54 122-121 122c-67 0-122-55-122-122l0-43l-40 0c-8 0-14-6-14-14l0-197c0-8 6-14 14-14l328 0c8 0 14 6 14 14l0 197c0 8-6 14-14 14z m-216 43c0 28 22 50 50 50c27 0 49-22 50-49c0 0 0 0 0 0l0 0c0-1 0-1 0-1l0-43l-100 0z"/>
|
||||
</font></defs></svg>
|
||||
|
After Width: | Height: | Size: 35 KiB |
BIN
vendors/fontastic/fonts/rainloop.ttf
vendored
Normal file
BIN
vendors/fontastic/fonts/rainloop.ttf
vendored
Normal file
Binary file not shown.
BIN
vendors/fontastic/fonts/rainloop.woff
vendored
Normal file
BIN
vendors/fontastic/fonts/rainloop.woff
vendored
Normal file
Binary file not shown.
805
vendors/fontastic/icons-reference.html
vendored
Normal file
805
vendors/fontastic/icons-reference.html
vendored
Normal file
|
|
@ -0,0 +1,805 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<title>Font Reference - RainLoop </title>
|
||||
<link href="http://fonts.googleapis.com/css?family=Dosis:400,500,700" rel="stylesheet" type="text/css">
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<style type="text/css">
|
||||
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-family:inherit;font-size:100%;vertical-align:baseline}
|
||||
body{line-height:1;color:#000;background:#fff}
|
||||
ol,ul{list-style:none}
|
||||
table{border-collapse:separate;border-spacing:0;vertical-align:middle}
|
||||
caption,th,td{text-align:left;font-weight:normal;vertical-align:middle}
|
||||
a img{border:none}
|
||||
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
|
||||
body{font-family:'Dosis','Tahoma',sans-serif}
|
||||
.container{margin:15px auto;width:80%}
|
||||
h1{margin:40px 0 20px;font-weight:700;font-size:38px;line-height:32px;color:#fb565e}
|
||||
h2{font-size:18px;padding:0 0 21px 5px;margin:45px 0 0 0;text-transform:uppercase;font-weight:500}
|
||||
.small{font-size:14px;color:#a5adb4;}
|
||||
.small a{color:#a5adb4;}
|
||||
.small a:hover{color:#fb565e}
|
||||
.glyphs.character-mapping{margin:0 0 20px 0;padding:20px 0 20px 30px;color:rgba(0,0,0,0.5);border:1px solid #d8e0e5;-webkit-border-radius:3px;border-radius:3px;}
|
||||
.glyphs.character-mapping li{margin:0 30px 20px 0;display:inline-block;width:90px}
|
||||
.glyphs.character-mapping .icon{margin:10px 0 10px 15px;padding:15px;position:relative;width:55px;height:55px;color:#162a36 !important;overflow:hidden;-webkit-border-radius:3px;border-radius:3px;font-size:32px;}
|
||||
.glyphs.character-mapping .icon svg{fill:#000}
|
||||
.glyphs.character-mapping input{margin:0;padding:5px 0;line-height:12px;font-size:12px;display:block;width:100%;border:1px solid #d8e0e5;-webkit-border-radius:5px;border-radius:5px;text-align:center;outline:0;}
|
||||
.glyphs.character-mapping input:focus{border:1px solid #fbde4a;-webkit-box-shadow:inset 0 0 3px #fbde4a;box-shadow:inset 0 0 3px #fbde4a}
|
||||
.glyphs.character-mapping input:hover{-webkit-box-shadow:inset 0 0 3px #fbde4a;box-shadow:inset 0 0 3px #fbde4a}
|
||||
.glyphs.css-mapping{margin:0 0 60px 0;padding:30px 0 20px 30px;color:rgba(0,0,0,0.5);border:1px solid #d8e0e5;-webkit-border-radius:3px;border-radius:3px;}
|
||||
.glyphs.css-mapping li{margin:0 30px 20px 0;padding:0;display:inline-block;overflow:hidden}
|
||||
.glyphs.css-mapping .icon{margin:0;margin-right:10px;padding:13px;height:50px;width:50px;color:#162a36 !important;overflow:hidden;float:left;font-size:24px}
|
||||
.glyphs.css-mapping input{margin:0;margin-top:5px;padding:8px;line-height:16px;font-size:16px;display:block;width:150px;height:40px;border:1px solid #d8e0e5;-webkit-border-radius:5px;border-radius:5px;background:#fff;outline:0;float:right;}
|
||||
.glyphs.css-mapping input:focus{border:1px solid #fbde4a;-webkit-box-shadow:inset 0 0 3px #fbde4a;box-shadow:inset 0 0 3px #fbde4a}
|
||||
.glyphs.css-mapping input:hover{-webkit-box-shadow:inset 0 0 3px #fbde4a;box-shadow:inset 0 0 3px #fbde4a}
|
||||
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>RainLoop</h1>
|
||||
<p class="small">This font was created with <a href="http://fontastic.me/">Fontastic</a></p>
|
||||
<h2>Character mapping</h2>
|
||||
<ul class="glyphs character-mapping">
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe000;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe001;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe002;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe003;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe004;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe005;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe006;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe007;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe008;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe009;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe00a;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe00b;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe00c;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe00d;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe00e;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe00f;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe010;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe011;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe012;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe013;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe014;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe015;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe016;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe017;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe018;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe019;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe01a;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe01b;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe01c;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe01d;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe01e;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe01f;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe020;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe021;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe022;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe023;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe024;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe025;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe026;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe027;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe028;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe029;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe02a;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe02b;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe02c;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe02d;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe02e;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe02f;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe030;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe031;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe032;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe033;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe034;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe035;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe036;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe037;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe038;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe039;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe03a;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe03b;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe03c;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe03d;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe03e;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe03f;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe040;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe041;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe042;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe043;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe044;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe045;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe046;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe047;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe048;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe049;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe04a;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe04b;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe04c;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe04d;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe04e;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe04f;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe050;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe051;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe052;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe053;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe054;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe055;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe056;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe057;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe058;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe059;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe05a;">
|
||||
</li>
|
||||
<li>
|
||||
<div data-icon="" class="icon"></div>
|
||||
<input type="text" readonly="readonly" value="&#xe05b;">
|
||||
</li>
|
||||
</ul>
|
||||
<h2>CSS mapping</h2>
|
||||
<ul class="glyphs css-mapping">
|
||||
<li>
|
||||
<div class="icon icon-address-book"></div>
|
||||
<input type="text" readonly="readonly" value="address-book">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-arrows-in"></div>
|
||||
<input type="text" readonly="readonly" value="arrows-in">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-arrows-out"></div>
|
||||
<input type="text" readonly="readonly" value="arrows-out">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-list"></div>
|
||||
<input type="text" readonly="readonly" value="list">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-search"></div>
|
||||
<input type="text" readonly="readonly" value="search">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-user"></div>
|
||||
<input type="text" readonly="readonly" value="user">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-user-add"></div>
|
||||
<input type="text" readonly="readonly" value="user-add">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-tags"></div>
|
||||
<input type="text" readonly="readonly" value="tags">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-paper-plane"></div>
|
||||
<input type="text" readonly="readonly" value="paper-plane">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-reply"></div>
|
||||
<input type="text" readonly="readonly" value="reply">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-reply-all"></div>
|
||||
<input type="text" readonly="readonly" value="reply-all">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-forward"></div>
|
||||
<input type="text" readonly="readonly" value="forward">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-info"></div>
|
||||
<input type="text" readonly="readonly" value="info">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-right-dir"></div>
|
||||
<input type="text" readonly="readonly" value="right-dir">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-down-dir"></div>
|
||||
<input type="text" readonly="readonly" value="down-dir">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-image"></div>
|
||||
<input type="text" readonly="readonly" value="image">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-print"></div>
|
||||
<input type="text" readonly="readonly" value="print">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-calendar"></div>
|
||||
<input type="text" readonly="readonly" value="calendar">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-cog"></div>
|
||||
<input type="text" readonly="readonly" value="cog">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-wrench"></div>
|
||||
<input type="text" readonly="readonly" value="wrench">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-rocket"></div>
|
||||
<input type="text" readonly="readonly" value="rocket">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-fire"></div>
|
||||
<input type="text" readonly="readonly" value="fire">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-purchase"></div>
|
||||
<input type="text" readonly="readonly" value="purchase">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-apple"></div>
|
||||
<input type="text" readonly="readonly" value="apple">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-dropbox"></div>
|
||||
<input type="text" readonly="readonly" value="dropbox">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-skype"></div>
|
||||
<input type="text" readonly="readonly" value="skype">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-creative-commons"></div>
|
||||
<input type="text" readonly="readonly" value="creative-commons">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-ellipsis"></div>
|
||||
<input type="text" readonly="readonly" value="ellipsis">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-left"></div>
|
||||
<input type="text" readonly="readonly" value="left">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-right"></div>
|
||||
<input type="text" readonly="readonly" value="right">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-down"></div>
|
||||
<input type="text" readonly="readonly" value="down">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-right-mini"></div>
|
||||
<input type="text" readonly="readonly" value="right-mini">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-down-mini"></div>
|
||||
<input type="text" readonly="readonly" value="down-mini">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-up"></div>
|
||||
<input type="text" readonly="readonly" value="up">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-star-empty"></div>
|
||||
<input type="text" readonly="readonly" value="star-empty">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-star"></div>
|
||||
<input type="text" readonly="readonly" value="star">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-at"></div>
|
||||
<input type="text" readonly="readonly" value="at">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-list-add"></div>
|
||||
<input type="text" readonly="readonly" value="list-add">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-google"></div>
|
||||
<input type="text" readonly="readonly" value="google">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-google-plus"></div>
|
||||
<input type="text" readonly="readonly" value="google-plus">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-twitter"></div>
|
||||
<input type="text" readonly="readonly" value="twitter">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-youtube"></div>
|
||||
<input type="text" readonly="readonly" value="youtube">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-warning"></div>
|
||||
<input type="text" readonly="readonly" value="warning">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-warning-alt"></div>
|
||||
<input type="text" readonly="readonly" value="warning-alt">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-power"></div>
|
||||
<input type="text" readonly="readonly" value="power">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-plus"></div>
|
||||
<input type="text" readonly="readonly" value="plus">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-ok"></div>
|
||||
<input type="text" readonly="readonly" value="ok">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-remove"></div>
|
||||
<input type="text" readonly="readonly" value="remove">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-file"></div>
|
||||
<input type="text" readonly="readonly" value="file">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-file-code"></div>
|
||||
<input type="text" readonly="readonly" value="file-code">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-file-chart-graph"></div>
|
||||
<input type="text" readonly="readonly" value="file-chart-graph">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-file-zip"></div>
|
||||
<input type="text" readonly="readonly" value="file-zip">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-file-music"></div>
|
||||
<input type="text" readonly="readonly" value="file-music">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-file-text"></div>
|
||||
<input type="text" readonly="readonly" value="file-text">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-file-bookmark"></div>
|
||||
<input type="text" readonly="readonly" value="file-bookmark">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-file-image"></div>
|
||||
<input type="text" readonly="readonly" value="file-image">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-file-analytics"></div>
|
||||
<input type="text" readonly="readonly" value="file-analytics">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-file-certificate"></div>
|
||||
<input type="text" readonly="readonly" value="file-certificate">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-attachment"></div>
|
||||
<input type="text" readonly="readonly" value="attachment">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-file-excel"></div>
|
||||
<input type="text" readonly="readonly" value="file-excel">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-file-movie"></div>
|
||||
<input type="text" readonly="readonly" value="file-movie">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-folder-add"></div>
|
||||
<input type="text" readonly="readonly" value="folder-add">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-folder"></div>
|
||||
<input type="text" readonly="readonly" value="folder">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-floppy"></div>
|
||||
<input type="text" readonly="readonly" value="floppy">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-eye"></div>
|
||||
<input type="text" readonly="readonly" value="eye">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-facebook-alt"></div>
|
||||
<input type="text" readonly="readonly" value="facebook-alt">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-facebook"></div>
|
||||
<input type="text" readonly="readonly" value="facebook">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-bolt"></div>
|
||||
<input type="text" readonly="readonly" value="bolt">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-download"></div>
|
||||
<input type="text" readonly="readonly" value="download">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-upload"></div>
|
||||
<input type="text" readonly="readonly" value="upload">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-bug"></div>
|
||||
<input type="text" readonly="readonly" value="bug">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-heart"></div>
|
||||
<input type="text" readonly="readonly" value="heart">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-heart-empty"></div>
|
||||
<input type="text" readonly="readonly" value="heart-empty">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-popup"></div>
|
||||
<input type="text" readonly="readonly" value="popup">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-checkbox-checked"></div>
|
||||
<input type="text" readonly="readonly" value="checkbox-checked">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-checkbox-unchecked"></div>
|
||||
<input type="text" readonly="readonly" value="checkbox-unchecked">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-checkbox-partial"></div>
|
||||
<input type="text" readonly="readonly" value="checkbox-partial">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-radio-checked"></div>
|
||||
<input type="text" readonly="readonly" value="radio-checked">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-radio-unchecked"></div>
|
||||
<input type="text" readonly="readonly" value="radio-unchecked">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-google-drive"></div>
|
||||
<input type="text" readonly="readonly" value="google-drive">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-spinner"></div>
|
||||
<input type="text" readonly="readonly" value="spinner">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-github"></div>
|
||||
<input type="text" readonly="readonly" value="github">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-telephone"></div>
|
||||
<input type="text" readonly="readonly" value="telephone">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-mobile"></div>
|
||||
<input type="text" readonly="readonly" value="mobile">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-mail"></div>
|
||||
<input type="text" readonly="readonly" value="mail">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-pencil"></div>
|
||||
<input type="text" readonly="readonly" value="pencil">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-trash"></div>
|
||||
<input type="text" readonly="readonly" value="trash">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-left-middle"></div>
|
||||
<input type="text" readonly="readonly" value="left-middle">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-right-middle"></div>
|
||||
<input type="text" readonly="readonly" value="right-middle">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-repeat"></div>
|
||||
<input type="text" readonly="readonly" value="repeat">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-key"></div>
|
||||
<input type="text" readonly="readonly" value="key">
|
||||
</li>
|
||||
<li>
|
||||
<div class="icon icon-lock"></div>
|
||||
<input type="text" readonly="readonly" value="lock">
|
||||
</li>
|
||||
</ul>
|
||||
</div><script type="text/javascript">
|
||||
(function() {
|
||||
var glyphs, _i, _len, _ref;
|
||||
|
||||
_ref = document.getElementsByClassName('glyphs');
|
||||
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
||||
glyphs = _ref[_i];
|
||||
glyphs.addEventListener('click', function(event) {
|
||||
if (event.target.tagName === 'INPUT') {
|
||||
return event.target.select();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
}).call(this);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
316
vendors/fontastic/styles.css
vendored
Normal file
316
vendors/fontastic/styles.css
vendored
Normal file
|
|
@ -0,0 +1,316 @@
|
|||
@charset "UTF-8";
|
||||
|
||||
@font-face {
|
||||
font-family: "rainloop";
|
||||
src:url("fonts/rainloop.eot");
|
||||
src:url("fonts/rainloop.eot?#iefix") format("embedded-opentype"),
|
||||
url("fonts/rainloop.woff") format("woff"),
|
||||
url("fonts/rainloop.ttf") format("truetype"),
|
||||
url("fonts/rainloop.svg#rainloop") format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
|
||||
}
|
||||
|
||||
[data-icon]:before {
|
||||
font-family: "rainloop" !important;
|
||||
content: attr(data-icon);
|
||||
font-style: normal !important;
|
||||
font-weight: normal !important;
|
||||
font-variant: normal !important;
|
||||
text-transform: none !important;
|
||||
speak: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
[class^="icon-"]:before,
|
||||
[class*=" icon-"]:before {
|
||||
font-family: "rainloop" !important;
|
||||
font-style: normal !important;
|
||||
font-weight: normal !important;
|
||||
font-variant: normal !important;
|
||||
text-transform: none !important;
|
||||
speak: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.icon-address-book:before {
|
||||
content: "\e000";
|
||||
}
|
||||
.icon-arrows-in:before {
|
||||
content: "\e001";
|
||||
}
|
||||
.icon-arrows-out:before {
|
||||
content: "\e002";
|
||||
}
|
||||
.icon-list:before {
|
||||
content: "\e003";
|
||||
}
|
||||
.icon-search:before {
|
||||
content: "\e004";
|
||||
}
|
||||
.icon-user:before {
|
||||
content: "\e005";
|
||||
}
|
||||
.icon-user-add:before {
|
||||
content: "\e006";
|
||||
}
|
||||
.icon-tags:before {
|
||||
content: "\e007";
|
||||
}
|
||||
.icon-paper-plane:before {
|
||||
content: "\e008";
|
||||
}
|
||||
.icon-reply:before {
|
||||
content: "\e009";
|
||||
}
|
||||
.icon-reply-all:before {
|
||||
content: "\e00a";
|
||||
}
|
||||
.icon-forward:before {
|
||||
content: "\e00b";
|
||||
}
|
||||
.icon-info:before {
|
||||
content: "\e00c";
|
||||
}
|
||||
.icon-right-dir:before {
|
||||
content: "\e00d";
|
||||
}
|
||||
.icon-down-dir:before {
|
||||
content: "\e00e";
|
||||
}
|
||||
.icon-image:before {
|
||||
content: "\e00f";
|
||||
}
|
||||
.icon-print:before {
|
||||
content: "\e010";
|
||||
}
|
||||
.icon-calendar:before {
|
||||
content: "\e011";
|
||||
}
|
||||
.icon-cog:before {
|
||||
content: "\e012";
|
||||
}
|
||||
.icon-wrench:before {
|
||||
content: "\e013";
|
||||
}
|
||||
.icon-rocket:before {
|
||||
content: "\e014";
|
||||
}
|
||||
.icon-fire:before {
|
||||
content: "\e015";
|
||||
}
|
||||
.icon-purchase:before {
|
||||
content: "\e016";
|
||||
}
|
||||
.icon-apple:before {
|
||||
content: "\e017";
|
||||
}
|
||||
.icon-dropbox:before {
|
||||
content: "\e018";
|
||||
}
|
||||
.icon-skype:before {
|
||||
content: "\e019";
|
||||
}
|
||||
.icon-creative-commons:before {
|
||||
content: "\e01a";
|
||||
}
|
||||
.icon-ellipsis:before {
|
||||
content: "\e01b";
|
||||
}
|
||||
.icon-left:before {
|
||||
content: "\e01c";
|
||||
}
|
||||
.icon-right:before {
|
||||
content: "\e01d";
|
||||
}
|
||||
.icon-down:before {
|
||||
content: "\e01e";
|
||||
}
|
||||
.icon-right-mini:before {
|
||||
content: "\e01f";
|
||||
}
|
||||
.icon-down-mini:before {
|
||||
content: "\e020";
|
||||
}
|
||||
.icon-up:before {
|
||||
content: "\e021";
|
||||
}
|
||||
.icon-star-empty:before {
|
||||
content: "\e022";
|
||||
}
|
||||
.icon-star:before {
|
||||
content: "\e023";
|
||||
}
|
||||
.icon-at:before {
|
||||
content: "\e024";
|
||||
}
|
||||
.icon-list-add:before {
|
||||
content: "\e025";
|
||||
}
|
||||
.icon-google:before {
|
||||
content: "\e026";
|
||||
}
|
||||
.icon-google-plus:before {
|
||||
content: "\e027";
|
||||
}
|
||||
.icon-twitter:before {
|
||||
content: "\e028";
|
||||
}
|
||||
.icon-youtube:before {
|
||||
content: "\e029";
|
||||
}
|
||||
.icon-warning:before {
|
||||
content: "\e02a";
|
||||
}
|
||||
.icon-warning-alt:before {
|
||||
content: "\e02b";
|
||||
}
|
||||
.icon-power:before {
|
||||
content: "\e02c";
|
||||
}
|
||||
.icon-plus:before {
|
||||
content: "\e02d";
|
||||
}
|
||||
.icon-ok:before {
|
||||
content: "\e02e";
|
||||
}
|
||||
.icon-remove:before {
|
||||
content: "\e02f";
|
||||
}
|
||||
.icon-file:before {
|
||||
content: "\e030";
|
||||
}
|
||||
.icon-file-code:before {
|
||||
content: "\e031";
|
||||
}
|
||||
.icon-file-chart-graph:before {
|
||||
content: "\e032";
|
||||
}
|
||||
.icon-file-zip:before {
|
||||
content: "\e033";
|
||||
}
|
||||
.icon-file-music:before {
|
||||
content: "\e034";
|
||||
}
|
||||
.icon-file-text:before {
|
||||
content: "\e035";
|
||||
}
|
||||
.icon-file-bookmark:before {
|
||||
content: "\e036";
|
||||
}
|
||||
.icon-file-image:before {
|
||||
content: "\e037";
|
||||
}
|
||||
.icon-file-analytics:before {
|
||||
content: "\e038";
|
||||
}
|
||||
.icon-file-certificate:before {
|
||||
content: "\e039";
|
||||
}
|
||||
.icon-attachment:before {
|
||||
content: "\e03a";
|
||||
}
|
||||
.icon-file-excel:before {
|
||||
content: "\e03b";
|
||||
}
|
||||
.icon-file-movie:before {
|
||||
content: "\e03c";
|
||||
}
|
||||
.icon-folder-add:before {
|
||||
content: "\e03d";
|
||||
}
|
||||
.icon-folder:before {
|
||||
content: "\e03e";
|
||||
}
|
||||
.icon-floppy:before {
|
||||
content: "\e03f";
|
||||
}
|
||||
.icon-eye:before {
|
||||
content: "\e040";
|
||||
}
|
||||
.icon-facebook-alt:before {
|
||||
content: "\e041";
|
||||
}
|
||||
.icon-facebook:before {
|
||||
content: "\e042";
|
||||
}
|
||||
.icon-bolt:before {
|
||||
content: "\e043";
|
||||
}
|
||||
.icon-download:before {
|
||||
content: "\e044";
|
||||
}
|
||||
.icon-upload:before {
|
||||
content: "\e045";
|
||||
}
|
||||
.icon-bug:before {
|
||||
content: "\e046";
|
||||
}
|
||||
.icon-heart:before {
|
||||
content: "\e047";
|
||||
}
|
||||
.icon-heart-empty:before {
|
||||
content: "\e048";
|
||||
}
|
||||
.icon-popup:before {
|
||||
content: "\e049";
|
||||
}
|
||||
.icon-checkbox-checked:before {
|
||||
content: "\e04a";
|
||||
}
|
||||
.icon-checkbox-unchecked:before {
|
||||
content: "\e04b";
|
||||
}
|
||||
.icon-checkbox-partial:before {
|
||||
content: "\e04c";
|
||||
}
|
||||
.icon-radio-checked:before {
|
||||
content: "\e04d";
|
||||
}
|
||||
.icon-radio-unchecked:before {
|
||||
content: "\e04e";
|
||||
}
|
||||
.icon-google-drive:before {
|
||||
content: "\e04f";
|
||||
}
|
||||
.icon-spinner:before {
|
||||
content: "\e050";
|
||||
}
|
||||
.icon-github:before {
|
||||
content: "\e051";
|
||||
}
|
||||
.icon-telephone:before {
|
||||
content: "\e052";
|
||||
}
|
||||
.icon-mobile:before {
|
||||
content: "\e053";
|
||||
}
|
||||
.icon-mail:before {
|
||||
content: "\e054";
|
||||
}
|
||||
.icon-pencil:before {
|
||||
content: "\e055";
|
||||
}
|
||||
.icon-trash:before {
|
||||
content: "\e056";
|
||||
}
|
||||
.icon-left-middle:before {
|
||||
content: "\e057";
|
||||
}
|
||||
.icon-right-middle:before {
|
||||
content: "\e058";
|
||||
}
|
||||
.icon-repeat:before {
|
||||
content: "\e059";
|
||||
}
|
||||
.icon-key:before {
|
||||
content: "\e05a";
|
||||
}
|
||||
.icon-lock:before {
|
||||
content: "\e05b";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue