Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
a85037224c | ||
|
9f02337c12 | ||
|
ae74652c69 | ||
|
ecb66f47f2 | ||
|
e00badce65 | ||
|
19df7df525 | ||
|
617ff73e8a | ||
|
e7217faaa6 | ||
|
fe1b67f34a | ||
|
421f72a87c | ||
|
80133df17a | ||
|
0233140edf | ||
|
82f2702da2 | ||
|
6fbdab365c |
7
.gitignore
vendored
@ -1,7 +0,0 @@
|
||||
.DS_Store
|
||||
node_modules
|
||||
npm-debug.log
|
||||
.tmp
|
||||
dist
|
||||
.grunt
|
||||
styleguide/index.html
|
@ -1,7 +0,0 @@
|
||||
scss:
|
||||
enabled: true
|
||||
config_file: .scss-lint.yml
|
||||
ruby:
|
||||
enabled: false
|
||||
javascript:
|
||||
enabled: false
|
186
.scss-lint.yml
@ -1,186 +0,0 @@
|
||||
scss_files: 'src/scss/**/*.scss'
|
||||
exclude:
|
||||
- 'src/scss/cdb-utilities/normalize.scss'
|
||||
- 'src/scss/cdb-utilities/reset.scss'
|
||||
- 'src/scss/cdb-utilities/helpers.scss'
|
||||
- 'src/scss/utilities/reset.scss'
|
||||
- 'src/scss/variables/_sizes.scss'
|
||||
linters:
|
||||
BangFormat:
|
||||
enabled: true
|
||||
space_before_bang: true
|
||||
space_after_bang: false
|
||||
BemDepthf:
|
||||
enabled: true
|
||||
max_elements: 3
|
||||
BorderZero:
|
||||
enabled: false
|
||||
convention: zero
|
||||
ColorKeyword:
|
||||
enabled: true
|
||||
severity: warning
|
||||
ColorVariable:
|
||||
enabled: false
|
||||
severity: warning
|
||||
Comment:
|
||||
enabled: false
|
||||
Compass::PropertyWithMixin:
|
||||
enabled: false
|
||||
DebugStatement:
|
||||
enabled: true
|
||||
DeclarationOrder:
|
||||
enabled: true
|
||||
DisableLinterReason:
|
||||
enabled: false
|
||||
DuplicateProperty:
|
||||
enabled: true
|
||||
ElsePlacement:
|
||||
enabled: true
|
||||
style: same_line
|
||||
EmptyLineBetweenBlocks:
|
||||
enabled: false
|
||||
EmptyRule:
|
||||
enabled: true
|
||||
FinalNewline:
|
||||
enabled: true
|
||||
present: true
|
||||
HexLength:
|
||||
enabled: true
|
||||
style: short
|
||||
HexNotation:
|
||||
enabled: true
|
||||
style: uppercase
|
||||
HexValidation:
|
||||
enabled: true
|
||||
IdSelector:
|
||||
enabled: true
|
||||
ImportantRule:
|
||||
enabled: true
|
||||
ImportPath:
|
||||
enabled: true
|
||||
leading_underscore: false
|
||||
filename_extension: false
|
||||
Indentation:
|
||||
enabled: true
|
||||
allow_non_nested_indentation: false
|
||||
character: space
|
||||
width: 2
|
||||
severity: warning
|
||||
LeadingZero:
|
||||
enabled: true
|
||||
style: include_zero
|
||||
MergeableSelector:
|
||||
enabled: true
|
||||
force_nesting: false
|
||||
NameFormat:
|
||||
enabled: true
|
||||
# Valid cases
|
||||
# - hello
|
||||
# - helloMates
|
||||
# - hello-buddy
|
||||
# - hello-buddyOne
|
||||
convention: '([a-z]*)([A-Z]+[a-z]*)*-{0,2}([a-z]([a-z]*[A-Z]*[a-z]*))(\.[a-z]+-[a-z]*[A-Z]*[a-z]*)?(:.*)*'
|
||||
NestingDepth:
|
||||
enabled: true
|
||||
max_depth: 3
|
||||
severity: warning
|
||||
PlaceholderInExtend:
|
||||
enabled: false
|
||||
PropertyCount:
|
||||
enabled: true
|
||||
include_nested: false
|
||||
max_properties: 18
|
||||
severity: warning
|
||||
PropertySortOrder:
|
||||
enabled: true
|
||||
order: smacss
|
||||
ignore_unspecified: true
|
||||
severity: warning
|
||||
separate_groups: false
|
||||
PropertySpelling:
|
||||
enabled: true
|
||||
extra_properties: []
|
||||
PropertyUnits:
|
||||
global: ['em', 'rem', '%', 'px', 's', 'ms', 'vh'] # Allow relative units globally
|
||||
properties:
|
||||
border: ['px']
|
||||
line-height: ['px', '']
|
||||
margin: ['em', 'px', '%']
|
||||
QualifyingElement:
|
||||
enabled: true
|
||||
allow_element_with_attribute: true
|
||||
allow_element_with_class: false
|
||||
allow_element_with_id: false
|
||||
severity: warning
|
||||
SelectorDepth:
|
||||
enabled: true
|
||||
max_depth: 3
|
||||
severity: warning
|
||||
SelectorFormat:
|
||||
enabled: true
|
||||
# Valid cases
|
||||
# - 0..100%
|
||||
# - i | em | strong | div | span | ...
|
||||
# - CDB-Logo
|
||||
# - CDB-LogoWadus
|
||||
# - CDB-Logo--cartofante
|
||||
# - CDB-LogoWadus--cartofante
|
||||
# - CDB-Logo--cartofantePleased
|
||||
# - CDB-Logo--cartofanteURL
|
||||
# - CDB-Logo-oh
|
||||
# - CDB-Logo-oh:hover
|
||||
# - CDB-Logo:after
|
||||
# - CDB-Logo.is-state
|
||||
convention: '([0-9]+%)|([a-z]+(:.*)*)|CDB-([A-Z]+[a-z]*)([A-Z]+[a-z]*)*-{0,2}([a-z]([a-z]*[A-Z]*[a-z]*))(\.[a-z]+-[a-z]*[A-Z]*[a-z]*)?(:.*)*'
|
||||
ignored_types: ['id']
|
||||
Shorthand:
|
||||
enabled: true
|
||||
severity: warning
|
||||
SingleLinePerProperty:
|
||||
enabled: true
|
||||
allow_single_line_rule_sets: false
|
||||
SingleLinePerSelector:
|
||||
enabled: true
|
||||
SpaceAfterComma:
|
||||
enabled: true
|
||||
SpaceAfterPropertyColon:
|
||||
enabled: true
|
||||
style: one_space
|
||||
SpaceAfterPropertyName:
|
||||
enabled: true
|
||||
SpaceAfterVariableName:
|
||||
enabled: true
|
||||
SpaceAroundOperator:
|
||||
enabled: true
|
||||
style: one_space
|
||||
SpaceBeforeBrace:
|
||||
enabled: true
|
||||
style: space
|
||||
allow_single_line_padding: false
|
||||
SpaceBetweenParens:
|
||||
enabled: true
|
||||
spaces: 0
|
||||
StringQuotes:
|
||||
enabled: true
|
||||
style: single_quotes
|
||||
TrailingSemicolon:
|
||||
enabled: true
|
||||
severity: warning
|
||||
TrailingZero:
|
||||
enabled: true
|
||||
UnnecessaryMantissa:
|
||||
enabled: true
|
||||
UnnecessaryParentReference:
|
||||
enabled: true
|
||||
UrlFormat:
|
||||
enabled: true
|
||||
UrlQuotes:
|
||||
enabled: true
|
||||
VariableForProperty:
|
||||
enabled: false
|
||||
properties: []
|
||||
VendorPrefixes:
|
||||
enabled: false
|
||||
ZeroUnit:
|
||||
enabled: true
|
||||
severity: warning
|
26
.styleguide
@ -1,26 +0,0 @@
|
||||
{
|
||||
"sgComment": "SG",
|
||||
"srcFolder": "./src",
|
||||
"outputFile": "./dist/styleguide/index.html",
|
||||
"templateFile": "./styleguide/_template.html",
|
||||
"themeFile": "./styleguide/theme.css",
|
||||
"highlightFolder": "./node_modules/highlight.js/styles",
|
||||
"highlightStyle": "github",
|
||||
"excludeDirs": [
|
||||
"target",
|
||||
"node_modules"
|
||||
],
|
||||
"fileExtensions": {
|
||||
"scss": true,
|
||||
"sass": true,
|
||||
"css": true,
|
||||
"less": true
|
||||
},
|
||||
"walkerOptions": {
|
||||
"followLinks": false
|
||||
},
|
||||
"customVars": {
|
||||
"sampleVar": "Hello from customVars!"
|
||||
},
|
||||
"jqFile": "./node_modules/jquery/dist/jquery.js"
|
||||
}
|
18
.travis.yml
@ -1,18 +0,0 @@
|
||||
cache: false
|
||||
language: node_js
|
||||
node_js:
|
||||
- "4.1"
|
||||
|
||||
install:
|
||||
- npm install
|
||||
|
||||
before_script:
|
||||
- npm install -g grunt-cli
|
||||
|
||||
script:
|
||||
- grunt build
|
||||
|
||||
notifications:
|
||||
email:
|
||||
on_success: never
|
||||
on_failure: change
|
44
Gruntfile.js
@ -1,44 +0,0 @@
|
||||
module.exports = function (grunt) {
|
||||
require('load-grunt-tasks')(grunt);
|
||||
|
||||
grunt.initConfig({
|
||||
concat: require('./tasks/concat'),
|
||||
connect: require('./tasks/connect'),
|
||||
clean: require('./tasks/clean'),
|
||||
sass: require('./tasks/sass'),
|
||||
cssmin: require('./tasks/cssmin'),
|
||||
copy: require('./tasks/copy'),
|
||||
shell: require('./tasks/shell'),
|
||||
watch: require('./tasks/watch'),
|
||||
'gh-pages': require('./tasks/gh-pages')
|
||||
});
|
||||
|
||||
var baseTasks = [
|
||||
'clean',
|
||||
'shell:generateFont',
|
||||
'sass',
|
||||
'concat',
|
||||
'cssmin',
|
||||
'copy',
|
||||
'shell'
|
||||
];
|
||||
|
||||
var generateFontTask = baseTasks.concat([
|
||||
'shell:generateFont'
|
||||
]);
|
||||
|
||||
var devTasks = baseTasks.concat([
|
||||
'connect',
|
||||
'watch:scss'
|
||||
]);
|
||||
|
||||
grunt.event.on('watch', function (action, filepath) {
|
||||
grunt.task.run('shell:style');
|
||||
});
|
||||
|
||||
grunt.registerTask('dev', devTasks);
|
||||
grunt.registerTask('generate-font', generateFontTask);
|
||||
grunt.registerTask('build', baseTasks);
|
||||
grunt.registerTask('default', baseTasks);
|
||||
grunt.registerTask('publish', ['build', 'gh-pages']);
|
||||
};
|
28
Gulpfile.js
@ -1,28 +0,0 @@
|
||||
var gulp = require('gulp');
|
||||
var iconfont = require('gulp-iconfont');
|
||||
var iconfontCss = require('gulp-iconfont-css');
|
||||
|
||||
String.prototype.toCamelCase = function() {
|
||||
return this.replace(/^([A-Z])|\s(\w)/g, function(match, p1, p2, offset) {
|
||||
if (p2) return p2.toUpperCase();
|
||||
return p1.toLowerCase();
|
||||
});
|
||||
};
|
||||
|
||||
gulp.task('default', function(){
|
||||
gulp.src(['./icon-font/svgs/*.svg'])
|
||||
|
||||
.pipe(iconfontCss({
|
||||
fontName: 'cartoIcon',
|
||||
path: './icon-font/template.jst.ejs',
|
||||
targetPath: '../scss/cdb-icon-font.scss',
|
||||
fontPath: '../../fonts/'
|
||||
}))
|
||||
|
||||
.pipe(iconfont({
|
||||
fontName: 'cartoIcon',
|
||||
appendCodepoints: true
|
||||
}))
|
||||
|
||||
.pipe(gulp.dest('src/fonts/'));
|
||||
});
|
@ -1,34 +0,0 @@
|
||||
How to make changes in the CartoDB icon font
|
||||
--------------------------------------------
|
||||
|
||||
If you want to edit, add or remove any icon in our CartoDB font, you should follow these steps:
|
||||
|
||||
- Check you have [Sketch](http://bohemiancoding.com/sketch/) last version.
|
||||
- Open [font.sketch](http://github.com/CartoDB/CartoAssets/blob/master/icon-font/font.sketch) file and make your changes.
|
||||
|
||||
### Rules for the icons:
|
||||
- Size should have at max 500px of width/height.
|
||||
- Place the icon accordingly with the grid.
|
||||
- Icons should be completely black.
|
||||
- Group the icon if it has several parts.
|
||||
- Make icons exportable to SVG.
|
||||
- Name your icon (layer/group) according to the pattern `icon-font_xx_Name`, where xx is a unique integer (increase it for each new icon).
|
||||
|
||||
### When you're done with changes
|
||||
|
||||
- Select all the icons, and export them to `app/assets/fonts/icon-font/svgs` folder (option should be visible in the bottom corner in your Sketch app):
|
||||
- ![screen shot 2015-01-16 at 11 40 36](https://cloud.githubusercontent.com/assets/978461/5774986/93dc90e8-9d74-11e4-8064-a478e55d392b.png)
|
||||
- Take into account that ```svgs``` folder is ignored.
|
||||
- Open your terminal app and go to the CartoDB root folder.
|
||||
- Install your node dependencies: `npm install`
|
||||
- Now we will generate the new icon fonts + stylesheet. Just run: `./node_modules/.bin/gulp`
|
||||
- Check that your `icon-font.css.scss` and the `cartoIcon` fonts have been edited:
|
||||
- ![screen shot 2015-01-16 at 11 02 53](https://cloud.githubusercontent.com/assets/978461/5775004/acf10faa-9d74-11e4-893c-790da626d894.png)
|
||||
|
||||
All done!
|
||||
|
||||
|
||||
### Troubleshooting
|
||||
|
||||
- **Q**: "I ran `gulp` but the `icon-font.css.scss` file wasn't generated/updated!"
|
||||
**A**: Make sure that the folder `icon-font/svgs` contain the `.svg` files.
|
22
LICENSE-MIT
@ -1,22 +0,0 @@
|
||||
Copyright (c) 2016 xavijam
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
files (the "Software"), to deal in the Software without
|
||||
restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
46
README.md
@ -1,46 +0,0 @@
|
||||
# CartoAssets [![NPM version](http://img.shields.io/npm/v/cartoassets.svg)](https://www.npmjs.org/package/cartoassets)
|
||||
|
||||
> Share frontend assets between different CartoDB repositories
|
||||
|
||||
### Installation
|
||||
As easy as:
|
||||
- ```npm install --global grunt-cli``` [Grunt installation](http://gruntjs.com/getting-started)
|
||||
- ```npm install --global gulp-cli``` [Gulp installation](https://github.com/gulpjs/gulp)
|
||||
- ```npm install -g markdown-styleguide-generator``` [StyleGenerator installation](https://www.npmjs.com/package/markdown-styleguide-generator#install)
|
||||
- ```npm install```
|
||||
|
||||
### Build
|
||||
If you want to use any of the CartoAssets components, after the installation just run:
|
||||
- ```grunt build```
|
||||
|
||||
### Development
|
||||
It will generate a UI documentation about the components in this repository:
|
||||
- ```grunt dev```
|
||||
|
||||
If you want to check the documenation, it is generated in the ```dist``` folder.
|
||||
|
||||
### How to add/update the icon font
|
||||
|
||||
See this [instructions](https://github.com/CartoDB/CartoAssets/blob/master/Icon-Fonting.md)
|
||||
|
||||
### Publish a new version in NPM
|
||||
In order to publish a new version of CartoAssets you need to:
|
||||
|
||||
- Change version of the package.
|
||||
- Be a collaborator of the [npm module](https://www.npmjs.com/cartoassets) (Send an email to xavijam[at]cartodb.com).
|
||||
|
||||
If you have these previous steps done:
|
||||
|
||||
- ```npm publish```
|
||||
|
||||
### Publish CartoAssets styleguide and documentation in GH-Pages
|
||||
Just run this command:
|
||||
|
||||
- ```grunt publish```
|
||||
|
||||
|
||||
### Browser support
|
||||
|
||||
![Chrome](https://raw.github.com/alrra/browser-logos/master/chrome/chrome_48x48.png) | ![Firefox](https://raw.github.com/alrra/browser-logos/master/firefox/firefox_48x48.png) | ![IE](https://raw.github.com/alrra/browser-logos/master/internet-explorer/internet-explorer_48x48.png) | ![Opera](https://raw.github.com/alrra/browser-logos/master/opera/opera_48x48.png) | ![Safari](https://raw.github.com/alrra/browser-logos/master/safari/safari_48x48.png)
|
||||
--- | --- | --- | --- | --- |
|
||||
31+ ✔ | 38+ ✔ | 10+ ✔ | 31+ ✔ | 8+ ✔ |
|
1
css/cartostyles.css
Normal file
0
src/fonts/OpenSans-Light.ttf → fonts/OpenSans-Light.ttf
Executable file → Normal file
0
src/fonts/OpenSans-Regular.ttf → fonts/OpenSans-Regular.ttf
Executable file → Normal file
0
src/fonts/OpenSans-Semibold.ttf → fonts/OpenSans-Semibold.ttf
Executable file → Normal file
Before Width: | Height: | Size: 199 KiB After Width: | Height: | Size: 199 KiB |
@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="474px" viewBox="0 0 500 474" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_01_Clock</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(0.000000, -14.000000)" fill="#000000">
|
||||
<g id="icon-font_01_Clock" sketch:type="MSLayerGroup" transform="translate(0.000000, 13.000000)">
|
||||
<g id="Fill-556-+-Fill-557" sketch:type="MSShapeGroup">
|
||||
<path d="M250,0.986842105 C111.930556,0.986842105 0,107.019737 0,237.828947 C0,368.638158 111.930556,474.671053 250,474.671053 C388.069444,474.671053 500,368.638158 500,237.828947 C500,107.019737 388.069444,0.986842105 250,0.986842105 L250,0.986842105 Z M250,422.039474 C142.781893,422.039474 55.5555556,339.410819 55.5555556,237.828947 C55.5555556,136.253899 142.781893,53.6184211 250,53.6184211 C357.218107,53.6184211 444.444444,136.253899 444.444444,237.828947 C444.444444,339.410819 357.218107,422.039474 250,422.039474 L250,422.039474 Z" id="Fill-556"></path>
|
||||
<path d="M266.34824,218.855794 L266.34824,115.616148 C266.34824,113.146778 265.32442,110.739765 263.556581,108.987509 C261.782383,107.247725 259.321399,106.25 256.803183,106.25 L231.76092,106.25 C229.236345,106.25 226.794438,107.247725 225.013881,108.987509 C223.239683,110.739765 222.222222,113.146778 222.222222,115.616148 L222.222222,237.531968 C222.222222,240.001339 223.239683,242.414587 225.013881,244.154371 C225.738822,244.859015 226.571869,245.445178 227.474865,245.887919 L332.985586,315.198662 C334.575369,316.227567 336.413159,316.776316 338.276384,316.776316 C338.950452,316.776316 339.630879,316.701486 340.298588,316.558063 C342.829523,316.034257 345.010705,314.525198 346.384278,312.367616 L359.662146,291.546332 C362.383854,287.281056 361.162901,281.656378 356.908642,278.837804 L266.34824,218.855794 Z" id="Fill-557"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.3 KiB |
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="494px" height="297px" viewBox="0 0 494 297" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_02_Stats</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-1000.000000, -102.000000)" fill="#000000">
|
||||
<g id="icon-font_02_Stats" sketch:type="MSLayerGroup" transform="translate(1000.000000, 102.000000)">
|
||||
<g id="Fill-796-+-Fill-797" sketch:type="MSShapeGroup">
|
||||
<path d="M52.2759488,228.685486 L82.2817428,196.667806 L130.061482,252.660529 C136.398109,260.108674 146.952616,263.989862 157.585594,262.766906 C168.189145,261.586413 177.203635,255.446152 181.107625,246.809022 L226.523391,146.52659 L292.351728,280.771543 C296.961967,290.257949 307.634182,296.296296 319.434434,296.296296 C319.983739,296.296296 320.533044,296.296296 321.082349,296.270818 C333.500569,295.642354 344.084502,288.389543 347.625559,278.087833 L410.295391,95.5191125 L437.927402,144.666677 C445.019324,157.320879 462.636325,162.577894 477.251766,156.420647 C491.867207,150.280387 497.978226,135.001923 490.847068,122.373199 L430.13904,14.3283897 C424.812742,4.84198414 413.375424,-0.771725881 401.261283,0.0860422154 C389.117716,0.943810312 378.926143,8.10320145 375.45375,18.209578 L314.510305,195.640183 L252.517295,69.1406203 C247.848201,59.57778 237.019043,53.4629975 225.002992,53.6073743 C213.035987,53.7517511 202.403009,60.1213162 198.037995,69.8030551 L145.746106,185.321487 L107.029902,139.92772 C101.585895,133.575141 93.1599466,129.795865 84.0375575,129.609025 C74.8857413,129.413691 66.2636122,132.861749 60.5155261,139.027488 L6.58553089,196.540415 C-3.66489562,207.470588 -1.73251857,223.521892 10.8720729,232.396819 C23.4864734,241.263254 42.0255223,239.607167 52.2759488,228.685486 Z" id="Fill-797"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.2 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="445px" viewBox="0 0 500 445" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_03_HeartEmpty</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-2000.000000, -28.000000)" stroke="#000000" stroke-width="55.5555556">
|
||||
<path d="M2249.995,88.3321076 C2219.27316,49.4118608 2178.3807,28.0624556 2134.38806,28.0624556 C2069.23415,28.0624556 2000,78.9741772 2000,173.365404 C2000,270.452631 2082.72496,338.216955 2143.11859,387.692198 C2165.98996,406.460105 2182.77097,419.773557 2196.41178,430.599194 C2217.98308,447.691209 2228.80373,456.268445 2240.47443,468.353603 C2243.00458,470.987147 2246.39478,472.444444 2249.995,472.444444 C2253.59522,472.444444 2256.97542,470.997556 2259.51557,468.364012 C2274.9465,452.385788 2288.96734,441.331147 2326.50959,411.706375 L2356.6914,387.837928 C2406.77441,348.22026 2500,274.481017 2500,172.397343 C2500,78.5994436 2430.84585,28 2365.78195,28 C2321.7193,28 2280.74684,49.3910423 2249.995,88.3321076 Z M2335.44921,90.5535757 C2286.35269,112.377083 2250.05188,176.854234 2250.05188,176.854234 C2250.05188,176.854234 2161.16638,13.3746225 2072.42737,116.118152 C1983.68835,218.861681 2188.54065,352.913196 2188.54065,352.913196 L2248.96851,401.039415 L2327.26135,340.306376 C2327.26135,340.306376 2507.84301,219.038684 2425.22583,111.696153 C2394.32952,80.9330167 2362.7903,78.4004024 2335.44921,90.5535757 Z" id="icon-font_03_HeartEmpty" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.9 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="445px" viewBox="0 0 500 445" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_04_HeartFill</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-3000.000000, -25.000000)" stroke="#000000" stroke-width="55.5555556" fill="#000000">
|
||||
<path d="M3249.995,85.3321076 C3219.27316,46.4118608 3178.3807,25.0624556 3134.38806,25.0624556 C3069.23415,25.0624556 3000,75.9741772 3000,170.365404 C3000,267.452631 3082.72496,335.216955 3143.11859,384.692198 C3165.98996,403.460105 3182.77097,416.773557 3196.41178,427.599194 C3217.98308,444.691209 3228.80373,453.268445 3240.47443,465.353603 C3243.00458,467.987147 3246.39478,469.444444 3249.995,469.444444 C3253.59522,469.444444 3256.97542,467.997556 3259.51557,465.364012 C3274.9465,449.385788 3288.96734,438.331147 3326.50959,408.706375 L3356.6914,384.837928 C3406.77441,345.22026 3500,271.481017 3500,169.397343 C3500,75.5994436 3430.84585,25 3365.78195,25 C3321.7193,25 3280.74684,46.3910423 3249.995,85.3321076 Z" id="icon-font_04_HeartFill" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_05_Alert</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-4000.000000, 0.000000)" fill="#000000">
|
||||
<g id="icon-font_05_Alert" sketch:type="MSLayerGroup" transform="translate(4000.000000, 0.000000)">
|
||||
<path d="M297.154905,66.6666667 C298.99743,61.4536846 300,55.8439237 300,50 C300,22.3857625 277.614237,0 250,0 C222.385763,0 200,22.3857625 200,50 C200,55.8439237 201.00257,61.4536846 202.845095,66.6666667 L200.078983,66.6666667 C126.397395,66.6666667 66.6666667,126.394061 66.6666667,200.078983 L66.6666667,366.666667 L33.3333333,366.666667 L0,433.333333 L166.666667,433.333333 C166.666667,470.152317 203.976271,500 250,500 C296.023729,500 333.333333,470.152317 333.333333,433.333333 L500,433.333333 L466.666667,366.666667 L433.333333,366.666667 L433.333333,200.078983 C433.333333,126.397395 373.605939,66.6666667 299.921017,66.6666667 L297.154905,66.6666667 Z M250,66.6666667 C259.204746,66.6666667 266.666667,59.2047458 266.666667,50 C266.666667,40.7952542 259.204746,33.3333333 250,33.3333333 C240.795254,33.3333333 233.333333,40.7952542 233.333333,50 C233.333333,59.2047458 240.795254,66.6666667 250,66.6666667 Z" id="Oval-27" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.8 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_06_Rows</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-5000.000000, 0.000000)" fill="#000000">
|
||||
<path d="M5000,0 L5500,0 L5500,100 L5000,100 L5000,0 Z M5000,200 L5500,200 L5500,300 L5000,300 L5000,200 Z M5000,400 L5500,400 L5500,500 L5000,500 L5000,400 Z" id="icon-font_06_Rows" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 917 B |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="363px" viewBox="0 0 500 363" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_07_Check</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-6000.000000, -69.000000)" fill="#000000">
|
||||
<g id="icon-font_07_Check" sketch:type="MSLayerGroup" transform="translate(6000.000000, 69.000000)">
|
||||
<path d="M5.84567628,195.19364 L55.8332543,145.881941 C63.6112604,138.203318 76.3477452,138.203318 84.1326959,145.868242 L165.315634,225.76429 C173.100585,233.429214 185.82318,233.415515 193.594242,225.736891 L416.072993,5.78301572 C423.844054,-1.89560824 436.580539,-1.93670703 444.386323,5.71451773 L494.123894,54.4234338 C501.929679,62.0746586 501.964402,74.6097896 494.193341,82.2952634 L224.400701,349.033261 C216.62964,356.711885 201.275022,363 190.2747,363 L166.96846,363 C155.968137,363 140.627409,356.698186 132.863293,349.019562 L5.81095304,223.113418 C-1.9531637,215.434794 -1.93232976,202.858564 5.84567628,195.19364 Z" id="Fill-461" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_08_Dribbble</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-7000.000000, 0.000000)" fill="#000000">
|
||||
<g id="icon-font_08_Dribbble" sketch:type="MSLayerGroup" transform="translate(7000.000000, 0.000000)">
|
||||
<path d="M250.003474,0 C111.934906,0 0,111.934906 0,250.003474 C0,388.072043 111.934906,500 250.003474,500 C388.072043,500 500,388.072043 500,250.003474 C500,111.934906 388.072043,0 250.003474,0 L250.003474,0 Z M341.419181,236.550996 C340.932779,212.932724 339.258168,191.190572 336.603805,171.394027 L420.125909,171.394027 C429.437025,191.461567 435.280793,213.426074 436.92761,236.550996 L341.419181,236.550996 L341.419181,236.550996 Z M63.079339,236.550996 C64.7261559,213.426074 70.5699237,191.461567 79.8810401,171.394027 L163.840905,171.394027 C161.186542,191.197521 159.504982,212.925775 159.004683,236.550996 L63.079339,236.550996 L63.079339,236.550996 Z M191.885432,171.394027 L308.545381,171.394027 C311.310922,190.947371 313.103659,212.661729 313.624804,236.550996 L186.799061,236.550996 C187.327154,212.668677 189.112942,190.940423 191.885432,171.394027 L191.885432,171.394027 Z M63.1418764,264.352322 L159.011632,264.352322 C159.511931,288.324972 161.235182,310.345067 163.952082,330.357019 L80.6731798,330.357019 C71.0146337,310.087969 64.9276651,287.810776 63.1418764,264.352322 L63.1418764,264.352322 Z M186.806009,264.352322 L313.610907,264.352322 C313.075865,288.589018 311.26923,310.616062 308.434204,330.357019 L192.017455,330.357019 C189.182428,310.609114 187.341051,288.609864 186.806009,264.352322 L186.806009,264.352322 Z M341.412232,264.352322 L436.865072,264.352322 C435.079283,287.810776 428.992315,310.087969 419.333769,330.357019 L336.443987,330.357019 C339.174785,310.338119 340.911934,288.345818 341.412232,264.352322 L341.412232,264.352322 Z M403.602151,142.731076 L331.864864,142.731076 C326.556138,115.506483 319.545006,92.4232528 311.91545,73.0922634 C349.291938,86.2181581 381.276318,110.843976 403.602151,142.731076 L403.602151,142.731076 Z M277.950721,64.6288756 C287.379963,84.2933974 296.760565,109.93371 303.584085,142.731076 L196.867574,142.731076 C203.691093,109.919813 213.071696,84.2378087 222.500938,64.5732868 C231.478522,63.2461053 240.657615,62.5373487 250.003474,62.5373487 C259.502203,62.5373487 268.834165,63.2600025 277.950721,64.6288756 L277.950721,64.6288756 Z M188.577901,72.9324458 C180.934447,92.2912295 173.895521,115.436997 168.565949,142.731076 L96.3978487,142.731076 C118.83486,110.705004 150.999903,86.0027516 188.577901,72.9324458 L188.577901,72.9324458 Z M97.0232222,358.151396 L168.586795,358.151396 C173.853829,385.035507 180.781578,407.868588 188.327751,426.99112 C151.194463,414.011146 119.37685,389.677168 97.0232222,358.151396 L97.0232222,358.151396 Z M222.257737,435.398919 C212.925775,415.942855 203.663299,390.545743 196.895368,358.151396 L303.500702,358.151396 C296.746668,390.497102 287.525884,415.901163 278.214767,435.34333 C269.00788,436.733049 259.592534,437.462651 250.003474,437.462651 C240.574232,437.462651 231.311756,436.746946 222.257737,435.398919 L222.257737,435.398919 Z M312.235085,426.803508 C319.739567,407.736565 326.604778,384.910433 331.850967,358.151396 L402.983726,358.151396 C380.734327,389.524299 349.132121,413.774893 312.235085,426.803508 L312.235085,426.803508 Z" id="Fill-728" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.9 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="400px" viewBox="0 0 500 400" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_09_Twitter</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-8000.000000, -50.000000)" fill="#000000" opacity="0.9">
|
||||
<g id="icon-font_09_Twitter" sketch:type="MSLayerGroup" transform="translate(8000.000000, 50.000000)">
|
||||
<path d="M157.247888,400 C99.3178244,400 45.3966861,383.283673 0,354.632772 C8.02516551,355.565358 16.1911555,356.042452 24.4705366,356.042452 C72.5300852,356.042452 116.761769,339.89864 151.869125,312.81585 C106.98087,312.000288 69.0972603,282.805678 56.0444786,242.686495 C62.306595,243.865729 68.7333114,244.497655 75.3429167,244.497655 C84.6995135,244.497655 93.7616592,243.26441 102.37024,240.95635 C55.4409452,231.680904 20.0830316,190.866782 20.0830316,141.940246 C20.0830316,141.515362 20.0830316,141.092277 20.0903471,140.670994 C33.9222356,148.234299 49.7384689,152.776603 66.5551044,153.300507 C39.030323,135.192503 20.9188339,104.283953 20.9188339,69.2507809 C20.9188339,50.7448982 25.9775412,33.3984463 34.807418,18.4842784 C85.4018069,79.5776359 160.987966,119.779636 246.243462,123.990674 C244.495044,116.600203 243.586086,108.89287 243.586086,100.978495 C243.586086,45.2123973 289.516807,0 346.170306,0 C375.673946,0 402.333663,12.2640405 421.046856,31.8897461 C444.412744,27.3600446 466.366729,18.9559722 486.1864,7.38506963 C478.527013,30.9643619 462.262702,50.7539 441.082337,63.2519871 C461.832913,60.8107013 481.603204,55.3826211 500,47.3512229 C486.246754,67.6016527 468.854018,85.3873921 448.813051,99.6246253 C449.010571,103.954487 449.109331,108.309554 449.109331,112.688025 C449.109331,246.12878 345.930722,400 157.247888,400" id="Fill-12" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.2 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="272px" viewBox="0 0 500 272" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_100_caretDown</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-7000.000000, -10000.000000)" fill="#000000">
|
||||
<g id="icon-font_100_caretDown" sketch:type="MSLayerGroup" transform="translate(7000.000000, 10000.000000)">
|
||||
<path d="M218.30986,248.23301 L250,272 L281.69014,248.23301 L457.74648,116.194175 L500,84.5048545 L436.61972,0 L394.3662,31.6893205 L249.53837,139.614949 L105.6338,31.6893204 L63.38028,3.77763151e-08 L0,84.5048548 L42.25352,116.194175 L218.30986,248.23301 L218.30986,248.23301 Z" id="icon_02_caretDown" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
@ -1,21 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="477px" height="499px" viewBox="0 0 477 499" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_101_Lightbulb</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-2000.000000, -10000.000000)" fill="#000000">
|
||||
<g id="icon-font_101_Lightbulb" sketch:type="MSLayerGroup" transform="translate(2000.000000, 10000.000000)">
|
||||
<path d="M238.397727,90.7272727 C157.024636,90.7272727 90.8181818,156.867455 90.8181818,238.159091 C90.8181818,302.394 132.412909,358.781 192.988636,378.310045 L192.988636,396.931818 C192.988636,403.192 198.074455,408.272727 204.340909,408.272727 L272.454545,408.272727 C278.721,408.272727 283.806818,403.192 283.806818,396.931818 L283.806818,378.310045 C344.40525,358.781 385.977273,302.371318 385.977273,238.159091 C385.977273,156.867455 319.770818,90.7272727 238.397727,90.7272727 L238.397727,90.7272727 Z M269.616477,358.803682 C264.598773,360.096545 261.102273,364.610227 261.102273,369.781682 L261.102273,385.590909 L215.693182,385.590909 L215.693182,369.781682 C215.693182,364.610227 212.196682,360.096545 207.178977,358.803682 C152.029636,344.604864 113.522727,294.999727 113.522727,238.159091 C113.522727,169.365136 169.557545,113.409091 238.397727,113.409091 C307.237909,113.409091 363.272727,169.365136 363.272727,238.159091 C363.272727,294.977045 324.765818,344.582182 269.616477,358.803682 L269.616477,358.803682 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M249.75,476.318182 L227.045455,476.318182 C220.779,476.318182 215.693182,481.398909 215.693182,487.659091 C215.693182,493.919273 220.779,499 227.045455,499 L249.75,499 C256.016455,499 261.102273,493.919273 261.102273,487.659091 C261.102273,481.398909 256.016455,476.318182 249.75,476.318182 L249.75,476.318182 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M272.454545,430.954545 L204.340909,430.954545 C198.074455,430.954545 192.988636,436.035273 192.988636,442.295455 C192.988636,448.555636 198.074455,453.636364 204.340909,453.636364 L272.454545,453.636364 C278.721,453.636364 283.806818,448.555636 283.806818,442.295455 C283.806818,436.035273 278.721,430.954545 272.454545,430.954545 L272.454545,430.954545 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M238.397727,68.0454545 C244.664182,68.0454545 249.75,62.9647273 249.75,56.7045455 L249.75,11.3409091 C249.75,5.08072727 244.664182,0 238.397727,0 C232.131273,0 227.045455,5.08072727 227.045455,11.3409091 L227.045455,56.7045455 C227.045455,62.9647273 232.131273,68.0454545 238.397727,68.0454545 L238.397727,68.0454545 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M465.443182,226.818182 L420.034091,226.818182 C413.767636,226.818182 408.681818,231.898909 408.681818,238.159091 C408.681818,244.419273 413.767636,249.5 420.034091,249.5 L465.443182,249.5 C471.709636,249.5 476.795455,244.419273 476.795455,238.159091 C476.795455,231.898909 471.709636,226.818182 465.443182,226.818182 L465.443182,226.818182 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M56.7613636,226.818182 L11.3522727,226.818182 C5.08581818,226.818182 0,231.898909 0,238.159091 C0,244.419273 5.08581818,249.5 11.3522727,249.5 L56.7613636,249.5 C63.0278182,249.5 68.1136364,244.419273 68.1136364,238.159091 C68.1136364,231.898909 63.0278182,226.818182 56.7613636,226.818182 L56.7613636,226.818182 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M101.920705,117.877409 C104.14575,120.100227 107.051932,121.188955 109.958114,121.188955 C112.864295,121.188955 115.770477,120.077545 117.995523,117.877409 C122.422909,113.454455 122.422909,106.264318 117.995523,101.841364 L69.7937727,53.7105455 C65.3663864,49.2875909 58.1690455,49.2875909 53.7416591,53.7105455 C49.3142727,58.1335 49.3142727,65.3236364 53.7416591,69.7465909 L101.920705,117.877409 L101.920705,117.877409 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M366.791932,121.211636 C369.698114,121.211636 372.604295,120.100227 374.829341,117.900091 L423.008386,69.7692727 C427.435773,65.3463182 427.435773,58.1561818 423.008386,53.7332273 C418.581,49.3102727 411.383659,49.3102727 406.956273,53.7332273 L358.777227,101.886727 C354.349841,106.309682 354.349841,113.477136 358.777227,117.922773 C360.979568,120.100227 363.88575,121.211636 366.791932,121.211636 L366.791932,121.211636 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.8 KiB |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_102_Explore</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-4000.000000, -10000.000000)" fill="#000000">
|
||||
<g id="icon-font_102_Explore" sketch:type="MSLayerGroup" transform="translate(4000.000000, 10000.000000)">
|
||||
<path d="M489.583333,479.166667 L288.833333,479.166667 C328.354167,457.25 357.916667,419.708333 369.5,375 L416.666667,375 C458.229167,375 489.583333,339.166667 489.583333,291.666667 C489.583333,244.166667 458.229167,208.333333 416.666667,208.333333 L375,208.333333 L375,197.916667 C375,192.166667 370.333333,187.5 364.583333,187.5 L52.0833333,187.5 C46.3333333,187.5 41.6666667,192.166667 41.6666667,197.916667 L41.6666667,333.333333 C41.6666667,396.041667 76.5208333,450.729167 127.833333,479.166667 L10.4166667,479.166667 C4.66666667,479.166667 0,483.833333 0,489.583333 C0,495.333333 4.66666667,500 10.4166667,500 L489.583333,500 C495.333333,500 500,495.333333 500,489.583333 C500,483.833333 495.333333,479.166667 489.583333,479.166667 L489.583333,479.166667 Z M416.666667,229.166667 C450.5,229.166667 468.75,261.375 468.75,291.666667 C468.75,321.958333 450.5,354.166667 416.666667,354.166667 L373.5625,354.166667 C374.416667,347.333333 375,340.416667 375,333.333333 L375,229.166667 L416.666667,229.166667 L416.666667,229.166667 Z M62.5,333.333333 L62.5,208.333333 L354.166667,208.333333 L354.166667,333.333333 C354.166667,413.729167 288.729167,479.166667 208.333333,479.166667 C127.9375,479.166667 62.5,413.729167 62.5,333.333333 L62.5,333.333333 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M202.25,150.145833 C204.0625,151.458333 206.1875,152.104167 208.333333,152.104167 C210.479167,152.104167 212.604167,151.458333 214.416667,150.145833 C222.333333,144.458333 291.666667,93.2916667 291.666667,50.2916667 C291.666667,18.8125 268,0 245.166667,0 C232.791667,0 218.458333,5.64583333 208.333333,20.0625 C198.229167,5.64583333 183.895833,0 171.520833,0 C148.666667,0 125,18.8125 125,50.2916667 C125,93.2916667 194.333333,144.458333 202.25,150.145833 L202.25,150.145833 Z M171.520833,20.8333333 C184.0625,20.8333333 194.041667,31.0833333 198.1875,48.2708333 C199.333333,52.9375 203.541667,56.2291667 208.333333,56.2291667 C213.125,56.2291667 217.333333,52.9375 218.458333,48.2708333 C222.645833,31.0833333 232.604167,20.8333333 245.166667,20.8333333 C257.770833,20.8333333 270.833333,31.8541667 270.833333,50.2916667 C270.833333,72.8958333 234.729167,108.395833 208.333333,128.708333 C181.916667,108.416667 145.833333,72.9375 145.833333,50.2916667 C145.833333,31.8541667 158.895833,20.8333333 171.520833,20.8333333 L171.520833,20.8333333 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.2 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="269px" height="373px" viewBox="0 0 269 373" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_103_Drop</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-1116.000000, -10000.000000)" fill="#000000">
|
||||
<g id="icon-font_103_Drop" sketch:type="MSLayerGroup" transform="translate(1116.000000, 10000.000000)">
|
||||
<path d="M134.333333,313 C92.8508325,313 60,282.202345 60,245.1875 C60,232.386133 72.2701659,200.696653 93.2691446,160.081141 C97.9582888,151.011557 103.021535,141.58606 108.403599,131.879172 C119.582984,111.716452 131.593704,91.2983774 143.60654,71.7061927 C147.811298,64.8484962 151.712368,58.5896977 155.207074,53.0624149 C156.424352,51.1371478 157.501891,49.4438912 158.426884,47.9991564 C158.747077,47.49905 159.024363,47.0672163 159.257142,46.7057164 C159.391798,46.4965977 159.478766,46.3619079 159.516446,46.3037064 L134.333333,30 L109.150221,46.3037064 C109.251703,46.4604588 109.46939,46.7981023 109.797337,47.3089768 C110.356535,48.1800954 111.014162,49.209217 111.764267,50.3886716 C113.921843,53.7812127 116.37838,57.6837283 119.086205,62.0346996 C126.837951,74.4903127 135.028105,88.0093004 143.273319,102.094735 C161.021502,132.414246 176.495036,161.027794 188.133757,185.829273 C201.396663,214.091799 208.666667,235.728808 208.666667,245.1875 C208.666667,282.202345 175.815834,313 134.333333,313 L134.333333,313 Z M268.666667,245.1875 C268.666667,224.077242 259.353773,196.360178 242.450323,160.33985 C229.921571,133.641764 213.643057,103.539655 195.054057,71.7837596 C186.51779,57.2011148 178.050529,43.2247249 170.02669,30.3319082 C167.21306,25.8109291 164.652761,21.7435735 162.392838,18.1901034 C161.596819,16.938454 160.893676,15.8381045 160.2893,14.8966074 C159.919101,14.3199124 159.659518,13.917287 159.516446,13.6962936 C147.69369,-4.56543119 120.972977,-4.56543119 109.150221,13.6962936 C108.919332,14.0529302 108.497151,14.7085673 107.896358,15.6469382 C106.910951,17.186034 105.772425,18.9751268 104.493447,20.9979791 C100.855991,26.7510375 96.809796,33.2426715 92.4559596,40.3435066 C80.0156706,60.6328403 67.5732658,81.784773 55.9297348,102.784609 C50.2764341,112.98069 44.9398521,122.915015 39.9712432,132.52513 C14.3574093,182.06654 0,219.146627 0,245.1875 C0,316.235905 60.5483675,373 134.333333,373 C208.118299,373 268.666667,316.235905 268.666667,245.1875 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.8 KiB |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="333px" viewBox="0 0 500 333" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.5.1 (25234) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_104_Edition</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-8000.000000, -10082.000000)" fill="#000000">
|
||||
<g id="icon-font_104_Edition" sketch:type="MSLayerGroup" transform="translate(8000.000000, 10082.000000)">
|
||||
<path d="M458.333333,62.4332457 L458.333333,41.4985518 C458.333333,18.615799 439.761032,0 416.850938,0 L41.4823958,0 C18.5348739,0 0,18.5795345 0,41.4985518 L0,291.478759 C0,314.361512 18.5723012,332.977311 41.4823958,332.977311 L323.008802,332.977311 L229.166667,332.977311 L229.166667,312.166229 L41.4823958,312.166229 C30.1003709,312.166229 20.8333333,302.889986 20.8333333,291.478759 L20.8333333,41.4985518 C20.8333333,30.0505525 30.0634509,20.8110819 41.4823958,20.8110819 L416.850938,20.8110819 C428.232962,20.8110819 437.5,30.0873246 437.5,41.4985518 L437.5,62.4332457 L458.333333,62.4332457 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M497.385308,183.623975 L454.059573,138.92734 C450.680166,135.441002 445.186463,135.441002 441.807056,138.92734 L329.160145,255.138592 C328.172318,256.157676 327.565758,257.373424 327.149831,258.660687 C327.11517,258.785838 326.993858,258.875231 326.959198,259.01826 L309.628904,321.59355 C308.762389,324.704436 309.611573,328.065623 311.829851,330.37197 C313.476229,332.070442 315.677176,332.982253 317.947445,332.982253 C318.744638,332.982253 319.541832,332.874981 320.321695,332.642559 L380.977724,314.763904 C381.099036,314.728147 381.185687,314.602997 381.32433,314.567239 C382.572111,314.138152 383.750571,313.512399 384.738398,312.493315 L497.385308,196.282063 C500.764716,192.777846 500.764716,187.128192 497.385308,183.623975 L497.385308,183.623975 Z M378.603474,293.524063 L347.530257,261.467636 L413.264062,193.6539 L444.337279,225.710328 L378.603474,293.524063 L378.603474,293.524063 Z M339.558321,278.523872 L362.070373,301.748244 L330.563899,311.027266 L339.558321,278.523872 L339.558321,278.523872 Z M456.589796,213.070119 L425.516579,181.013692 L447.924649,157.896592 L478.997866,189.953019 L456.589796,213.070119 L456.589796,213.070119 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_105_View</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Artboard-1" transform="translate(-9000.000000, -10001.000000)" fill="#000000">
|
||||
<g id="icon-font_105_View" transform="translate(9000.000000, 10001.000000)">
|
||||
<path d="M471.196067,279.388706 C468.659287,277.229701 466.450984,274.924387 463.701023,271.840781 C461.732497,269.633419 459.572474,267.098603 456.291285,263.177454 C456.234848,263.11001 449.592637,255.148769 447.409623,252.549977 C428.736548,230.320422 412.662967,212.746142 394.043132,195.280662 C344.775461,149.067386 296.239067,122.750167 250.99304,122.750167 C202.046004,122.750167 150.507322,148.074304 102.417295,190.874005 C83.9404874,207.318201 67.2191013,225.348227 54.2710956,242.038469 C49.1796636,248.601428 45.0628096,254.478581 42.4195884,258.812878 C41.546218,260.245013 41.0017054,261.236856 40.8804115,261.498373 C42.4533613,258.106995 43.4872396,254.89797 43.4872396,247.833667 C43.4872396,240.769365 42.4533613,237.560339 40.8804115,234.168962 C41.0017054,234.430479 41.546218,235.422322 42.4195884,236.854456 C45.0628096,241.188754 49.1796636,247.065906 54.2710956,253.628865 C67.2191013,270.319107 83.9404874,288.349133 102.417295,304.79333 C150.507322,347.593031 202.046004,372.917168 250.99304,372.917168 C296.239067,372.917168 344.775461,346.599949 394.043132,300.386673 C412.662967,282.921192 428.736548,265.346913 447.409623,243.117358 C449.592637,240.518566 456.234848,232.557325 456.291285,232.48988 C459.572474,228.568732 461.732497,226.033916 463.701023,223.826554 C466.450984,220.742947 468.659287,218.437634 471.196067,216.278628 C489.585469,237.69567 500,251.756082 500,247.833667 C500,243.911252 489.585468,257.971665 471.196067,279.388706 L471.196067,279.388706 Z M471.11251,278.324435 L471.11251,278.324435 C429.638743,326.768781 346.187297,414.667335 249.997012,414.667335 C112.474265,414.667335 0.990051674,260.667026 0.990051674,247.833667 C0.990051674,235.000308 112.474265,81 249.997012,81 C346.187297,81 429.638743,168.898554 471.11251,217.3429 C467.601977,220.514627 464.627661,224.296843 462.356919,228.549318 C458.659304,235.473933 457.502812,241.748232 457.502812,247.833667 C457.502812,253.919103 458.659304,260.193402 462.356919,267.118017 C464.627661,271.370492 467.601977,275.152708 471.11251,278.324435 L471.11251,278.324435 Z" id="Oval-225"></path>
|
||||
<path d="M210.754843,247.833667 C210.754843,224.834455 229.482775,206.125251 252.50501,206.125251 C275.527245,206.125251 294.255177,224.834455 294.255177,247.833667 C294.255177,270.83288 275.527245,289.542084 252.50501,289.542084 C229.482775,289.542084 210.754843,270.83288 210.754843,247.833667 Z" id="Path"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.1 KiB |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="498px" height="498px" viewBox="0 0 498 498" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.5.1 (25234) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_106_Odyssey</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-1.000000, -11001.000000)" fill="#191919">
|
||||
<g id="icon-font_106_Odyssey" sketch:type="MSLayerGroup" transform="translate(0.000000, 11000.000000)">
|
||||
<path d="M250,498.955327 C387.494231,498.955327 498.955327,387.494231 498.955327,250 C498.955327,112.505769 387.494231,1.04467292 250,1.04467292 C112.505769,1.04467292 1.04467292,112.505769 1.04467292,250 C1.04467292,387.494231 112.505769,498.955327 250,498.955327 L250,498.955327 Z M250,476.40843 C124.958077,476.40843 23.5915705,375.041923 23.5915705,250 C23.5915705,124.958077 124.958077,23.5915705 250,23.5915705 C375.041923,23.5915705 476.40843,124.958077 476.40843,250 C476.40843,375.041923 375.041923,476.40843 250,476.40843 L250,476.40843 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M250,146.660053 C250,141.474266 245.791246,137.265512 240.605459,137.265512 C235.419673,137.265512 231.210919,141.474266 231.210919,146.660053 L231.210919,250 C231.210919,252.630471 232.319475,255.148208 234.25475,256.933171 L346.989238,360.273118 C348.792989,361.926557 351.066468,362.734488 353.339947,362.734488 C355.876473,362.734488 358.412999,361.701088 360.273118,359.690657 C363.786676,355.857684 363.523629,349.920334 359.690657,346.406776 L250,245.866402 L250,146.660053 Z" id="Shape" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.9 KiB |
@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="417px" viewBox="0 0 500 417" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_107_Settings</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Artboard-1" transform="translate(-1000.000000, -11042.000000)" fill="#191919">
|
||||
<g id="icon-font_107_Settings" transform="translate(1000.000000, 11042.000000)">
|
||||
<path d="M44.1211802,292 L0,292 L0,334 L44.1211802,334 C42.7304327,327.217347 42,320.193974 42,313 C42,305.806026 42.7304327,298.782653 44.1211802,292 Z M247.87882,292 L500,292 L500,334 L247.87882,334 C249.269567,327.217347 250,320.193974 250,313 C250,305.806026 249.269567,298.782653 247.87882,292 Z" id="Combined-Shape"></path>
|
||||
<path d="M251.921266,84 L0,84 L0,126 L252.331378,126 C250.804124,118.908475 250,111.548144 250,104 C250,97.1589618 250.660521,90.4721964 251.921266,84 Z M456.078734,84 L500,84 L500,126 L455.668622,126 C457.195876,118.908475 458,111.548144 458,104 C458,97.1589618 457.339479,90.4721964 456.078734,84 Z" id="Combined-Shape"></path>
|
||||
<path d="M146,375 L146,375 C180.241654,375 208,347.241654 208,313 C208,278.758346 180.241654,251 146,251 C111.758346,251 84,278.758346 84,313 C84,347.241654 111.758346,375 146,375 L146,375 Z M42,313 C42,255.562386 88.562386,209 146,209 C203.437614,209 250,255.562386 250,313 C250,370.437614 203.437614,417 146,417 C88.562386,417 42,370.437614 42,313 Z" id="Oval-18-Copy"></path>
|
||||
<path d="M354,166 L354,166 C388.241654,166 416,138.241654 416,104 C416,69.7583455 388.241654,42 354,42 C319.758346,42 292,69.7583455 292,104 C292,138.241654 319.758346,166 354,166 L354,166 Z M354,208 L354,208 C296.562386,208 250,161.437614 250,104 C250,46.562386 296.562386,0 354,0 C411.437614,0 458,46.562386 458,104 C458,161.437614 411.437614,208 354,208 L354,208 Z" id="Oval-18"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_108_downloadCircle</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Artboard-1" transform="translate(-3000.000000, -11000.000000)" fill="#000000">
|
||||
<path d="M3250,11500 C3388.07119,11500 3500,11388.0712 3500,11250 C3500,11111.9288 3388.07119,11000 3250,11000 C3111.92881,11000 3000,11111.9288 3000,11250 C3000,11388.0712 3111.92881,11500 3250,11500 Z M3281.25,11281.25 L3281.25,11125 L3218.75,11125 L3218.75,11281.25 L3281.25,11281.25 Z M3359.375,11218.75 L3281.25,11281.25 L3218.75,11281.25 L3140.625,11218.75 L3093.75,11265.625 L3248.95833,11390.625 L3406.25,11265.625 L3359.375,11218.75 Z" id="icon-font_108_downloadCircle"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="494px" height="494px" viewBox="0 0 494 494" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_108_pencilMenu</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Artboard-1" transform="translate(-2003.000000, -11006.000000)" fill="#191919">
|
||||
<g id="icon-font_108_pencilMenu" transform="translate(2003.000000, 11006.000000)">
|
||||
<path d="M323.090682,108.939942 C257.222132,174.806304 158.72578,273.299383 93.4363246,338.586669 L155.458773,401.061862 C190.204984,366.568734 308.712947,247.832316 385.656409,170.703144 L323.090682,108.939942 Z M348.301168,83.730294 C375.156655,56.8756991 392.289661,39.7432621 392.289661,39.7432621 C401.584882,30.44835 416.739508,30.4483503 426.015484,39.7359097 L454.364101,68.0835877 C463.643904,77.3749836 463.643904,92.5108081 454.349418,101.828817 C454.349418,101.828817 432.037175,124.20696 399.408182,156.917572 L409.974134,146.225397 L348.301168,83.730294 Z M120.376399,419.162863 C89.6196336,429.414771 53.3411467,441.507191 53.3411467,441.507191 C53.3411467,441.507191 67.9518573,395.215969 76.7414611,368.05883 L124.185037,417.893361 Z M0.341146679,493.658335 L31.1315631,483.395211 L158.667272,440.884748 L162.301535,439.673367 L165.010391,436.964601 L476.764346,125.221007 C498.712109,103.217717 498.712109,67.5653877 476.771694,45.5975746 L448.423077,17.2498966 C426.478835,-4.72175335 390.763554,-4.72175405 368.791174,17.2498963 L57.0372198,328.993492 L54.3282847,331.702337 L53.1167958,335.336683 L10.604893,462.868126 L0.341146679,493.658335 Z" id="Combined-Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.9 KiB |
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="292px" height="500px" viewBox="0 0 292 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_109_Mobile</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Artboard-1" transform="translate(-4113.000000, -11000.000000)" fill="#000000">
|
||||
<g id="icon-font_109_Mobile" transform="translate(4113.000000, 11000.000000)">
|
||||
<g id="Outline_Icons">
|
||||
<g id="Group">
|
||||
<path d="M239.583333,0 L52.0833333,0 C23.375,0 0,23.3541667 0,52.0833333 L0,447.916667 C0,476.645833 23.375,500 52.0833333,500 L239.583333,500 C268.291667,500 291.666667,476.645833 291.666667,447.916667 L291.666667,52.0833333 C291.666667,23.3541667 268.3125,0 239.583333,0 L239.583333,0 Z M20.8333333,104.166667 L270.833333,104.166667 L270.833333,395.833333 L20.8333333,395.833333 L20.8333333,104.166667 L20.8333333,104.166667 Z M52.0833333,20.8333333 L239.583333,20.8333333 C256.833333,20.8333333 270.833333,34.8541667 270.833333,52.0833333 L270.833333,83.3333333 L20.8333333,83.3333333 L20.8333333,52.0833333 C20.8333333,34.8541667 34.8541667,20.8333333 52.0833333,20.8333333 L52.0833333,20.8333333 Z M239.583333,479.166667 L52.0833333,479.166667 C34.8541667,479.166667 20.8333333,465.145833 20.8333333,447.916667 L20.8333333,416.666667 L270.833333,416.666667 L270.833333,447.916667 C270.833333,465.145833 256.833333,479.166667 239.583333,479.166667 L239.583333,479.166667 Z" id="Shape"></path>
|
||||
<path d="M197.916667,437.5 L93.75,437.5 C88,437.5 83.3333333,442.166667 83.3333333,447.916667 C83.3333333,453.666667 88,458.333333 93.75,458.333333 L197.916667,458.333333 C203.666667,458.333333 208.333333,453.666667 208.333333,447.916667 C208.333333,442.166667 203.6875,437.5 197.916667,437.5 L197.916667,437.5 Z" id="Shape"></path>
|
||||
<ellipse id="Oval" cx="145.833333" cy="52.0833333" rx="20.8333333" ry="20.8333333"></ellipse>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.3 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_10_Wizard</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-9000.000000, 0.000000)" fill="#191919">
|
||||
<path d="M9284.88,142.799437 L9000,428.16152 L9071.71362,500 L9356.57972,214.637917 L9284.88,142.799437 L9284.88,142.799437 Z M9217.49771,242.050061 L9284.8661,174.557408 L9324.8839,214.644882 L9257.50855,282.13057 L9217.49771,242.050061 Z M9439.62568,83.2741354 L9415.86251,59.4626217 L9344.53822,130.931985 L9368.3014,154.72957 L9439.62568,83.2741354 Z M9344.54518,297.633474 L9415.85556,369.081944 L9439.62568,345.277395 L9368.30835,273.835889 L9344.54518,297.633474 Z M9225.65978,130.931985 L9154.31464,59.4626217 L9130.55146,83.2741354 L9201.8827,154.72957 L9225.65978,130.931985 Z M9301.92024,0.00696446729 L9268.29167,0 L9268.29167,101.040491 L9301.91329,101.05442 L9301.92024,0.00696446729 Z M9399.12122,232.097837 L9500,232.111766 L9499.9861,198.431602 L9399.10732,198.424637 L9399.12122,232.097837 Z" id="icon-font_10_Wizard" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="375px" viewBox="0 0 500 375" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_110_Undo</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Artboard-1" transform="translate(-5002.000000, -11066.000000)" fill="#000000">
|
||||
<g id="icon-font_110_Undo" transform="translate(5002.000000, 11066.000000)">
|
||||
<path d="M70.3382608,125.000009 L375,125.000009 C446.35637,125.000009 500,178.048274 500,249.999999 C500,321.951726 446.356369,375 375,375 L291.666667,375 C280.160734,375 270.833333,365.672599 270.833333,354.166667 C270.833333,342.660734 280.160734,333.333333 291.666667,333.333333 L375,333.333333 C423.447955,333.333333 458.333333,298.835126 458.333333,249.999999 C458.333333,201.164876 423.447958,166.666676 375,166.666676 L71.9074397,166.666676 L160.628913,256.166411 C168.72923,264.337784 168.671628,277.528596 160.500255,285.628913 C152.328882,293.72923 139.138071,293.671628 131.037754,285.500255 L6.03775366,159.403759 C-2.06278402,151.232164 -2.00492633,138.040917 6.16698066,129.940693 L131.166981,6.03718917 C139.338665,-2.06281376 152.529474,-2.00470423 160.629477,6.16698044 C168.72948,14.3386651 168.671371,27.5294742 160.499686,35.6294771 L70.3382608,125.000009 Z" id="Combined-Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="375px" viewBox="0 0 500 375" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_111_Redo</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Artboard-1" transform="translate(-5999.000000, -11062.000000)" fill="#000000">
|
||||
<g id="icon-font_111_Redo" transform="translate(5999.000000, 11062.000000)">
|
||||
<path d="M428.09256,166.666678 L125,166.666678 C76.5520421,166.666678 41.6666667,201.164877 41.6666667,250.000001 C41.6666667,298.835128 76.552045,333.333335 125,333.333335 L208.333333,333.333335 C219.839266,333.333335 229.166667,342.660736 229.166667,354.166668 C229.166667,365.672601 219.839266,375.000002 208.333333,375.000002 L125,375.000002 C53.6436311,375.000002 0,321.951728 0,250.000001 C0,178.048276 53.6436295,125.000011 125,125.000011 L429.661739,125.000011 L339.500314,35.6294786 C331.328629,27.5294756 331.27052,14.3386666 339.370523,6.16698191 C347.470526,-2.00470276 360.661335,-2.0628123 368.833019,6.03719063 L493.833019,129.940695 C502.004926,138.040918 502.062784,151.232165 493.962246,159.403761 L368.962246,285.500257 C360.861929,293.67163 347.671118,293.729232 339.499745,285.628914 C331.328372,277.528597 331.27077,264.337786 339.371087,256.166413 L428.09256,166.666678 Z" id="Combined-Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="228px" height="506px" viewBox="0 0 228 506" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_112_lArrowLight</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Artboard-1" transform="translate(-7135.000000, -10993.000000)" fill="#000000">
|
||||
<g id="icon-font_112_lArrowLight" transform="translate(7135.000000, 10993.000000)">
|
||||
<path d="M0.702946318,252.999054 C0.14636948,254.866962 0.510082487,256.968815 1.8564703,258.573378 L207.175738,503.263353 C209.301796,505.79709 213.090441,506.132254 215.629398,504.001816 L225.476162,495.7394 C228.017524,493.606944 228.346751,489.824218 226.216881,487.285938 L29.7056223,253.092939 L226.256808,18.8523582 C228.386677,16.3140783 228.057451,12.5313519 225.516088,10.398896 L215.669325,2.13648009 C213.130367,0.00604172265 209.341722,0.341206329 207.215665,2.87494253 L1.89639687,247.564918 C0.58358948,249.129461 0.205050151,251.166798 0.702946318,252.999054 Z" id="Combined-Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_113_Hide</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Artboard-1" transform="translate(-8000.000000, -11000.000000)" fill="#000000">
|
||||
<g id="icon-font_113_Hide" transform="translate(8000.000000, 11000.000000)">
|
||||
<path d="M168.516382,396.527444 C194.193363,407.220614 221.780987,413.902897 250.502897,413.902897 C346.850106,413.902897 430.433697,326.17791 471.948787,277.869025 C493.317357,255.896446 498.973146,249.028031 498.973146,249.028031 C499.701368,248.186721 499.712307,246.818732 499.009367,245.974772 C499.009367,245.974772 492.362279,237.637656 471.948787,217.136769 C462.294003,205.902014 450.363963,192.535458 436.527263,178.636273 C436.424017,178.532561 436.320665,178.428819 436.217207,178.325049 L403.726892,204.807837 C421.268756,222.667154 441.521907,245.994982 441.521907,245.994982 C442.245864,246.823254 442.253276,248.172862 441.531978,248.999306 C441.531978,248.999306 412.348272,282.613362 393.702121,300.035106 C344.373268,346.124757 295.780717,372.369351 250.502897,372.369351 C235.900423,372.369351 221.065928,370.125273 206.159883,365.844312 L168.516372,396.52744 Z M62.9467973,325.173542 C24.4830048,288.609797 1.16779055,253.352643 1.16779055,247.502897 C1.16779055,234.702897 112.79892,81.1028969 250.502897,81.1028969 C280.140414,81.1028969 308.570175,89.4038635 334.939182,102.305011 C334.952385,102.31147 334.965587,102.317931 334.978788,102.324393 L298.872131,131.903038 C282.420027,125.815229 266.260719,122.636443 250.502897,122.636443 C201.51747,122.636443 149.921025,147.889782 101.771487,190.574805 C83.2680311,206.978295 66.5218737,224.964392 53.5539044,241.614973 C48.4535212,248.16375 48.4535212,246.842043 53.5539044,253.390821 C65.0065328,268.095739 79.4059564,283.842291 95.3601663,298.620445 L62.9467973,325.173542 Z" id="Combined-Shape"></path>
|
||||
<path d="M237.22238,286.587358 C241.248856,287.895585 245.54343,288.602807 249.999996,288.602807 C272.869077,288.602807 291.472421,269.979698 291.472421,247.086322 C291.472421,245.524539 291.385842,243.98263 291.217237,242.465151 L484.071441,84.8732304 L500,71.8571172 L473.967774,40 L458.039215,53.0161132 L266.925615,209.185689 C261.754686,206.862624 256.025402,205.569836 249.999996,205.569836 C227.130916,205.569836 208.527571,224.192945 208.527571,247.086322 C208.527571,250.181229 208.867562,253.198095 209.512119,256.101457 L15.9285586,414.289375 L5.68434189e-14,427.305488 L26.0322263,459.162606 L41.9607849,446.146492 L237.22238,286.587358 L237.22238,286.587358 Z" id="Combined-Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.9 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="194px" height="500px" viewBox="0 0 194 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_11_Info</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-153.000000, -1000.000000)" fill="#000000">
|
||||
<path d="M243.184051,1104.35327 C274.251768,1104.35327 297.739923,1080.5007 297.739923,1052.18359 C297.739923,1022.35744 274.251768,1000 243.940593,1000 C215.135433,1000 190.127123,1022.35744 190.127123,1052.18359 C190.127123,1080.5007 215.135433,1104.35327 243.184051,1104.35327 Z M297.739923,1404.72184 L297.739923,1140.99444 C255.317006,1152.90682 205.293316,1162.60779 159.823019,1167.82337 L159.823019,1199.75661 C196.200671,1205.71627 201.503535,1207.94159 201.503535,1257.14882 L201.503535,1404.72184 C201.503535,1457.63561 196.950142,1460.62587 153,1465.82754 L153,1500 L347,1500 L347,1465.82754 C301.543844,1459.88178 297.739923,1456.15438 297.739923,1404.72184 Z" id="icon-font_11_Info" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.4 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="438px" height="500px" viewBox="0 0 438 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_12_Fork</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-1031.000000, -1000.000000)" fill="#000000">
|
||||
<path d="M1366.83133,1000 L1264.9468,1115.39959 L1327.37148,1115.39959 L1327.37148,1173.91607 L1327.37148,1174.24969 C1327.37148,1183.32708 1323.05829,1195.92838 1312.20246,1211.57402 C1301.39762,1227.27525 1284.62573,1245.0964 1264.98323,1263.50835 C1260.14547,1268.10265 1255.12556,1272.72475 1250.00364,1277.37465 C1244.86716,1272.72475 1239.85453,1268.10265 1235.01677,1263.50835 C1215.38156,1245.0964 1198.60238,1227.27525 1187.80483,1211.57402 C1176.94171,1195.92838 1172.63581,1183.32708 1172.63581,1174.24969 L1172.63581,1173.91607 L1172.63581,1115.39959 L1235.06048,1115.39959 L1133.17596,1000 L1031,1115.39959 L1095.12226,1115.39959 L1095.12226,1173.91607 C1095.58855,1213.63137 1116.18549,1245.86096 1140.28689,1274.49713 C1156.15535,1293.03418 1174.50826,1310.75802 1193.36389,1327.95363 L1194.16533,1327.95363 L1194.16533,1500 L1307.83098,1500 L1307.83098,1326.84154 C1326.26404,1309.99347 1344.18709,1292.638 1359.71311,1274.49713 C1383.8218,1245.86096 1404.41145,1213.63137 1404.88502,1173.91607 L1404.88502,1115.39959 L1469,1115.39959 L1366.83133,1000" id="icon-font_12_Fork" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.8 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="313px" height="500px" viewBox="0 0 313 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_13_Facebook</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-2094.000000, -1000.000000)" fill="#000000">
|
||||
<path d="M2297.16312,1271.92785 L2389.44397,1271.92785 L2403.26003,1183.04249 L2297.16312,1183.04249 L2297.16312,1126.29312 C2297.16312,1100.55873 2305.77621,1083.02219 2350.26212,1083.02219 L2407,1083.00012 L2407,1003.50201 C2397.18193,1002.42074 2363.50628,1000 2324.32442,1000 C2242.52132,1000 2186.5176,1041.42172 2186.5176,1117.49285 L2186.5176,1183.04249 L2094,1183.04249 L2094,1271.92785 L2186.5176,1271.92785 L2186.5176,1500 L2297.16312,1500 L2297.16312,1271.92785 Z" id="icon-font_13_Facebook" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="375px" viewBox="0 0 500 375" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_14_Folder</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-3000.000000, -1063.000000)" fill="#000000">
|
||||
<path d="M3210.21772,1109.22299 L3193.10019,1075.84818 C3189.48078,1068.7787 3179.76186,1063 3171.50876,1063 L3076.70237,1063 C3068.44928,1063 3058.70952,1068.76546 3055.04842,1075.8217 L3037.70859,1109.22299 L3015.01257,1109.22299 C3006.75253,1109.22299 3000,1115.65701 3000,1123.52743 L3000,1423.70218 C3000,1431.5726 3006.75253,1438 3015.01257,1438 L3484.99437,1438 C3493.24747,1438 3500,1431.5726 3500,1423.70218 L3500,1123.52743 C3500,1115.65701 3493.24747,1109.22299 3484.99437,1109.22299 L3210.21772,1109.22299 Z" id="icon-font_14_Folder" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="494px" height="452px" viewBox="0 0 494 452" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_15_Dropbox</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-4003.000000, -1024.000000)" fill="#191919">
|
||||
<g id="icon-font_15_Dropbox" sketch:type="MSLayerGroup" transform="translate(4000.000000, 1022.000000)">
|
||||
<path d="M249.998203,85.6334195 L104.02783,174.543306 L3.92877358,95.4691837 L148.697642,2.2264898 L249.999528,85.6326122 L351.304245,2.2269551 L496.073113,95.469649 L395.96934,174.543771 L249.998203,85.6334195 Z M3.92688679,253.623478 L148.695755,346.866171 L249.997642,263.455396 L104.03066,174.544702 L3.92688679,253.623478 Z M249.997642,263.456792 L351.304245,346.867567 L496.073113,253.624873 L395.96934,174.546098 L249.997642,263.456792 Z M250.29717,281.401322 L148.698113,364.565486 L105.221698,336.563363 L105.221698,367.957567 L250.29717,453.773976 L395.372642,367.957567 L395.372642,336.563363 L351.896226,364.565486 L250.29717,281.401322 Z" id="Fill-1" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="350px" viewBox="0 0 500 350" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_16_Cloud</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-5000.000000, -1063.000000)" fill="#191919">
|
||||
<path d="M5439.33923,1222.00688 C5439.51283,1219.01693 5439.78363,1216.04097 5439.78363,1213.002 C5439.78363,1130.15849 5373.19288,1063 5291.03421,1063 C5231.79691,1063 5180.79492,1098.0042 5156.87364,1148.54637 C5145.2706,1139.47147 5130.73729,1134.01673 5114.91938,1134.01673 C5077.02723,1134.01673 5046.30105,1165.00164 5046.30105,1203.21287 C5046.30105,1210.39016 5047.39123,1217.32238 5049.40492,1223.82746 C5019.86612,1241.54313 5000,1273.95651 5000,1311.1384 C5000,1366.72219 5044.26653,1411.80962 5099.1848,1412.66389 L5099.1848,1412.72691 L5100.3583,1412.72691 C5100.49717,1412.72691 5100.62911,1412.74792 5100.76104,1412.74792 C5100.89991,1412.74792 5101.0249,1412.72691 5101.16378,1412.72691 L5396.15593,1412.72691 C5397.94742,1412.81794 5399.71808,1413 5401.53041,1413 C5455.92095,1413 5500,1368.54277 5500,1313.70122 C5500,1272.367 5474.95382,1236.95667 5439.33923,1222.00688 Z M5141.30435,1303.625 C5159.31363,1303.625 5173.91304,1288.93434 5173.91304,1270.8125 C5173.91304,1252.69066 5159.31363,1238 5141.30435,1238 C5123.29506,1238 5108.69565,1252.69066 5108.69565,1270.8125 C5108.69565,1288.93434 5123.29506,1303.625 5141.30435,1303.625 Z M5250,1303.625 C5268.00929,1303.625 5282.6087,1288.93434 5282.6087,1270.8125 C5282.6087,1252.69066 5268.00929,1238 5250,1238 C5231.99071,1238 5217.3913,1252.69066 5217.3913,1270.8125 C5217.3913,1288.93434 5231.99071,1303.625 5250,1303.625 Z M5358.69565,1303.625 C5376.70494,1303.625 5391.30435,1288.93434 5391.30435,1270.8125 C5391.30435,1252.69066 5376.70494,1238 5358.69565,1238 C5340.68637,1238 5326.08696,1252.69066 5326.08696,1270.8125 C5326.08696,1288.93434 5340.68637,1303.625 5358.69565,1303.625 Z" id="icon-font_16_Cloud" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.4 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="356px" viewBox="0 0 500 356" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_17_Step</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-6000.000000, -1072.000000)" fill="#000000" opacity="0.9">
|
||||
<g id="icon-font_17_Step" sketch:type="MSLayerGroup" transform="translate(6000.000000, 1072.000000)">
|
||||
<path d="M36.8377569,168.631579 L187.777362,168.631579 L187.777362,193.614035 L36.3938948,193.614035 L88.3115401,245.53168 L70.6462759,263.196945 L1.06336647,193.614035 L0.443779594,193.614035 L0.443779594,192.994448 L-0.00164229794,192.549026 L0.443779594,192.103604 L0.443779594,170.585872 L-0.00164229794,170.14045 L0.443779594,169.695028 L0.443779594,168.631579 L1.50722859,168.631579 L70.6462759,99.4925316 L88.3115401,117.157796 L36.8377569,168.631579 Z M445.887667,0 L187.777362,0 L187.777362,356 L500,356 L500,54.1123327 L445.887667,-2.66453526e-15 Z M187.777362,168.631579 L331.399776,168.631579 L331.399776,193.614035 L187.777362,193.614035 L187.777362,168.631579 Z" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="431px" height="500px" viewBox="0 0 431 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_18_AddDocument</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-7035.000000, -1001.000000)" fill="#000000" opacity="0.9">
|
||||
<g id="icon-font_18_AddDocument" sketch:type="MSLayerGroup" transform="translate(7035.000000, 1000.000000)">
|
||||
<path d="M356.469405,1 L0,1 L0,501 L431,501 L431,75.5305953 L356.469405,1 Z M232.076923,242.666667 L232.076923,180.111944 C232.076923,173.291026 226.510617,167.666667 219.644231,167.666667 C212.729973,167.666667 207.211538,173.238607 207.211538,180.111944 L207.211538,242.666667 L144.993649,242.666667 C138.209459,242.666667 132.615385,248.263107 132.615385,255.166667 C132.615385,262.118356 138.157322,267.666667 144.993649,267.666667 L207.211538,267.666667 L207.211538,330.22139 C207.211538,337.042307 212.777844,342.666667 219.644231,342.666667 C226.558488,342.666667 232.076923,337.094726 232.076923,330.22139 L232.076923,267.666667 L294.294813,267.666667 C301.079002,267.666667 306.673077,262.070226 306.673077,255.166667 C306.673077,248.214977 301.131139,242.666667 294.294813,242.666667 L232.076923,242.666667 Z" id="Rectangle-114" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="395px" viewBox="0 0 500 395" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_21_ArrowNext</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(0.000000, -2053.000000)" fill="#000000">
|
||||
<path d="M458.222685,2238.32673 L290.407211,2070.51126 L307.879983,2053.03849 L493.168229,2238.32673 L494.006694,2238.32673 L494.006694,2239.1652 L500.003499,2245.162 L494.665503,2250.5 L500.003499,2255.838 L494.006694,2261.8348 L494.006694,2263.03697 L492.804529,2263.03697 L307.879983,2447.96151 L290.407211,2430.48874 L457.858984,2263.03697 L0,2263.03697 L0,2238.32673 L458.222685,2238.32673 Z" id="icon-font_21_ArrowNext" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="395px" viewBox="0 0 500 395" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_22_ArrowPrev</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-1000.000000, -2053.000000)" fill="#000000">
|
||||
<path d="M1041.77732,2238.32673 L1209.59279,2070.51126 L1192.12002,2053.03849 L1006.83177,2238.32673 L1005.99331,2238.32673 L1005.99331,2239.1652 L999.996501,2245.162 L1005.3345,2250.5 L999.996501,2255.838 L1005.99331,2261.8348 L1005.99331,2263.03697 L1007.19547,2263.03697 L1192.12002,2447.96151 L1209.59279,2430.48874 L1042.14102,2263.03697 L1500,2263.03697 L1500,2238.32673 L1041.77732,2238.32673 Z" id="icon-font_22_ArrowPrev" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_23_Close</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-2000.000000, -2000.000000)" fill="#191919">
|
||||
<path d="M2250,2214.6955 L2035.3045,2000 L2000,2035.3045 L2214.6955,2250 L2000,2464.6955 L2035.3045,2500 L2250,2285.3045 L2464.6955,2500 L2500,2464.6955 L2285.3045,2250 L2500,2035.3045 L2464.6955,2000 L2250,2214.6955 Z" id="icon-font_23_Close" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 983 B |
@ -1,19 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="366px" height="489px" viewBox="0 0 366 489" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_24_CartoFante</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<path d="M159.148401,450.189861 C134.009771,450.189861 132.304105,453.386821 132.304105,453.386821 L138.478668,492.434672 C138.478668,492.434672 143.97522,496.180357 158.33379,496.180357 C172.692359,496.180357 177.374964,492.434672 177.374964,492.434672 L185.833498,453.600196 C185.833498,453.600196 184.287697,450.189861 159.148401,450.189861 M332.428039,160.684646 L331.050079,159.595173 C331.050079,159.595173 333.501226,158.438232 334.833652,157.144026 C337.437684,154.609457 338.952576,151.441745 338.435093,151.792051 C333.965863,154.806546 325.233133,153.338185 325.233133,153.338185 C325.233133,153.338185 328.255605,152.774504 330.044693,151.609918 C332.778345,149.835786 333.570024,147.383642 333.234674,147.619617 C331.050079,149.126865 328.682021,149.569567 327.038174,149.569567 C316.714109,149.600144 315.039353,140.638751 305.476722,140.638751 C301.548572,140.638751 293.287792,144.696521 290.721981,140.669328 C276.652896,106.957499 255.464683,58.2250417 234.809907,8.92857143 C149.517637,26.3627903 111.595818,171.266953 194.528007,197.007486 C149.434215,184.026877 127.606544,139.534322 134.443499,100.866357 C103.571345,111.471598 63.357911,128.031048 31.9529854,166.272596 C13.1324975,189.188743 13.2092724,213.696224 13.2092724,262.185062 C12.2799969,277.093021 0,282.763729 0,282.763729 C0,282.763729 14.6327656,283.373607 19.3070613,275.843019 C39.4596437,310.225216 136.75007,398.676557 136.75007,418.898602 C136.75007,418.898602 133.26296,428.392102 134.328835,428.52139 C143.183873,429.55702 184.402028,431.60568 184.402028,431.60568 C186.19876,424.730836 182.048927,419.902326 182.048927,415.076807 C182.048927,365.878383 251.901464,320.244175 260.109067,314.648913 C263.04014,316.384491 268.148496,317.907027 270.653153,318.996167 C294.170869,329.220524 266.930401,387.150682 242.55254,387.150682 C214.467215,387.150682 258.395757,340.610132 259.279167,339.498724 C262.202595,335.821837 254.231632,339.224195 251.711354,336.773048 C250.17353,335.273113 251.901464,331.261208 248.072024,334.374746 C248.072024,334.374746 189.738715,384.72978 230.987779,399.544013 C309.169562,427.630335 423.536257,246.973992 332.428039,160.684646" id="path-1"></path>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-3063.000000, -2008.000000)">
|
||||
<g id="icon-font_24_CartoFante" sketch:type="MSLayerGroup" transform="translate(3063.000000, 2000.000000)">
|
||||
<mask id="mask-2" sketch:name="Rectangle 1476" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Rectangle-1476" fill="#000000" sketch:type="MSShapeGroup" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.2 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="401px" height="500px" viewBox="0 0 401 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_25_Lock</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-4050.000000, -2000.000000)" fill="#000000">
|
||||
<path d="M4398.10203,2136.24113 C4398.10203,2061.01971 4332.90946,2000.03556 4252.50455,2000.03556 C4251.50228,2000.03556 4250.7747,1999.98 4249.78727,2000.00778 C4248.97802,1999.99389 4247.94605,2000.04945 4247.12195,2000.04945 C4166.7022,2000.04945 4101.53932,2061.04054 4101.53932,2136.25502 L4101.53932,2218.28949 L4050,2218.28949 L4050,2500 L4451,2500 L4451,2218.28949 L4398.10203,2218.28949 L4398.10203,2136.24113 Z M4174.37147,2136.25502 C4174.37147,2098.73112 4207.01601,2068.21474 4247.12195,2068.21474 C4248.26529,2068.21474 4250.67818,2068.15918 4250.67818,2068.15918 C4250.67818,2068.15918 4251.89576,2068.20085 4252.50455,2068.20085 C4292.61049,2068.20085 4325.25504,2098.71723 4325.25504,2136.24113 L4325.25504,2218.28949 L4174.37147,2218.28949 L4174.37147,2136.25502 L4174.37147,2136.25502 Z" id="icon-font_25_Lock" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="2648px" height="471px" viewBox="0 0 2648 471" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_26_CartoDB</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-5000.000000, -2000.000000)" fill="#000000">
|
||||
<g id="icon-font_26_CartoDB" sketch:type="MSLayerGroup" transform="translate(5000.000000, 2000.000000)">
|
||||
<path d="M201.711958,463.718579 C286.796624,463.718579 331.37377,423.179965 355.634396,378.50297 L292.655138,344.092254 C276.318056,375.599301 241.348278,400.681188 201.711958,400.681188 C130.596236,400.681188 79.2884466,346.420035 79.2884466,272.905766 C79.2884466,199.409202 130.596236,145.105183 201.711958,145.105183 C241.348278,145.105183 276.318056,170.230868 292.655138,201.736983 L355.634396,166.728014 C331.37377,121.604659 286.796624,82.0910891 201.711958,82.0910891 C84.5491152,82.0910891 0.0585758427,152.725917 0.0585758427,272.905766 C0.0585758427,392.505067 84.5491152,463.718579 201.711958,463.718579" id="Fill-3" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M518.05498,76.2846826 L373.929584,465.893535 L464.213553,465.893535 L487.767551,400.104368 L648.164944,400.104368 L671.720801,465.893535 L762.026154,465.893535 L762.026154,463.439953 L617.879374,76.2846826 L518.05498,76.2846826 L518.05498,76.2846826 Z M509.641444,334.336634 L567.956949,164.894118 L626.29384,334.336634 L509.641444,334.336634 L509.641444,334.336634 Z" id="Fill-4" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M1023.57008,328.359697 C1062.67178,319.777286 1103.39315,281.997903 1103.39315,203.848573 C1103.39315,122.157251 1056.71006,76.2846826 977.097124,76.2846826 L794.337705,76.2846826 L794.337705,465.893535 L875.098916,465.893535 L875.098916,334.336634 L937.077736,334.336634 L1015.81762,465.893535 L1105.65343,465.893535 L1023.57008,328.359697 L1023.57008,328.359697 Z M965.170896,273.609319 L875.098916,273.609319 L875.098916,142.072918 L964.468916,142.072918 C997.84134,142.072918 1024.14375,166.451252 1024.14375,205.899592 C1024.14375,246.778334 998.54425,273.609319 965.170896,273.609319 L965.170896,273.609319 Z" id="Fill-5" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M1326.49552,465.893535 L1329.50055,463.140827 L1329.50055,142.072918 L1445.6174,142.072918 L1445.6174,76.2846826 L1137.64421,76.2846826 L1137.64421,142.072918 L1248.7161,142.072918 L1248.7161,465.893535 L1326.49552,465.893535" id="Fill-6" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M1915.13718,76.2846826 L1915.13718,465.893535 L2070.29901,465.893535 C2194.52814,465.893535 2273.78126,391.160396 2273.78126,267.074199 C2273.78126,144.252533 2194.52814,76.2846826 2069.6993,76.2846826 L1915.13718,76.2846826 Z M2069.6993,400.104368 L1995.92442,400.104368 L1995.92442,142.072918 L2068.7844,142.072918 C2150.01515,142.072918 2194.52814,197.9788 2194.52814,269.828771 C2194.52814,339.864415 2148.54703,400.104368 2069.6993,400.104368 L2069.6993,400.104368 Z" id="Fill-7" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M2577.68388,270.62085 C2602.96633,264.06523 2631.39886,227.587653 2631.39886,170.3576 C2631.39886,117.120559 2595.87494,76.2846826 2524.90798,76.2846826 L2324.08582,76.2846826 L2324.08582,465.893535 L2538.43249,465.893535 C2611.5714,465.893535 2647.65133,423.649621 2647.65133,365.396389 C2647.65133,312.670938 2617.04685,276.169132 2577.68388,270.62085 L2577.68388,270.62085 Z M2404.8712,142.072918 L2508.01954,142.072918 C2535.81331,142.072918 2552.14947,162.075248 2552.14947,190.358998 C2552.14947,220.006989 2534.76825,238.195923 2506.95588,238.195923 L2404.8712,238.195923 L2404.8712,142.072918 L2404.8712,142.072918 Z M2516.41169,400.95795 L2510.42394,400.104368 L2404.8712,400.104368 L2404.8712,303.983227 L2511.49039,303.983227 C2551.12671,303.983227 2568.40008,325.565987 2568.40008,352.246942 C2568.40008,382.75131 2548.84597,400.95795 2516.41169,400.95795 L2516.41169,400.95795 Z" id="Fill-8" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M1581.92803,0.379266162 L1743.49601,0.379266162 L1743.49601,50.990332 L1581.92803,50.990332 L1581.92803,0.379266162 Z" id="Fill-9" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M1665.22288,470.95166 C1772.58775,470.95166 1859.61472,383.731625 1859.61472,276.148631 C1859.61472,168.565638 1772.58775,81.3446709 1665.22288,81.3446709 C1557.88032,81.3446709 1470.85522,168.565638 1470.85522,276.148631 C1470.85522,383.731625 1557.88032,470.95166 1665.22288,470.95166 L1665.22288,470.95166 Z M1665.22288,147.132906 C1736.34046,147.132906 1793.96979,204.896913 1793.96979,276.148631 C1793.96979,347.403145 1736.34046,405.161561 1665.22288,405.161561 C1594.13226,405.161561 1536.49921,347.403145 1536.49921,276.148631 C1536.49921,204.896913 1594.13226,147.132906 1665.22288,147.132906 L1665.22288,147.132906 Z" id="Fill-10" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M1605.50155,348.577286 L1670.65556,310.770879 C1679.11093,305.86092 1690.03579,294.931159 1694.93478,286.478276 L1732.73851,221.268725 C1737.65888,212.81491 1734.74125,209.914036 1726.30726,214.8212 L1661.13466,252.66954 C1652.67928,257.577635 1641.75442,268.504601 1636.85358,276.958416 L1599.04798,342.128829 C1594.15272,350.583576 1597.04711,353.48445 1605.50155,348.577286 L1605.50155,348.577286 Z M1666.58779,266.798369 C1674.807,266.798369 1681.47535,273.478858 1681.47535,281.719278 C1681.47535,289.939196 1674.807,296.619685 1666.58779,296.619685 C1658.34533,296.619685 1651.68163,289.939196 1651.68163,281.719278 C1651.68163,273.478858 1658.34533,266.798369 1666.58779,266.798369 L1666.58779,266.798369 Z" id="Fill-11" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 6.0 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="451px" height="482px" viewBox="0 0 451 482" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_27_Lens</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-8025.000000, -2009.000000)" fill="#000000">
|
||||
<path d="M8274.86266,2334.14707 C8251.47687,2346.04317 8225.00542,2352.75 8196.96667,2352.75 C8101.9921,2352.75 8025,2275.79894 8025,2180.875 C8025,2085.95106 8101.9921,2009 8196.96667,2009 C8291.94123,2009 8368.93333,2085.95106 8368.93333,2180.875 C8368.93333,2225.03172 8352.27283,2265.29924 8324.89181,2295.74073 L8472.36422,2443.21314 C8476.26685,2447.11577 8476.26827,2453.44176 8472.36298,2457.34705 L8442.28038,2487.42965 C8438.37707,2491.33296 8432.0506,2491.33501 8428.14647,2487.43088 L8274.86266,2334.14707 Z M8196.96667,2313.6875 C8270.35611,2313.6875 8329.85,2254.22532 8329.85,2180.875 C8329.85,2107.52468 8270.35611,2048.0625 8196.96667,2048.0625 C8123.57723,2048.0625 8064.08333,2107.52468 8064.08333,2180.875 C8064.08333,2254.22532 8123.57723,2313.6875 8196.96667,2313.6875 Z" id="icon-font_27_Lens" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="400px" height="500px" viewBox="0 0 400 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_28_CloseLimits</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-9050.000000, -2000.000000)" fill="#000000">
|
||||
<path d="M9443.39225,2229.44645 L9272.6601,2011.9034 C9260.19053,1996.0322 9239.80947,1996.0322 9227.34641,2011.9034 L9056.60775,2229.44645 C9044.1512,2245.31765 9049.82925,2258.30633 9069.2401,2258.30633 L9158.98843,2258.30633 L9194.28089,2258.30633 L9194.28089,2462.35366 C9194.28089,2483.06609 9210.1625,2500 9229.57335,2500 L9270.42665,2500 C9289.8375,2500 9305.71911,2483.06609 9305.71911,2462.35366 L9305.71911,2258.30633 L9341.01157,2258.30633 L9430.7599,2258.30633 C9450.17075,2258.30633 9455.8488,2245.31765 9443.39225,2229.44645" id="icon-font_28_CloseLimits" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="450px" viewBox="0 0 500 450" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_29_DefaultUser</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(0.000000, -3025.000000)" fill="#000000">
|
||||
<path d="M437.381088,3362.1138 C407.189579,3348.29625 362.381435,3312.67959 296.033719,3300.44263 C312.997347,3281.74031 325.843321,3252.48887 339.05037,3217.83058 C346.709348,3197.75509 345.390032,3180.63334 345.390032,3156.25954 C345.390032,3138.25095 348.688322,3109.35712 344.348466,3093.47982 C329.717944,3039.81167 292.735429,3025 249.413251,3025 C206.056356,3025 169.039121,3039.87603 154.42943,3093.63716 C150.124293,3109.47155 153.429528,3138.30102 153.429528,3156.25954 C153.429528,3180.69056 152.137987,3197.86236 159.817795,3217.98077 C173.129001,3252.81071 185.780549,3282.01923 202.688627,3300.65003 C136.868638,3313.10871 92.4007388,3348.45359 62.3967114,3362.23538 C0.305525852,3390.75016 0,3421.96837 0,3421.96837 L0,3475 L500,3474.94278 L500,3421.96837 C500,3421.96837 499.708362,3390.64288 437.381088,3362.1138" id="icon-font_29_DefaultUser" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="435px" viewBox="0 0 500 435" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_30_Cockroach</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-1000.000000, -3033.000000)" fill="#000000">
|
||||
<path d="M1480.81568,3235.55771 L1399.18515,3235.55771 C1396.65871,3220.32244 1392.20967,3205.81459 1386.09484,3192.3507 L1450.31789,3138.48169 C1454.53094,3134.97259 1456.9741,3129.79314 1456.9741,3124.40489 L1456.9741,3062.33901 C1456.9741,3052.04746 1448.37447,3043.71588 1437.79672,3043.71588 C1427.1912,3043.71588 1418.60546,3052.04746 1418.60546,3062.33901 L1418.59158,3115.87799 L1366.45937,3159.59689 C1356.97826,3147.29148 1345.86607,3136.51498 1333.48372,3127.63784 C1335.09398,3121.8118 1336.03792,3115.75002 1336.03792,3109.47945 C1336.03792,3067.24232 1297.34307,3033 1249.58355,3033 C1201.8518,3033 1163.15,3067.24232 1163.15,3109.47945 C1163.15,3115.93861 1164.16336,3122.18224 1165.86385,3128.16993 C1153.56479,3137.09422 1142.52894,3147.90439 1133.13113,3160.24348 L1080.23543,3115.89146 L1080.23543,3062.35248 C1080.23543,3052.04746 1071.6358,3043.72261 1061.04417,3043.72261 C1050.4456,3043.72261 1041.86679,3052.04746 1041.86679,3062.35248 L1041.85291,3124.41836 C1041.85291,3129.79314 1044.28913,3134.94565 1048.50912,3138.5019 L1113.64835,3193.12526 C1107.71398,3206.36688 1103.39682,3220.61206 1100.91896,3235.55771 L1019.18432,3235.55771 C1008.57881,3235.55771 1000,3243.87582 1000,3254.16738 C1000,3264.44546 1008.57881,3272.78377 1019.18432,3272.78377 L1098.65626,3272.78377 C1099.43363,3290.42355 1102.78603,3307.32244 1108.29007,3323.07633 L1048.49524,3373.22072 C1044.28913,3376.74328 1041.85985,3381.916 1041.85985,3387.31099 L1041.85985,3449.37013 C1041.85985,3459.64822 1050.4456,3468 1061.03723,3468 C1071.64968,3468 1080.23543,3459.64822 1080.23543,3449.37013 L1080.23543,3395.81768 L1125.23252,3358.07974 C1152.57919,3401.04428 1198.2773,3429.21808 1250.05553,3429.21808 C1301.54918,3429.21808 1347.02518,3401.34064 1374.42044,3358.77348 L1418.59158,3395.81768 L1418.59158,3449.37013 C1418.59158,3459.64822 1427.18426,3468 1437.79672,3468 C1448.38141,3468 1456.98104,3459.64822 1456.98104,3449.37013 L1456.96716,3387.31099 C1456.96716,3381.916 1454.53094,3376.74328 1450.33177,3373.22072 L1391.52253,3323.89804 C1397.19315,3307.90842 1400.66354,3290.73337 1401.44785,3272.78377 L1480.81568,3272.78377 C1491.42119,3272.78377 1500,3264.44546 1500,3254.16738 C1500,3243.87582 1491.42119,3235.55771 1480.81568,3235.55771" id="icon-font_30_Cockroach" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.0 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_31_Floppy</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-2000.000000, -3000.000000)" fill="#000000">
|
||||
<path d="M2034.67121,3500 L2465.32879,3500 C2492.13944,3500 2500,3492.13954 2500,3465.32233 L2500,3083.22917 L2416.77661,3000 L2393.63933,3000 L2393.63933,3146.82804 L2159.53753,3146.82804 L2159.53753,3000 L2034.67121,3000 C2007.86056,3000 2000,3007.8674 2000,3034.67767 L2000,3465.32233 C2000,3492.13954 2007.86056,3500 2034.67121,3500 L2034.67121,3500 Z M2423.69974,3475.14096 L2077.45295,3475.14096 L2077.45295,3248.55568 L2423.69974,3248.55568 L2423.69974,3475.14096 L2423.69974,3475.14096 Z" id="icon-font_31_Floppy" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
@ -1,19 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="412px" height="500px" viewBox="0 0 412 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_32_Trash</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-3044.000000, -3000.000000)" fill="#000000">
|
||||
<g id="icon-font_32_Trash" sketch:type="MSLayerGroup" transform="translate(3044.000000, 3000.000000)">
|
||||
<g id="Fill-695" sketch:type="MSShapeGroup">
|
||||
<path d="M388.222222,113.636364 C387.276054,100.077855 379.737006,96.0600036 365.444444,90.9090909 L319.888889,90.9090909 L319.888889,68.1818182 C329.936129,51.9679128 326.511188,43.723672 319.888889,45.4545455 L297.111111,0 C286.135861,3.41308791 277.86588,0 274.333333,0 L137.666667,0 C133.551931,0 125.281951,3.41308791 114.888889,0 L92.1111111,45.4545455 C87.2525695,41.401938 83.827628,49.6531302 92.1111111,45.4545455 L92.1111111,90.9090909 L46.5555556,90.9090909 C32.1611322,96.0600036 24.6151228,100.077855 23.7777778,113.636364 L1,136.363636 C-0.751720479,137.760848 1.3923486,141.778698 1,136.363636 L46.5555556,136.363636 L46.5555556,500 C38.9970927,495.161896 43.8351706,500 46.5555556,500 L365.444444,500 C370.394991,500 375.24003,495.161896 365.444444,500 L365.444444,136.363636 L411,136.363636 C410.603248,141.994189 412.747317,137.976338 411,136.363636 L388.222222,113.636364 Z M137.666667,68.1818182 C137.666667,66.2293668 141.157063,58.9184528 137.666667,45.4545455 L137.666667,45.4545455 C153.174812,48.4786893 161.595748,45.4545455 160.444444,45.4545455 L251.555556,45.4545455 C248.034755,45.4545455 256.448597,48.4786893 251.555556,45.4545455 L274.333333,68.1818182 C270.842937,60.9756098 274.333333,68.2803646 274.333333,68.1818182 L274.333333,90.9090909 C274.333333,89.5417591 274.219824,90.2439024 274.333333,90.9090909 L137.666667,90.9090909 C137.780176,90.2439024 137.666667,89.5417591 137.666667,90.9090909 L137.666667,68.1818182 Z M319.888889,454.545455 C319.888889,449.633085 314.972706,454.545455 319.888889,454.545455 L92.1111111,454.545455 C97.0272939,454.545455 92.1111111,449.633085 92.1111111,454.545455 L92.1111111,136.363636 C92.1111111,141.268948 97.0272939,136.363636 92.1111111,136.363636 L319.888889,136.363636 C315.439567,136.907103 319.888889,141.565384 319.888889,136.363636 L319.888889,454.545455 Z"></path>
|
||||
</g>
|
||||
<path d="M137.666667,159.090909 C121.265749,159.090909 114.888889,164.299735 114.888889,159.090909 L114.888889,431.818182 C114.888889,426.624302 121.265749,431.818182 137.666667,431.818182 C154.058409,431.818182 160.444444,426.624302 160.444444,431.818182 L160.444444,159.090909 C160.444444,164.299735 154.058409,159.090909 137.666667,159.090909 L224.056116,253.124981" id="Fill-696" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M206,431.818182 L206,431.818182 C222.399633,431.818182 228.777778,426.624302 228.777778,431.818182 L228.777778,159.090909 C228.777778,164.299735 222.399633,159.090909 206,159.090909 L206,159.090909 C189.600367,159.090909 183.222222,164.299735 183.222222,159.090909 L183.222222,431.818182 C183.222222,426.624302 189.600367,431.818182 206,431.818182" id="Fill-697" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M274.333333,431.818182 L274.333333,431.818182 C290.732966,431.818182 297.111111,426.624302 297.111111,431.818182 L297.111111,159.090909 C297.111111,164.299735 290.732966,159.090909 274.333333,159.090909 L274.333333,159.090909 C257.9337,159.090909 251.555556,164.299735 251.555556,159.090909 L251.555556,431.818182 C251.555556,426.624302 257.9337,431.818182 274.333333,431.818182" id="Fill-698" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.0 KiB |
@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_33_Wifi</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-4000.000000, -3000.000000)" fill="#000000">
|
||||
<g id="icon-font_33_Wifi" sketch:type="MSLayerGroup" transform="translate(4000.000000, 3000.000000)">
|
||||
<g id="Page-1" sketch:type="MSShapeGroup">
|
||||
<g id="wifi-icon">
|
||||
<path d="M0,172.666243 L0,268.426941 C62.482642,268.426941 121.202022,292.710722 165.340499,336.837307 C208.972116,380.445894 233.197245,438.295991 233.822141,500 L330.083875,500 C328.764651,319.28751 181.22674,172.666243 0,172.666243 L0,172.666243 Z M0,0 L0,95.746885 C221.796368,95.746885 402.356551,275.554604 403.731322,497.07158 L500,497.07158 C498.618286,222.74636 274.891684,0 0,0 L0,0 Z M66.669444,366.052436 C29.8491918,366.052436 0,395.737216 0,432.363179 C0,469.009862 29.8491918,498.687736 66.669444,498.687736 C103.482753,498.687736 133.359718,469.009862 133.359718,432.363179 C133.359718,395.737216 103.482753,366.052436 66.669444,366.052436 L66.669444,366.052436 Z" id="Fill-410"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_34_Unlock</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-5000.000000, -3000.000000)" fill="#000000">
|
||||
<path d="M5370.33872,3000.0092 C5369.62321,2999.99582 5368.72708,3000.03596 5367.99767,3000.03596 C5297.69645,3000.03596 5240.71913,3054.92431 5240.71913,3122.62997 L5240.71913,3218.46333 L5000,3218.46333 L5000,3500 L5350.58215,3500 L5350.58214,3218.46333 L5304.40702,3218.46333 L5304.40702,3122.62997 C5304.40702,3088.85407 5332.93737,3061.39317 5367.99767,3061.39317 C5369.00495,3061.39317 5371.10981,3061.33965 5371.10981,3061.33965 C5371.10981,3061.33965 5372.17962,3061.37979 5372.70757,3061.37979 C5407.78176,3061.37979 5436.3121,3088.84069 5436.3121,3122.61659 C5436.3121,3122.61659 5436.30516,3135.5677 5436.30516,3152.25162 L5457.59698,3152.25162 L5457.59698,3160.08516 L5436.30516,3179.35127 L5436.30516,3218.46333 L5500,3218.46333 L5500,3122.61659 C5500,3054.91093 5443.00878,3000.02258 5372.70757,3000.02258 C5371.83922,3000.02258 5371.20012,2999.98244 5370.33872,3000.0092 Z" id="icon-font_34_Unlock" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_35_UnlockWithEllipsis</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-6000.000000, -3000.000000)" fill="#000000">
|
||||
<path d="M6370.33872,3000.01022 C6369.62321,2999.99535 6368.72708,3000.03995 6367.99767,3000.03995 C6297.69645,3000.03995 6240.71913,3061.02701 6240.71913,3136.25552 L6240.71913,3218.29259 L6000,3218.29259 L6000,3500 L6350.58214,3500 L6350.58214,3218.29259 L6304.40702,3218.29259 L6304.40702,3136.25552 C6304.40702,3098.72674 6332.93737,3068.21463 6367.99767,3068.21463 C6369.00495,3068.21463 6371.10981,3068.15517 6371.10981,3068.15517 C6371.10981,3068.15517 6372.17962,3068.19977 6372.70757,3068.19977 C6407.78176,3068.19977 6436.3121,3098.71188 6436.3121,3136.24066 C6436.3121,3136.24066 6436.30516,3150.63078 6436.30516,3169.16846 L6457.59698,3169.16846 L6457.59698,3177.8724 L6436.30516,3199.27919 L6436.30516,3218.29259 L6500,3218.29259 L6500,3136.24066 C6500,3061.01214 6443.00878,3000.02509 6372.70757,3000.02509 C6371.83922,3000.02509 6371.20012,2999.98049 6370.33872,3000.01022 Z M6100,3388.88889 C6113.80712,3388.88889 6125,3376.45235 6125,3361.11111 C6125,3345.76987 6113.80712,3333.33333 6100,3333.33333 C6086.19288,3333.33333 6075,3345.76987 6075,3361.11111 C6075,3376.45235 6086.19288,3388.88889 6100,3388.88889 Z M6175,3388.88889 C6188.80712,3388.88889 6200,3376.45235 6200,3361.11111 C6200,3345.76987 6188.80712,3333.33333 6175,3333.33333 C6161.19288,3333.33333 6150,3345.76987 6150,3361.11111 C6150,3376.45235 6161.19288,3388.88889 6175,3388.88889 Z M6250,3388.88889 C6263.80712,3388.88889 6275,3376.45235 6275,3361.11111 C6275,3345.76987 6263.80712,3333.33333 6250,3333.33333 C6236.19288,3333.33333 6225,3345.76987 6225,3361.11111 C6225,3376.45235 6236.19288,3388.88889 6250,3388.88889 Z" id="icon-font_35_UnlockWithEllipsis" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.3 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="477px" height="500px" viewBox="0 0 477 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_36_Gift</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-7012.000000, -3000.000000)" fill="#000000">
|
||||
<path d="M7097.29964,3062.73536 C7097.71472,3052.99896 7104.14851,3044.93958 7107.19246,3042.56265 C7114.38724,3036.92871 7122.20464,3034.19143 7131.05975,3034.19143 C7142.61291,3034.19143 7155.75722,3038.86213 7170.21595,3048.07879 C7199.13343,3066.58141 7217.12038,3104.56374 7226.32139,3129.44872 C7190.20914,3124.41767 7135.90239,3112.37365 7110.72067,3088.90235 C7101.45047,3080.23315 7096.95373,3071.43228 7097.29964,3062.73536 L7097.29964,3062.73536 Z M7318.53909,3071.29368 C7340.53851,3056.94203 7361.50022,3055.39668 7369.45598,3055.39668 C7374.99043,3055.39668 7378.79536,3056.06194 7380.87078,3056.58861 C7382.94619,3062.1879 7383.84554,3078.80561 7367.10384,3094.37691 C7348.42509,3111.81926 7306.84757,3122.67136 7276.33894,3128.19443 C7284.57143,3109.20672 7298.47672,3084.39797 7318.53909,3071.29368 L7318.53909,3071.29368 Z M7223.27745,3273.46422 L7223.27745,3459.03091 C7223.27745,3462.82152 7220.2335,3465.89143 7216.42857,3465.89143 L7077.44482,3465.89143 C7073.63988,3465.89143 7070.59594,3462.82152 7070.59594,3459.03091 L7070.59594,3273.46422 C7070.59594,3269.67361 7073.63988,3266.61063 7077.44482,3266.61063 L7216.42857,3266.61063 C7220.2335,3266.61063 7223.27745,3269.67361 7223.27745,3273.46422 L7223.27745,3273.46422 Z M7430.40406,3273.46422 L7430.40406,3459.03091 C7430.40406,3462.82152 7427.36012,3465.89143 7423.55518,3465.89143 L7284.57143,3465.89143 C7280.7665,3465.89143 7277.72255,3462.82152 7277.72255,3459.03091 L7277.72255,3273.46422 C7277.72255,3269.67361 7280.7665,3266.61063 7284.57143,3266.61063 L7423.55518,3266.61063 C7427.36012,3266.61063 7430.40406,3269.67361 7430.40406,3273.46422 L7430.40406,3273.46422 Z M7223.27745,3182.0114 L7223.27745,3214.78251 C7223.27745,3218.56619 7220.2335,3221.6361 7216.42857,3221.6361 L7052.88571,3221.6361 C7049.14996,3221.6361 7046.03684,3218.56619 7046.03684,3214.78251 L7046.03684,3182.0114 C7046.03684,3178.22079 7049.14996,3175.15781 7052.88571,3175.15781 L7216.42857,3175.15781 C7220.2335,3175.15781 7223.27745,3178.22079 7223.27745,3182.0114 L7223.27745,3182.0114 Z M7284.57143,3175.15781 L7448.11429,3175.15781 C7451.91922,3175.15781 7454.96316,3178.22079 7454.96316,3182.0114 L7454.96316,3214.78251 C7454.96316,3218.56619 7451.91922,3221.6361 7448.11429,3221.6361 L7284.57143,3221.6361 C7280.7665,3221.6361 7277.72255,3218.56619 7277.72255,3214.78251 L7277.72255,3182.0114 C7277.72255,3178.22079 7280.7665,3175.15781 7284.57143,3175.15781 L7284.57143,3175.15781 Z M7482.15112,3142.39363 L7352.64511,3142.39363 C7367.10384,3136.28845 7380.45569,3128.74881 7390.41769,3119.46978 C7414.07745,3097.44682 7416.63713,3073.58745 7416.08368,3061.3286 C7415.46106,3047.49668 7410.3417,3035.54968 7402.31675,3029.36135 C7393.11574,3022.19592 7377.75765,3021.12179 7369.45598,3021.12179 C7355.75823,3021.12179 7328.43191,3023.91451 7299.86033,3042.57651 C7277.93009,3056.89352 7262.15693,3079.96982 7251.5723,3100.61375 C7239.32734,3072.79052 7219.12661,3038.73046 7188.61798,3019.18837 C7150.43031,2994.77462 7113.97215,2993.76287 7086.09239,3015.55022 C7076.0612,3023.40863 7064.02379,3040.08871 7063.12444,3061.25238 C7062.57099,3074.44675 7066.30674,3094.29375 7087.40682,3113.9883 C7100.20522,3125.93531 7117.43118,3135.20047 7135.90239,3142.39363 L7018.84888,3142.39363 C7015.11313,3142.39363 7012,3145.4566 7012,3149.24029 L7012,3247.5467 C7012,3251.33731 7015.11313,3254.40722 7018.84888,3254.40722 L7036.5591,3254.40722 L7036.5591,3493.13948 C7036.5591,3496.93009 7039.60305,3500 7043.40798,3500 L7457.6612,3500 C7461.39695,3500 7464.51008,3496.93009 7464.51008,3493.13948 L7464.51008,3254.40722 L7482.15112,3254.40722 C7485.95606,3254.40722 7489,3251.33731 7489,3247.5467 L7489,3149.24029 C7489,3145.4566 7485.95606,3142.39363 7482.15112,3142.39363 L7482.15112,3142.39363 Z" id="icon-font_36_Gift" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.4 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="240px" viewBox="0 0 500 240" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_37_People</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-8000.000000, -3130.000000)" fill="#000000">
|
||||
<path d="M8500,3349.42679 C8500,3349.42679 8499.88189,3337.26676 8474.84993,3326.19898 C8462.72649,3320.83446 8444.72543,3307.0153 8418.0747,3302.26604 C8424.88328,3295.01426 8430.0453,3283.65613 8435.35321,3270.21027 C8438.42402,3262.41928 8437.90296,3255.77584 8437.90296,3246.32572 C8437.90296,3239.32972 8439.22299,3228.11677 8437.4861,3221.95034 C8431.60155,3201.12827 8416.74772,3195.38353 8399.34415,3195.38353 C8381.94058,3195.38353 8367.06592,3201.15592 8361.19525,3222.01947 C8359.46532,3228.16516 8360.79924,3239.35046 8360.79924,3246.32572 C8360.79924,3255.79658 8360.27123,3262.46767 8363.36288,3270.26558 C8367.73983,3281.33335 8371.95003,3290.89409 8377.05647,3297.96613 C8406.56959,3315.68425 8409.3347,3335.29654 8409.39723,3341.51136 L8409.39723,3369.98617 L8500,3369.97926 L8500,3349.42679 Z M8090.38045,3341.60815 L8090.38045,3341.49754 C8090.44992,3335.33802 8093.1803,3315.98151 8122.08898,3298.374 C8127.383,3291.22591 8131.73911,3281.47161 8136.18553,3270.21027 C8139.25634,3262.41928 8138.73527,3255.77584 8138.73527,3246.32572 C8138.73527,3239.32972 8140.0553,3228.11677 8138.31147,3221.95034 C8132.42691,3201.12827 8117.58004,3195.38353 8100.17647,3195.38353 C8082.759,3195.38353 8067.89129,3201.15592 8062.02757,3222.01947 C8060.29763,3228.16516 8061.62461,3239.35046 8061.62461,3246.32572 C8061.62461,3255.79658 8061.11049,3262.46767 8064.18825,3270.26558 C8069.53785,3283.78748 8074.6165,3295.11795 8081.41118,3302.34208 C8054.97582,3307.1743 8037.11372,3320.89668 8025.0528,3326.24737 C8000.11811,3337.30824 8000,3349.42679 8000,3349.42679 L8000,3370 L8090.38045,3369.98617 L8090.38045,3341.60815 Z M8353.33065,3309.79434 C8336.66352,3302.42504 8311.92335,3283.43492 8275.30291,3276.90209 C8284.66819,3266.92658 8291.75467,3251.33076 8299.04958,3232.84529 C8303.27368,3222.13699 8302.55113,3213.00487 8302.55113,3200.00144 C8302.55113,3190.39923 8304.37139,3174.99006 8301.97449,3166.5285 C8293.89451,3137.9016 8273.48266,3130 8249.56231,3130 C8225.62806,3130 8205.18842,3137.93617 8197.12928,3166.60455 C8194.74628,3175.05228 8196.57348,3190.43379 8196.57348,3200.00144 C8196.57348,3213.03943 8195.85788,3222.1923 8200.10282,3232.92134 C8207.44637,3251.50359 8214.42863,3267.07866 8223.76612,3277.0127 C8187.43052,3283.65613 8162.87795,3302.50799 8146.32198,3309.85655 C8112.04285,3325.06524 8111.87611,3341.71184 8111.87611,3341.71184 L8111.87611,3370 L8387.90157,3369.96543 L8387.90157,3341.71184 C8387.90157,3341.71184 8387.74177,3325.00994 8353.33065,3309.79434 Z" id="icon-font_37_People" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.2 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="350px" viewBox="0 0 500 350" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_38_Play</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-9000.000000, -3075.000000)" fill="#000000" opacity="0.9">
|
||||
<path d="M9000,3094.995 C9000,3083.95207 9008.95745,3075 9020.00601,3075 L9479.99399,3075 C9491.04301,3075 9500,3083.95914 9500,3094.995 L9500,3405.005 C9500,3416.04793 9491.04255,3425 9479.99399,3425 L9020.00601,3425 C9008.95699,3425 9000,3416.04086 9000,3405.005 L9000,3094.995 Z M9218.75,3193.27273 L9312.5,3256.90909 L9218.75,3320.54545 L9218.75,3193.27273 Z" id="icon-font_38_Play" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,27 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="442px" viewBox="0 0 500 442" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_39_Add</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-1">
|
||||
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetInner1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetInner1" result="shadowBlurInner1"></feGaussianBlur>
|
||||
<feComposite in="shadowBlurInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0950492527 0" in="shadowInnerInner1" type="matrix" result="shadowMatrixInner1"></feColorMatrix>
|
||||
<feMerge>
|
||||
<feMergeNode in="SourceGraphic"></feMergeNode>
|
||||
<feMergeNode in="shadowMatrixInner1"></feMergeNode>
|
||||
</feMerge>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(0.000000, -4029.000000)">
|
||||
<g id="icon-font_39_Add" sketch:type="MSLayerGroup" transform="translate(0.000000, 4029.000000)">
|
||||
<path d="M316.204051,0 L0,0 L0,442 L382.352941,442 L382.352941,66.1488901 L316.204051,1.64313008e-14 Z" id="Rectangle-112" opacity="0.9" fill="#000000" filter="url(#filter-1)" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M157.202669,206.266667 L382.352941,206.266667 L382.352941,235.733333 L156.513193,235.733333 L206.31154,285.53168 L188.646276,303.196945 L121.182665,235.733333 L117.647059,235.733333 L117.647059,206.266667 L121.872141,206.266667 L188.646276,139.492532 L206.31154,157.157796 L157.202669,206.266667 Z" id="Rectangle-477" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
|
||||
<rect id="Rectangle-478" fill="#000000" sketch:type="MSShapeGroup" x="382.352941" y="206.266667" width="117.647059" height="29.4666667"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.4 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_40_Map</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-1000.000000, -4000.000000)" fill="#000000">
|
||||
<path d="M1142.32105,4008.24523 L1000,4055.54938 L1000,4500 L1142.32105,4452.69585 L1142.32105,4008.24523 Z M1500,4000 L1358.99725,4046.86653 L1358.99725,4491.3241 L1500,4444.45757 L1500,4000 Z M1167.10378,4451.40384 L1334.20755,4493.05372 L1334.20755,4048.6031 L1167.10378,4006.94628 L1167.10378,4451.40384 Z" id="icon-font_40_Map" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.0 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_41_Anchor</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-2000.000000, -4000.000000)" fill="#000000">
|
||||
<path d="M2171.35739,4239.91654 C2164.23444,4243.19662 2155.53401,4241.98049 2149.66887,4236.11526 L2063.47072,4149.92286 C2055.96556,4142.4037 2055.96556,4130.1729 2063.47072,4122.65374 L2122.66419,4063.47334 C2130.1763,4055.96113 2142.40693,4055.96113 2149.91209,4063.47334 L2236.11719,4149.66574 C2242.14217,4155.6769 2243.24014,4164.68322 2239.6474,4171.90356 L2281.05086,4213.3215 C2306.97841,4183.02942 2305.66501,4137.44189 2277.00641,4108.77595 L2190.80826,4022.58355 C2160.69034,3992.47215 2111.88595,3992.47215 2081.78192,4022.58355 L2022.58845,4081.77784 C1992.47052,4111.88229 1992.47052,4160.69431 2022.58845,4190.8057 L2108.7727,4277.00505 C2137.3062,4305.53201 2182.60123,4306.97746 2212.89289,4281.45262 L2171.35739,4239.91654 Z M2418.22156,4477.41645 L2477.42198,4418.23605 C2507.52601,4388.11771 2507.52601,4339.30569 2477.42198,4309.20125 L2391.22383,4223.0019 C2362.55829,4194.33596 2316.96444,4193.02254 2286.67278,4218.9435 L2328.09709,4260.37533 C2335.31734,4256.75474 2344.31658,4257.86663 2350.34155,4263.89169 L2436.52581,4350.08409 C2444.05181,4357.60325 2444.05181,4369.83405 2436.52581,4377.33931 L2377.33928,4436.52666 C2369.82022,4444.04582 2357.58959,4444.04582 2350.08443,4436.52666 L2263.88628,4350.34121 C2258.02114,4344.47599 2256.79808,4335.76849 2260.08506,4328.64544 L2218.54956,4287.10936 C2193.02507,4317.40144 2194.47745,4362.69015 2223.00401,4391.22405 L2309.20216,4477.41645 C2339.29229,4507.52785 2388.11753,4507.52785 2418.22156,4477.41645 Z M2140.07199,4140.47874 C2128.77951,4151.77138 2128.77951,4170.07589 2140.0581,4181.37548 L2316.4363,4357.74919 C2327.74268,4369.03488 2346.05388,4369.05573 2357.34637,4357.76308 C2368.63886,4346.47044 2368.62496,4328.15899 2357.33247,4316.86634 L2180.95427,4140.47874 C2169.66178,4129.1861 2151.36448,4129.19305 2140.07199,4140.47874 Z" id="icon-font_41_Anchor" sketch:type="MSShapeGroup" transform="translate(2250.000000, 4250.000000) scale(-1, 1) translate(-2250.000000, -4250.000000) "></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.6 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="273px" viewBox="0 0 500 273" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_42_Key</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-3000.000000, -4114.000000)" fill="#000000">
|
||||
<path d="M3386.36364,4273.09091 L3270.84185,4273.09091 C3260.0219,4337.58439 3203.93173,4386.72727 3136.36364,4386.72727 C3061.05208,4386.72727 3000,4325.67519 3000,4250.36364 C3000,4175.05208 3061.05208,4114 3136.36364,4114 C3195.73722,4114 3246.24809,4151.9458 3264.96792,4204.90909 L3500,4204.90909 L3500,4261.72727 L3500,4318.54545 L3454.54545,4318.54545 L3454.54545,4273.09091 L3431.81818,4273.09091 L3431.81818,4318.54545 L3386.36364,4318.54545 L3386.36364,4273.09091 L3386.36364,4273.09091 Z M3136.36364,4341.27273 C3186.57134,4341.27273 3227.27273,4300.57134 3227.27273,4250.36364 C3227.27273,4200.15593 3186.57134,4159.45455 3136.36364,4159.45455 C3086.15593,4159.45455 3045.45455,4200.15593 3045.45455,4250.36364 C3045.45455,4300.57134 3086.15593,4341.27273 3136.36364,4341.27273 L3136.36364,4341.27273 Z" id="icon-font_42_Key" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_43_Calendar</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-4000.000000, -4000.000000)" stroke="#979797" fill="#000000">
|
||||
<path d="M4000,4039.99304 C4000,4017.90549 4017.90578,4000 4039.99304,4000 L4460.00696,4000 C4482.09451,4000 4500,4017.90578 4500,4039.99304 L4500,4460.00696 C4500,4482.09451 4482.09422,4500 4460.00696,4500 L4039.99304,4500 C4017.90549,4500 4000,4482.09422 4000,4460.00696 L4000,4039.99304 Z M4021,4157 L4480,4157 L4480,4440.00904 C4480,4462.09544 4462.09476,4480 4439.99472,4480 L4061.00528,4480 C4038.91097,4480 4021,4462.08718 4021,4440.00904 L4021,4157 Z" id="icon-font_43_Calendar" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="431px" height="500px" viewBox="0 0 431 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_44_Document</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-5035.000000, -4000.000000)" fill="#000000" opacity="0.9">
|
||||
<g id="icon-font_44_Document" sketch:type="MSLayerGroup" transform="translate(5035.000000, 4000.000000)">
|
||||
<path d="M366.552517,0 L0,0 L0,500 L431,500 L431,64.447483 L366.552517,3.51940699e-14 Z" id="Path-3" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 996 B |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="501px" height="358px" viewBox="0 0 501 358" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_45_Eye</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-6000.000000, -4071.000000)" fill="#191919">
|
||||
<path d="M6250.5,4429 C6388.84733,4429 6501,4250 6501,4250 C6501,4250 6388.84733,4071 6250.5,4071 C6112.15267,4071 6000,4250 6000,4250 C6000,4250 6112.15267,4429 6250.5,4429 Z M6250.5,4357.4 C6309.79171,4357.4 6357.85714,4309.31538 6357.85714,4250 C6357.85714,4190.68462 6309.79171,4142.6 6250.5,4142.6 C6191.20829,4142.6 6143.14286,4190.68462 6143.14286,4250 C6143.14286,4309.31538 6191.20829,4357.4 6250.5,4357.4 Z M6250.5,4285.8 C6270.2639,4285.8 6286.28571,4269.77179 6286.28571,4250 C6286.28571,4230.22821 6270.2639,4214.2 6250.5,4214.2 C6230.7361,4214.2 6214.71429,4230.22821 6214.71429,4250 C6214.71429,4269.77179 6230.7361,4285.8 6250.5,4285.8 Z" id="icon-font_45_Eye" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.4 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="334px" height="500px" viewBox="0 0 334 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_46_Marker</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-7083.000000, -4000.000000)" fill="#000000" opacity="0.9">
|
||||
<path d="M7249.6458,4000.00926 C7248.71953,3999.99272 7247.56795,4000.05888 7246.63333,4000.05888 C7156.25072,4000.05888 7083,4073.63133 7083,4162.24741 C7083,4250.88004 7249.70422,4500 7249.70422,4500 C7249.70422,4500 7416.33333,4250.57404 7416.33333,4162.23087 C7416.33333,4073.8877 7343.06592,4000.04234 7252.68331,4000.04234 C7251.56511,4000.04234 7250.74732,3999.97618 7249.6458,4000.00926 Z M7249.27863,4222.25659 C7207.88004,4222.25659 7174.30888,4188.99351 7174.30888,4147.96463 C7174.30888,4106.93576 7207.88004,4073.66441 7249.27863,4073.66441 C7290.68557,4073.66441 7324.24838,4106.93576 7324.24838,4147.96463 C7324.24838,4188.99351 7290.68557,4222.25659 7249.27863,4222.25659 L7249.27863,4222.25659 Z" id="icon-font_46_Marker" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,19 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="170px" viewBox="0 0 500 170" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_47_ProgressBar</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-8000.000000, -4166.000000)">
|
||||
<g id="icon-font_47_ProgressBar" sketch:type="MSLayerGroup" transform="translate(8008.000000, 4173.000000)">
|
||||
<g id="Page-1" sketch:type="MSShapeGroup">
|
||||
<g id="Imported-Layers">
|
||||
<path d="M0,77.78 C0,35.297 33.338888,0.857 74.465336,0.857 L409.534664,0.857 C450.661112,0.857 484,35.287 484,77.78 C484,120.264 450.66208,154.703 409.534664,154.703 L74.465336,154.703 C33.338888,154.703 0,120.273 0,77.78 L0,77.78 L0,77.78 Z" id="Stroke-1" stroke="#0B0B0A" stroke-width="15"></path>
|
||||
<path d="M37.230248,78.78 C37.230248,57.538 53.900176,40.318 74.454688,40.318 L279.237992,40.318 C299.795408,40.318 316.461464,57.534 316.461464,78.78 C316.461464,100.022 299.791536,117.242 279.237992,117.242 L74.454688,117.242 C53.896304,117.242 37.230248,100.026 37.230248,78.78" id="Fill-2" fill="#0C0D0B"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="334px" height="500px" viewBox="0 0 334 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_48_Book</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-9083.000000, -4000.000000)" fill="#000000">
|
||||
<path d="M9333,4170.32951 L9374.66667,4125 L9374.66667,4414.416 L9334.27226,4458.33333 L9334.27226,4177.36099 C9334.27226,4174.88232 9333.82697,4172.50662 9333,4170.32951 L9333,4170.32951 Z M9126.78911,4077.16877 C9125.55997,4075.43373 9124.74054,4072.73756 9124.68201,4069.617 C9124.44789,4063.20111 9126.90618,4056.61047 9131.17892,4052.41018 C9149.67462,4034.19231 9174.72576,4044.56507 9175.72079,4044.98323 C9175.89638,4045.05812 9176.01344,4045.12054 9176.18903,4045.18295 L9374.66667,4124.05843 L9332.17337,4166.66667 C9331.82219,4166.46695 9331.471,4166.25475 9331.06129,4166.08624 L9126.78911,4077.16877 L9126.78911,4077.16877 Z M9406.5137,4098.71882 L9179.64859,4006.01556 C9175.08722,4004.03621 9132.89449,3987.0971 9099.76116,4020.69057 C9088.67448,4031.89997 9082.46594,4048.60294 9083.03611,4065.37537 C9083.09946,4068.20203 9083.41623,4070.95923 9083.92305,4073.62615 L9083.92305,4383.34308 C9083.92305,4390.13539 9087.66084,4396.24014 9093.48927,4398.72649 L9325.35922,4498.85406 C9327.13309,4499.62496 9329.03366,4500 9330.87088,4500 C9333.84845,4500 9336.82601,4499.03463 9339.36011,4497.13862 C9343.47802,4494.05499 9345.94877,4488.94339 9345.94877,4483.47065 L9345.94877,4467.21911 L9388.52161,4423.34688 C9391.18241,4427.99316 9395.87049,4431.11151 9401.25545,4431.11151 C9409.61797,4431.11151 9416.33333,4423.70803 9416.33333,4414.58216 L9416.33333,4114.21334 C9416.33333,4107.30297 9412.46883,4101.12877 9406.5137,4098.71882 L9406.5137,4098.71882 Z" id="icon-font_48_Book" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.2 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="375px" height="500px" viewBox="0 0 375 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_49_Notes</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-63.000000, -5001.000000)" fill="#000000">
|
||||
<path d="M397.27837,5034.90828 L374.480438,5034.90828 L374.480438,5020.37517 C374.480438,5009.67276 365.68715,5001 354.843032,5001 C343.99189,5001 335.198603,5009.67276 335.198603,5020.37517 L335.198603,5034.90828 L269.740584,5034.90828 L269.740584,5020.37517 C269.740584,5009.67276 260.947296,5001 250.096155,5001 C239.245013,5001 230.451726,5009.67276 230.451726,5020.37517 L230.451726,5034.90828 L165.39404,5034.90828 L165.39404,5020.37517 C165.39404,5009.67276 156.59373,5001 145.749611,5001 C134.89847,5001 126.105182,5009.67276 126.105182,5020.37517 L126.105182,5034.90828 L103.728654,5034.90828 C81.2327271,5034.90828 63,5052.89111 63,5075.07177 L63,5460.83652 C63,5483.01718 81.2327271,5501 103.728654,5501 L397.27837,5501 C419.767273,5501 438,5483.01718 438,5460.83652 L438,5075.07177 C438,5052.89111 419.767273,5034.90828 397.27837,5034.90828 L397.27837,5034.90828 L397.27837,5034.90828 Z M396.333333,5459.33333 L104.666667,5459.33333 L104.666667,5084.33333 L127.348066,5084.33333 L127.348066,5097.50072 C127.348066,5108.06612 136.053496,5116.65266 146.796219,5116.65266 C157.531989,5116.65266 166.244372,5108.06612 166.244372,5097.50072 L166.244372,5084.33333 L230.652037,5084.33333 L230.652037,5097.50072 C230.652037,5108.06612 239.357467,5116.65266 250.10019,5116.65266 C260.842913,5116.65266 269.548343,5108.06612 269.548343,5097.50072 L269.548343,5084.33333 L334.352341,5084.33333 L334.352341,5097.50072 C334.352341,5108.06612 343.057771,5116.65266 353.800494,5116.65266 C364.536264,5116.65266 373.241694,5108.06612 373.241694,5097.50072 L373.241694,5084.33333 L396.333333,5084.33333 L396.333333,5459.33333 L396.333333,5459.33333 Z M146.333333,5167.66667 L354.666667,5167.66667 L354.666667,5188.5 L146.333333,5188.5 L146.333333,5167.66667 L146.333333,5167.66667 Z M146.333333,5230.16667 L354.666667,5230.16667 L354.666667,5251 L146.333333,5251 L146.333333,5230.16667 L146.333333,5230.16667 Z M146.333333,5292.66667 L354.666667,5292.66667 L354.666667,5313.5 L146.333333,5313.5 L146.333333,5292.66667 L146.333333,5292.66667 Z M146.333333,5376 L354.666667,5376 L354.666667,5396.83333 L146.333333,5396.83333 L146.333333,5376 L146.333333,5376 Z" id="icon-font_49_Notes" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.8 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="432px" viewBox="0 0 500 432" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_50_Rectangles</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-1000.000000, -5035.000000)" fill="#000000">
|
||||
<path d="M1000,5035 L1136.36364,5035 L1136.36364,5239.54545 L1000,5239.54545 L1000,5035 Z M1340.90909,5262.27273 L1500,5262.27273 L1500,5466.81818 L1340.90909,5466.81818 L1340.90909,5262.27273 Z M1159.09091,5035 L1500,5035 L1500,5239.54545 L1159.09091,5239.54545 L1159.09091,5035 Z M1000,5262.27273 L1318.18182,5262.27273 L1318.18182,5466.81818 L1000,5466.81818 L1000,5262.27273 Z" id="icon-font_50_Rectangles" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="383px" viewBox="0 0 500 383" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_51_Mountain</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-2000.000000, -5059.000000)" fill="#000000">
|
||||
<path d="M2268.61647,5298.43027 L2249.94814,5223.49171 L2202.13649,5245.46539 L2181.49761,5217.37639 L2249.94814,5112.69042 L2305.22713,5197.16474 L2268.61647,5298.43027 L2268.61647,5298.43027 Z M2249.94814,5059 L2000,5441.15559 L2500,5441.15559 L2249.94814,5059 L2249.94814,5059 Z" id="icon-font_51_Mountain" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.0 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="264px" viewBox="0 0 500 264" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_52_Points</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-3000.000000, -5119.000000)" fill="#000000">
|
||||
<path d="M3368.42105,5382.15789 C3441.0901,5382.15789 3500,5323.24799 3500,5250.57895 C3500,5177.9099 3441.0901,5119 3368.42105,5119 C3295.75201,5119 3236.84211,5177.9099 3236.84211,5250.57895 C3236.84211,5323.24799 3295.75201,5382.15789 3368.42105,5382.15789 L3368.42105,5382.15789 Z M3127.63317,5119.90907 C3055.7582,5127.60147 3000,5183.17065 3000,5250.57895 C3000,5317.98724 3055.7582,5373.55643 3127.63317,5381.24882 C3082.36544,5352.84115 3052.63158,5304.9153 3052.63158,5250.57895 C3052.63158,5196.24259 3082.36544,5148.31674 3127.63317,5119.90907 L3127.63317,5119.90907 L3127.63317,5119.90907 Z M3260.15904,5381.83881 C3256.8029,5382.05036 3253.41526,5382.15789 3250,5382.15789 C3170.06405,5382.15789 3105.26316,5323.24799 3105.26316,5250.57895 C3105.26316,5177.9099 3170.06405,5119 3250,5119 C3253.41526,5119 3256.8029,5119.10754 3260.15904,5119.31909 C3214.35949,5147.65029 3184.21053,5195.86462 3184.21053,5250.57895 C3184.21053,5305.29328 3214.35949,5353.5076 3260.15904,5381.83881 L3260.15904,5381.83881 L3260.15904,5381.83881 Z" id="icon-font_52_Points" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.8 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="219px" viewBox="0 0 500 219" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_53_Snake</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-4000.000000, -5141.000000)" fill="#000000">
|
||||
<path d="M4443.72809,5141.01372 L4443.49858,5141.01372 L4442.94219,5141 L4442.73354,5141 C4442.53881,5141 4442.33016,5141 4442.12152,5141.01372 L4441.87809,5141.02058 C4410.85934,5141.02058 4385.62705,5165.91377 4385.62705,5196.51407 L4385.62705,5304.24965 C4385.62705,5314.58694 4377.07951,5323.01043 4366.59155,5323.01043 C4366.26467,5323.01043 4365.67351,5323.02415 4365.38836,5323.03101 C4365.20753,5323.02415 4364.91543,5323.01729 4364.74156,5323.01729 C4354.24665,5323.01729 4345.70606,5314.5938 4345.70606,5304.24965 L4345.76865,5196.51407 C4345.76865,5165.90691 4320.52941,5141.01372 4289.49675,5141.01372 L4289.26028,5141.01372 L4288.71084,5141 L4288.50915,5141 C4288.30746,5141 4288.10577,5141 4287.89017,5141.01372 L4287.6537,5141.02058 C4256.63495,5141.02058 4231.3957,5165.91377 4231.3957,5196.51407 L4231.3957,5304.24965 C4231.3957,5314.58694 4222.85512,5323.01043 4212.36021,5323.01043 C4212.04028,5323.01043 4211.44912,5323.02415 4211.16397,5323.03101 C4210.96923,5323.02415 4210.67713,5323.01729 4210.51021,5323.01729 C4200.0153,5323.01729 4191.47471,5314.5938 4191.47471,5304.24965 L4191.53035,5196.50721 C4191.53035,5165.90691 4166.28415,5141.01372 4135.25844,5141.01372 L4135.01502,5141.01372 L4134.45863,5141 L4134.2639,5141 C4134.07611,5141 4133.85356,5141 4133.64491,5141.01372 L4133.40845,5141.02058 C4102.3897,5141.02058 4077.15045,5165.91377 4077.15045,5196.51407 L4077.15045,5304.24965 C4077.15045,5314.58694 4068.61681,5323.01043 4058.12191,5323.01043 C4057.80198,5323.01043 4057.20386,5323.02415 4056.91871,5323.03101 C4056.72397,5323.02415 4056.43882,5323.01729 4056.27191,5323.01729 C4045.77004,5323.01729 4037.23641,5314.5938 4037.23641,5304.24965 L4037.23641,5248.25541 C4037.23641,5244.94912 4034.52401,5242.27391 4031.18567,5242.27391 L4006.05074,5242.27391 C4002.7124,5242.27391 4000,5244.94912 4000,5248.25541 L4000,5304.24965 C4000,5334.84995 4025.23925,5359.73628 4056.27191,5359.73628 L4056.52924,5359.75 L4057.31514,5359.75 L4057.39164,5359.75 C4057.55161,5359.75 4057.71852,5359.75 4057.89935,5359.73628 L4058.12886,5359.73628 C4089.14066,5359.73628 4114.3799,5334.84309 4114.3799,5304.24965 L4114.3799,5196.51407 C4114.3799,5186.16306 4122.92049,5177.73957 4133.40845,5177.73957 C4133.74228,5177.73957 4134.36126,5177.73271 4134.62555,5177.72585 C4134.79247,5177.72585 4135.08457,5177.73271 4135.25844,5177.73271 C4145.75335,5177.73271 4154.29394,5186.1562 4154.29394,5196.50721 L4154.2383,5304.24965 C4154.2383,5334.84995 4179.47755,5359.73628 4210.51021,5359.73628 L4210.76754,5359.75 L4211.5604,5359.75 L4211.64385,5359.75 C4211.78295,5359.75 4211.97073,5359.75 4212.13765,5359.73628 L4212.36021,5359.73628 C4243.37896,5359.73628 4268.61821,5334.84309 4268.61821,5304.24965 L4268.61821,5196.51407 C4268.61821,5186.16306 4277.15879,5177.73957 4287.6537,5177.73957 C4287.98754,5177.73957 4288.59261,5177.73271 4288.86385,5177.72585 C4289.04468,5177.72585 4289.32983,5177.73271 4289.49675,5177.73271 C4299.99861,5177.73271 4308.54615,5186.1562 4308.54615,5196.50721 L4308.46965,5304.24965 C4308.46965,5334.84995 4333.71585,5359.73628 4364.74156,5359.73628 L4365.00584,5359.75 L4365.7987,5359.75 L4365.8752,5359.75 C4366.0143,5359.75 4366.20208,5359.75 4366.37595,5359.73628 L4366.59155,5359.73628 C4397.6103,5359.73628 4422.84955,5334.84309 4422.84955,5304.24965 L4422.84955,5196.51407 C4422.84955,5186.16306 4431.39014,5177.73957 4441.87809,5177.73957 C4442.21193,5177.73957 4442.82396,5177.73271 4443.0952,5177.72585 C4443.27603,5177.72585 4443.56118,5177.73271 4443.72809,5177.73271 C4454.22996,5177.73271 4462.77054,5186.1562 4462.77054,5196.50721 L4462.77054,5248.35144 C4462.77054,5251.65773 4465.48295,5254.32608 4468.82129,5254.32608 L4493.94926,5254.32608 C4497.2876,5254.32608 4500,5251.65773 4500,5248.35144 L4500,5196.50721 C4500,5165.90691 4474.76075,5141.01372 4443.72809,5141.01372" id="icon-font_53_Snake" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.5 KiB |
@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="494px" height="432px" viewBox="0 0 494 432" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_54_Boss</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-5003.000000, -5035.000000)" fill="#000000">
|
||||
<g id="icon-font_54_Boss" sketch:type="MSLayerGroup" transform="translate(5003.000000, 5035.000000)">
|
||||
<g id="Page-1" sketch:type="MSShapeGroup">
|
||||
<g id="Artboard-1">
|
||||
<path d="M493.599315,380.445205 C493.599315,380.445205 493.311644,350.445205 431.832192,323.123288 C402.05137,309.890411 357.85274,275.780822 292.407534,264.061644 C309.140411,246.150685 321.811644,218.136986 334.839041,184.945205 C342.393836,165.719178 341.092466,149.321918 341.092466,125.979452 C341.092466,108.732877 344.34589,81.0616438 340.065068,65.8561644 C325.633562,14.4589041 289.15411,0.273972603 246.421233,0.273972603 C203.65411,0.273972603 167.140411,14.5205479 152.729452,66.0068493 C148.482877,81.1712329 151.743151,108.780822 151.743151,125.979452 C151.743151,149.376712 150.469178,165.821918 158.044521,185.089041 C171.174658,218.445205 183.65411,246.417808 200.332192,264.260274 C135.407534,276.191781 91.5445205,310.041096 61.9486301,323.239726 C0.702054795,350.547945 0.400684932,380.445205 0.400684932,380.445205 L0.400684932,431.232877 L218.325342,431.212329 L230.085616,375.287671 L206.003425,342.958904 C206.003425,342.958904 231.256849,315.924658 246.825342,315.924658 C262.393836,315.924658 287.393836,342.883562 287.393836,342.883562 L263.558219,375.287671 L275.15411,431.19863 L493.599315,431.178082 L493.599315,380.445205" id="Fill-794"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="319px" height="500px" viewBox="0 0 319 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_55_Rocket</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-6091.000000, -5000.000000)" fill="#000000">
|
||||
<g id="icon-font_55_Rocket" sketch:type="MSLayerGroup" transform="translate(6091.000000, 5000.000000)">
|
||||
<g id="Page-1" sketch:type="MSShapeGroup">
|
||||
<path d="M159.094348,175.212893 C137.63508,175.212893 120.233811,157.622075 120.233811,135.92905 C120.233811,114.236025 137.63508,96.6452068 159.094348,96.6452068 C180.553618,96.6452068 197.948007,114.236025 197.948007,135.92905 C197.948007,157.622075 180.553618,175.212893 159.094348,175.212893 L159.094348,175.212893 L159.094348,175.212893 Z M236.155136,134.05177 C236.155136,65.9134227 159.025568,0 159.025568,0 C159.025568,0 82.0266818,65.079075 82.0266818,134.05177 L82.0266818,217.069307 L0,288.962218 L0,358.213027 L82.0266818,330.401457 L82.0266818,368.503309 C82.0266818,368.503309 81.4145432,388.458111 158.888009,388.458111 C236.382109,388.458111 236.155136,368.503309 236.155136,368.503309 L236.155136,330.401457 L318.181818,358.213027 L318.181818,288.962218 L236.155136,217.069307 L236.155136,134.05177 L236.155136,134.05177 Z M149.692161,414.670516 C140.193684,418.981309 129.952384,437.476004 137.552543,453.050484 C148.887439,476.342673 172.925948,469.876484 162.498943,493.863964 C152.071939,517.92097 203.354091,465.287575 193.649275,438.657995 C183.387341,410.498779 159.197518,410.290193 149.692161,414.670516 L149.692161,414.670516 L149.692161,414.670516 Z" id="icon-font_55_Rocket"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="347px" viewBox="0 0 500 347" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_56_Barometer</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-7000.000000, -5077.000000)" fill="#000000">
|
||||
<g id="icon-font_56_Barometer" sketch:type="MSLayerGroup" transform="translate(7000.000000, 5077.000000)">
|
||||
<g id="Page-1" sketch:type="MSShapeGroup">
|
||||
<path d="M396.903693,214.847327 L480.943616,192.474477 C477.19252,175.799061 471.709078,159.748973 464.73077,144.602136 L396.903693,214.847327 L396.903693,214.847327 Z M323.418539,145.852792 L407.255886,65.8107955 C363.339424,25.5118723 304.753866,0.846153046 240.433385,0.846153046 C123.129556,0.846153046 24.7907635,82.764134 0,192.057592 L112.092812,221.934379 C123.47882,161.763919 176.678723,116.114967 240.433385,116.114967 C271.944001,116.114967 300.835116,127.301392 323.418539,145.852792 L323.418539,145.852792 L323.418539,145.852792 Z M497.065636,44.2022358 C493.20279,40.3807858 486.978905,40.3113051 483.046174,44.0632724 L254.299174,262.441744 C249.947347,261.052127 245.309116,260.218356 240.475308,260.218356 C216.390049,260.218356 196.852216,279.603527 196.852216,303.574436 C196.852216,313.093321 199.925741,321.778433 205.094849,328.934965 C208.119475,333.103819 211.835645,336.716827 216.117624,339.565544 C223.074964,344.290244 231.457308,347 240.475308,347 C264.560558,347 284.084405,327.545348 284.084405,303.574436 C284.084405,296.556865 282.352058,289.8867 279.334424,283.980823 L497.212328,58.0984147 C500.984386,54.2074839 500.92152,48.0236839 497.065636,44.2022358 L497.065636,44.2022358 L497.065636,44.2022358 Z" id="icon-font_56_Barometer"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.2 KiB |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="308px" viewBox="0 0 500 308" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_57_Dollar</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-8000.000000, -5097.000000)" fill="#000000">
|
||||
<g id="icon-font_57_Dollar" sketch:type="MSLayerGroup" transform="translate(8000.000000, 5097.000000)">
|
||||
<path d="M250.006922,62.8218603 C301.960187,62.8218603 344.084831,103.57027 344.084831,153.847847 C344.084831,204.125425 301.960187,244.873834 250.006922,244.873834 C198.039813,244.873834 155.915169,204.125425 155.915169,153.847847 C155.915169,103.57027 198.039813,62.8218603 250.006922,62.8218603 L250.006922,62.8218603 Z M0,3.905754 L0,286.077608 C0,286.077608 102.155375,258.775839 250.006922,293.87907 C397.844625,328.995694 500,286.077608 500,286.077608 L500,3.905754 C500,3.905754 393.823196,50.7145268 250.006922,19.5086783 C106.183726,-11.7105633 0,3.905754 0,3.905754 L0,3.905754 Z" id="Fill-460" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M243.190806,122.769345 L243.190806,147.692603 C239.370822,146.168939 231.422909,142.959518 231.422909,134.692829 C231.422909,125.674032 239.722759,123.527935 243.190806,122.769345 L243.190806,122.769345 Z M251.490657,169.108192 C255.464613,170.943073 263.075254,174.14601 263.075254,183.022165 C263.075254,191.437979 256.505761,194.342667 251.490657,195.574566 L251.490657,169.108192 L251.490657,169.108192 Z M241.966358,165.587555 L241.966358,195.574566 C231.422909,194.491791 219.823648,188.520324 218.797165,188.520324 C218.09329,188.520324 217.40408,189.44749 217.22078,189.752223 L212.227672,202.602873 C211.868403,203.517071 211.868403,203.517071 211.868403,203.983896 C211.868403,208.561373 236.093408,212.088494 241.966358,212.088494 L241.966358,218.97416 C241.966358,221.567631 242.501596,222.027972 245.610374,222.027972 L249.071089,222.027972 C252.165203,222.027972 252.700441,221.567631 252.700441,218.97416 L252.700441,212.088494 C264.116401,210.409221 282.967033,203.37443 282.967033,182.107966 C282.967033,162.527258 263.940432,155.946325 252.700441,151.064116 L252.700441,122.769345 C260.12778,122.769345 271.389768,128.876969 272.408919,128.876969 C273.120126,128.876969 273.618703,128.423112 273.963308,127.658038 L279.345013,117.258218 C279.682287,116.635785 279.858255,116.175444 279.858255,115.572462 C279.858255,110.366068 257.708213,107.00104 252.700441,106.696307 L252.700441,99.2011748 C252.700441,96.5947363 252.165203,96.1538462 249.071089,96.1538462 L245.610374,96.1538462 C242.501596,96.1538462 241.966358,96.5947363 241.966358,99.2011748 L241.966358,106.696307 C234.018445,107.00104 211.538462,113.426365 211.538462,135.91176 C211.538462,156.101934 231.422909,161.463935 241.966358,165.587555 L241.966358,165.587555 Z" id="Fill-461" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.2 KiB |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="498px" height="463px" viewBox="0 0 498 463" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_58_Email</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-8996.000000, -5016.000000)" fill="#000000">
|
||||
<g id="icon-font_58_Email" sketch:type="MSLayerGroup" transform="translate(8996.000000, 5016.000000)">
|
||||
<path d="M308.656844,337.68 L190.187852,337.68 L178.343022,346.458186 L20.8695652,462.746667 L477.913043,462.746667 L308.656844,337.68" id="Fill-404" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M497.704581,182.959644 L497.566384,182.849281 L497.476555,182.787203 L248.990488,0 L0.124377776,182.959644 L0.0621888881,182.959644 L0,217.420204 L0.0829185174,217.358126 L0.0829185174,443.986667 L154.456468,330.499955 L154.470288,330.48616 L0.338583946,217.178787 L47.8439846,182.959644 L48.0720105,182.787203 L248.983578,34.2674273 L451.636435,182.787203 L451.864461,182.959644 L497.303808,217.440897 L343.545237,330.534444 L343.524508,330.534444 L497.697671,443.952179 L497.697671,217.730598 L497.711491,217.744393 L497.73913,182.959644 L497.704581,182.959644" id="Fill-405" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_59_Label</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(0.000000, -6000.000000)" fill="#000000">
|
||||
<path d="M236.300359,6025.55911 C230.101617,6019.36457 217.899509,6013.6404 209.160881,6012.85942 L69.0497716,6000.09762 C68.374837,6000.0355 67.6554987,6000 66.9361604,6000 C58.437312,6000 47.6117151,6004.2066 41.9102932,6009.93078 L9.9308228,6041.87966 C3.74984212,6048.06532 -0.699398284,6060.27689 0.0909857397,6068.98296 L12.5683965,6209.3628 C13.3321383,6218.08662 19.0513216,6230.28044 25.241183,6236.48385 L284.300648,6495.35854 C287.391138,6498.44693 291.476269,6500 295.5614,6500 C299.63765,6500 303.722781,6498.44693 306.831033,6495.35854 L495.350943,6306.95776 C501.549686,6300.76322 501.549686,6290.61945 495.350943,6284.43379 L236.300359,6025.55911 L236.300359,6025.55911 Z M79.3965359,6080.60585 C88.3838239,6071.62466 100.165578,6067.12815 111.947333,6067.12815 C123.752769,6067.12815 135.570046,6071.63649 144.569175,6080.62951 C162.567433,6098.61555 162.543751,6127.77186 144.569175,6145.7224 C135.570046,6154.73908 123.776451,6159.22376 112.006537,6159.22376 C100.212942,6159.22376 88.4193467,6154.71542 79.4202178,6145.7224 C61.4101189,6127.73636 61.386437,6098.59188 79.3965359,6080.60585 L79.3965359,6080.60585 Z" id="icon-font_59_Label" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.9 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="465px" viewBox="0 0 500 465" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_60_Outside</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-1000.000000, -6018.000000)" fill="#000000">
|
||||
<path d="M1337.54162,6416.21086 C1337.54162,6424.37788 1330.18868,6431.28545 1321.44839,6431.28545 L1070.54661,6431.28545 C1061.80633,6431.28545 1054.45339,6424.37788 1054.45339,6416.21086 L1054.45339,6181.42499 C1054.45339,6173.23848 1061.80633,6166.33091 1070.54661,6166.33091 L1202.76082,6166.33091 L1257.14484,6115.38112 L1070.54661,6115.38112 C1031.77026,6115.38112 1000,6145.09534 1000,6181.42499 L1000,6416.21086 C1000,6452.52103 1031.77026,6482.24174 1070.54661,6482.24174 L1321.44839,6482.24174 C1360.22475,6482.24174 1391.99501,6452.52103 1391.99501,6416.21086 L1391.99501,6241.56107 L1337.54162,6292.50438 L1337.54162,6416.21086 Z M1247.36404,6035.204 L1327.83019,6110.564 L1180.35516,6248.62445 L1253.53774,6317.15479 L1401.08213,6179.10732 L1481.61765,6254.46732 L1500,6018 L1247.36404,6035.204 Z" id="icon-font_60_Outside" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="280px" viewBox="0 0 500 280" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_61_Jigsaw</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-2000.000000, -6110.000000)" fill="#000000">
|
||||
<path d="M2444.76906,6203.30864 C2435.93489,6203.30864 2424.59655,6206.17107 2414.57986,6209.45782 L2414.57986,6139.46624 C2414.57986,6123.19414 2400.59822,6110 2383.34725,6110 L2116.30495,6110 C2099.05398,6110 2085.1419,6123.19414 2085.1419,6139.46624 L2085.1419,6209.75417 C2075.12521,6206.44048 2063.85643,6203.53763 2054.9527,6203.53763 L2041.11018,6203.53763 C2018.4335,6203.53763 2000,6221.37228 2000,6243.2817 L2000,6256.6981 C2000,6278.62098 2018.4335,6296.46237 2041.11018,6296.46237 L2054.9527,6296.46237 C2063.85643,6296.46237 2075.12521,6293.58646 2085.1419,6290.29971 L2085.1419,6360.53376 C2085.1419,6376.80586 2099.05398,6390 2116.30495,6390 L2209.93322,6390 C2205.62048,6378.88702 2201.09905,6364.69608 2201.09905,6354.00741 L2201.09905,6340.35528 C2201.09905,6318.10237 2219.8108,6299.98485 2242.76572,6299.98485 L2256.88648,6299.98485 C2279.91096,6299.98485 2298.6227,6318.10237 2298.6227,6340.35528 L2298.6227,6354.00741 C2298.6227,6364.69608 2294.03172,6378.88702 2289.71898,6390 L2383.34725,6390 C2400.59822,6390 2414.57986,6376.80586 2414.57986,6360.53376 L2414.57986,6290.4883 C2424.59655,6293.80199 2435.93489,6296.69136 2444.76906,6296.69136 L2458.7507,6296.69136 C2481.49694,6296.69136 2500,6278.77589 2500,6256.73851 L2500,6243.26149 C2500,6221.23085 2481.49694,6203.30864 2458.7507,6203.30864 L2444.76906,6203.30864 Z" id="icon-font_61_Jigsaw" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-font_62_Tools</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Artboard-1" sketch:type="MSArtboardGroup" transform="translate(-3000.000000, -6000.000000)" fill="#000000">
|
||||
<path d="M3330.34949,6290.86154 L3336.90955,6304.1818 L3309.79462,6331.35095 C3302.0475,6339.11356 3292.86342,6344.90074 3282.88795,6348.60815 L3371.52169,6437.41914 L3413.4575,6493.72592 L3435.72006,6499.74959 L3497.57208,6437.41914 L3491.57431,6414.61124 L3435.78254,6373.00196 L3352.01505,6289.05304 L3343.67093,6297.41385 L3330.34949,6290.86154 L3330.34949,6290.86154 Z M3429.77088,6404.71321 C3444.23079,6404.71321 3455.9556,6416.46843 3455.9556,6430.95725 C3455.9556,6445.44607 3444.23079,6457.18737 3429.77088,6457.18737 C3415.31098,6457.18737 3403.58617,6445.44607 3403.58617,6430.95725 C3403.58617,6416.46843 3415.31098,6404.71321 3429.77088,6404.71321 Z M3182.28644,6177.59415 L3196.66999,6163.18184 L3209.69293,6169.97065 L3202.92461,6156.9008 L3217.30815,6142.48849 L3218.73818,6141.0556 C3221.93144,6132.76435 3223.80574,6124.58439 3223.7988,6116.90525 C3223.7988,6057.44056 3167.04905,5999.90958 3107.74469,6000.61906 C3107.51561,6000.61906 3100.80977,6007.42874 3097.15835,6011.08746 C3144.69624,6058.72738 3140.76715,6050.99259 3140.76715,6080.20672 C3140.76715,6103.91191 3102.87844,6141.34775 3079.74815,6141.34775 C3049.81483,6141.34775 3059.34601,6146.32111 3010.78766,6097.64478 C3007.01128,6101.42175 3000.31933,6108.02971 3000.31238,6108.25925 C3001.0274,6167.70307 3057.06213,6224.5524 3116.38731,6224.5524 C3127.11944,6224.5524 3138.60823,6221.11626 3149.94429,6215.39863 L3152.09627,6217.56187 C3155.71992,6207.72644 3161.42614,6198.48226 3169.30515,6190.58748 L3182.28644,6177.59415 Z M3486.20825,6048.48852 L3451.60999,6013.82107 C3442.40508,6004.6047 3430.354,6000 3418.30292,6000 C3406.23796,6000 3394.17994,6004.61166 3384.99585,6013.83498 L3236.93975,6162.1663 C3241.48667,6170.95141 3238.13375,6184.26471 3231.05999,6191.35957 C3226.19374,6196.24251 3218.39803,6199.35172 3211.1646,6199.35172 C3207.84639,6199.35172 3204.66007,6198.70484 3201.9111,6197.27196 L3188.93675,6210.26529 C3170.53386,6228.70498 3170.53386,6258.58687 3188.92287,6277.01265 L3191.33169,6279.42629 L3075.81905,6395.16297 L3044.97635,6406.84863 L3000,6471.17538 L3028.87122,6500 L3092.96546,6455.11456 L3104.64862,6423.96672 L3220.10572,6308.27177 L3223.53501,6311.70096 C3232.72604,6320.91732 3244.78406,6325.52203 3256.82819,6325.52203 C3268.89315,6325.52203 3280.95117,6320.90341 3290.15609,6311.68009 L3303.20679,6298.60329 C3298.8959,6289.83904 3302.22799,6276.74137 3309.25316,6269.70215 C3314.09858,6264.84009 3321.86653,6261.73782 3329.09995,6261.73782 C3332.29321,6261.73782 3335.38928,6262.34297 3338.07578,6263.67152 L3486.20825,6115.24978 C3504.59725,6096.81705 3504.59725,6066.9282 3486.20825,6048.48852 Z" id="icon-font_62_Tools" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.3 KiB |