Skip to content
Snippets Groups Projects
Commit c6704776 authored by Yogesh Kumar's avatar Yogesh Kumar
Browse files

Initial commit.

parents
No related branches found
Tags 7.x-2.3
No related merge requests found
Showing
with 1016 additions and 0 deletions
How to setup gulpfile in drupal theme
=> Use the command to install Gulp globally
$ npm install --global gulp-cli
=> now i shall go to theme repo using cd command and will install gulp locally
using given command in theme root directory
$ npm install gulp
$ npm init
package name: (theme repo name) default
version: (1.0.0) default
description: put desc accordingly.
entry point: (index.js) gulpfile.js "default index.js will put gulpfile.js after default
text"
test command: "default empty"
git repository: "default empty"
keywords: "default empty"
author: "default empty"
license: (ISC) default
=> After that Install dependencies
$ npm install gulp gulp-sass gulp-concat gulp-sass-glob gulp-sourcemaps gulp-
uglify --save-dev
=> Create a gulpfile.js using command in theme root directory
$ touch gulpfile.js
=> Put this code in gulpfile.js
const { src, dest, watch, series, parallel } = require('gulp');
const sass = require('gulp-sass')(require('sass'));
const sassGlob = require('gulp-sass-glob');
const sourcemaps = require('gulp-sourcemaps');
const concat = require('gulp-concat');
const uglify = require('gulp-uglify');
var paths = {
sassSrc: 'scss/style.scss',
sassDest: 'css/',
jsSrc: 'js/\*\*/script.js',
jsDest: 'js/',
}
function buildStyles() {
return src(paths.sassSrc)
.pipe(sassGlob())
.pipe(sourcemaps.init())
.pipe(sass({ outputStyle: 'compressed' }).on('error', sass.logError))
.pipe(sourcemaps.write('./'))
.pipe(dest(paths.sassDest));
}
function buildScripts() {
return src(paths.jsSrc)
.pipe(sourcemaps.init())
.pipe(uglify())
.pipe(concat('scripts.js'))
.pipe(sourcemaps.write('./'))
.pipe(dest(paths.jsDest));
}
exports.buildStyles = buildStyles;
exports.buildScripts = buildScripts;
exports.watch = function () {
watch(paths.sassSrc, buildStyles);
watch(paths.jsSrc, buildScripts);
};
exports.default = parallel(buildStyles, buildScripts);
Execute Gulp commands
$ gulp --tasks In case you get "Error: Cannot find module 'sass'" then otherwise
skip 2 next command and start from $gulp command
1 $ npm install sass
2 $ npm install --save-dev gulp-uglify
Check for available tasks
$ gulp --tasks
Execute the default task
$ gulp
Compile SCSS files to CSS
$ gulp buildStyles
Compile js files
$ gulp buildScripts
Watch all changes into SCSS and JS files in real time
$ gulp watch
File added
File added
File added
File added
Font license info
## Font Awesome
Copyright (C) 2012 by Dave Gandy
Author: Dave Gandy
License: SIL ()
Homepage: http://fortawesome.github.com/Font-Awesome/
This webfont is generated by http://fontello.com open source project.
================================================================================
Please, note, that you should obey original font licenses, used to make this
webfont pack. Details available in LICENSE.txt file.
- Usually, it's enough to publish content of LICENSE.txt file somewhere on your
site in "About" section.
- If your project is open-source, usually, it will be ok to make LICENSE.txt
file publicly available in your repository.
- Fonts, used in Fontello, don't require a clickable link on your site.
But any kind of additional authors crediting is welcome.
================================================================================
Comments on archive content
---------------------------
- /font/* - fonts in different formats
- /css/* - different kinds of css, for all situations. Should be ok with
twitter bootstrap. Also, you can skip <i> style and assign icon classes
directly to text elements, if you don't mind about IE7.
- demo.html - demo file, to show your webfont content
- LICENSE.txt - license info about source fonts, used to build your one.
- config.json - keeps your settings. You can import it back into fontello
anytime, to continue your work
Why so many CSS files ?
-----------------------
Because we like to fit all your needs :)
- basic file, <your_font_name>.css - is usually enough, it contains @font-face
and character code definitions
- *-ie7.css - if you need IE7 support, but still don't wish to put char codes
directly into html
- *-codes.css and *-ie7-codes.css - if you like to use your own @font-face
rules, but still wish to benefit from css generation. That can be very
convenient for automated asset build systems. When you need to update font -
no need to manually edit files, just override old version with archive
content. See fontello source code for examples.
- *-embedded.css - basic css file, but with embedded WOFF font, to avoid
CORS issues in Firefox and IE9+, when fonts are hosted on the separate domain.
We strongly recommend to resolve this issue by `Access-Control-Allow-Origin`
server headers. But if you ok with dirty hack - this file is for you. Note,
that data url moved to separate @font-face to avoid problems with <IE9, when
string is too long.
- animate.css - use it to get ideas about spinner rotation animation.
Attention for server setup
--------------------------
You MUST setup server to reply with proper `mime-types` for font files -
otherwise some browsers will fail to show fonts.
Usually, `apache` already has necessary settings, but `nginx` and other
webservers should be tuned. Here is list of mime types for our file extensions:
- `application/vnd.ms-fontobject` - eot
- `application/x-font-woff` - woff
- `application/x-font-ttf` - ttf
- `image/svg+xml` - svg
{
"name": "",
"css_prefix_text": "icon-",
"css_use_suffix": false,
"hinting": true,
"units_per_em": 1000,
"ascent": 850,
"glyphs": [
{
"uid": "4c1ef492f1d2c39a2250ae457cee2a6e",
"css": "instagram",
"code": 59393,
"src": "fontawesome"
},
{
"uid": "da851b7c1f84ee83f93b29ae613558dc",
"css": "pinterest-circled",
"code": 59394,
"src": "fontawesome"
},
{
"uid": "47a1f80457068fbeab69fdb83d7d0817",
"css": "youtube-play",
"code": 59395,
"src": "fontawesome"
},
{
"uid": "12f4ece88e46abd864e40b35e05b11cd",
"css": "ok",
"code": 59396,
"src": "fontawesome"
},
{
"uid": "b72d3f8ec171a6b69b1a9e4ae1d802f4",
"css": "placeholder",
"code": 59397,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M0 0V1000H1000V0H0ZM446.7 500L75.4 871.4V128.6L446.7 500ZM128.6 75.4H871.3L500 446.7 128.6 75.4ZM500 553.3L871.4 924.6H128.6L500 553.3ZM553.3 500L924.6 128.6V871.3L553.3 500Z",
"width": 1000
},
"search": [
"placeholder"
]
},
{
"uid": "1c9e610564cab9480f991506004add73",
"css": "google",
"code": 59400,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M1253.6 282.6H1391.3C1391.3 326.1 1391.3 376.8 1391.3 420.3 1434.8 420.3 1485.5 420.3 1529 420.3V558C1485.5 558 1434.8 558 1391.3 558 1391.3 608.7 1391.3 652.2 1391.3 702.9 1347.8 702.9 1297.1 702.9 1253.6 702.9 1253.6 652.2 1253.6 608.7 1253.6 565.2 1210.1 565.2 1159.4 565.2 1115.9 565.2V427.5C1159.4 427.5 1210.1 427.5 1253.6 427.5 1253.6 376.8 1253.6 326.1 1253.6 282.6ZM0 492.8C-7.2 239.1 210.1 0 463.8 0 594.2-14.5 717.4 36.2 811.6 123.2 775.4 166.7 731.9 210.1 688.4 253.6 601.4 202.9 500 159.4 398.6 195.7 239.1 239.1 137.7 434.8 202.9 594.2 253.6 760.9 449.3 855.1 608.7 782.6 688.4 753.6 746.4 673.9 768.1 594.2 673.9 594.2 579.7 594.2 492.8 594.2 492.8 536.2 492.8 485.5 492.8 427.5 644.9 427.5 804.3 427.5 956.5 427.5 963.8 565.2 949.3 710.1 855.1 826.1 731.9 985.5 514.5 1029 333.3 971 137.7 898.6-7.2 695.7 0 492.8Z",
"width": 1529
},
"search": [
"google"
]
},
{
"uid": "fc467ee2ff41e732b13c167915bfdd77",
"css": "facebook",
"code": 59401,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M514.3 178.6H364.3C350 178.6 328.6 200 328.6 235.7V350H514.3V514.3H328.6V1000H157.1V514.3H0V350H157.1V250C157.1 114.3 242.9 0 364.3 0H514.3V178.6Z",
"width": 514
},
"search": [
"facebook"
]
},
{
"uid": "36a4849731d3771b694d29e7a684ae43",
"css": "twitter",
"code": 59402,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M1063.8 156C1113.5 127.7 1156 78 1170.2 14.2 1120.6 42.6 1070.9 63.8 1014.2 78 971.6 28.4 907.8 0 829.8 0 695 0 581.6 113.5 581.6 255.3 581.6 276.6 581.6 297.9 588.7 312.1 383 305 198.6 198.6 78 49.6 56.7 85.1 42.6 127.7 42.6 177.3 42.6 262.4 85.1 340.4 156 390.1 113.5 390.1 78 375.9 42.6 361.7L42.6 361.7C42.6 482.3 127.7 588.7 241.1 609.9 219.9 617 198.6 617 177.3 617 163.1 617 148.9 617 127.7 609.9 156 709.2 248.2 780.1 361.7 787.2 276.6 858.2 170.2 893.6 56.7 893.6 35.5 893.6 14.2 893.6 0 886.5 106.4 957.4 241.1 1000 383 1000 836.9 1000 1085.1 617 1085.1 283.7 1085.1 269.5 1085.1 262.4 1085.1 248.2 1134.8 212.8 1177.3 170.2 1205.7 120.6 1156 134.8 1113.5 141.8 1063.8 156Z",
"width": 1206
},
"search": [
"twitter"
]
},
{
"uid": "e6a8d325541b11d9b66eb62928a89484",
"css": "linkedin",
"code": 59403,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M225.2 108.1C225.2 166.7 180.2 216.2 121.6 216.2 117.1 216.2 117.1 216.2 112.6 216.2 54.1 220.7 4.5 175.7 0 117.1 0 112.6 0 112.6 0 108.1 0 49.5 45 0 103.6 0 108.1 0 108.1 0 112.6 0 171.2-4.5 220.7 40.5 225.2 99.1 225.2 103.6 225.2 108.1 225.2 108.1ZM4.5 301.8H220.7V1000H4.5V301.8ZM346.8 527C346.8 441.4 342.3 364.9 342.3 301.8H527L536 400.9H540.5C585.6 328.8 666.7 288.3 752.3 288.3 891.9 288.3 1000 382.9 1000 590.1V1004.5H788.3V617.1C788.3 527 756.8 464 680.2 464 630.6 464 585.6 500 572.1 545 567.6 563.1 563.1 581.1 563.1 599.1V1004.5H346.8V527L346.8 527Z",
"width": 1000
},
"search": [
"linkedin"
]
},
{
"uid": "bca6a96c145577fe8a123e2d2d199aeb",
"css": "quotes",
"code": 59406,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M485.4 131.4C354 226.3 240.9 401.5 222.6 543.8 226.3 543.8 255.5 536.5 277.4 536.5 394.2 536.5 478.1 635 478.1 762.8 478.1 894.2 379.6 1000 255.5 1000 120.4 1000 0 879.6 0 664.2 0 394.2 146 142.3 335.8 0L485.4 131.4M938 536.5C919.7 536.5 890.5 543.8 883.2 543.8 897.8 401.5 1014.6 226.3 1146 131.4L992.7 0C802.9 142.3 656.9 394.2 656.9 664.2 656.9 879.6 777.4 1000 912.4 1000 1036.5 1000 1135 894.2 1135 762.8 1138.7 631.4 1051.1 536.5 938 536.5",
"width": 1146
},
"search": [
"quotes"
]
},
{
"uid": "379d3fab989d438c459b77465c358367",
"css": "arrow-carousel",
"code": 59399,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M503.4 969L24.1 489.7 503.4 10.3 551.7 58.6 120.7 489.7 551.7 920.7 503.4 969Z",
"width": 552
},
"search": [
"arrow-carousel"
]
},
{
"uid": "83d98b883f3455f34a7982abc438271b",
"css": "arrow-next",
"code": 59404,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M1250 21.4L1150 121.4 1457.1 428.6H42.9V571.4H1464.3L1157.1 878.6 1264.3 978.6 1735.7 507.1 1250 21.4Z",
"width": 1786
},
"search": [
"arrow-next"
]
},
{
"uid": "c25fc6cf0ae1165f0a1ab7d785ce0126",
"css": "speech-open",
"code": 59392,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M466.4 580C500.2 705.9 416.5 837.6 287.7 861.2 167.3 883.4 56.5 815 21 696.8 5.8 645.9-2.6 593.9 0.7 540.9 11.5 366.5 92.6 234.1 243.6 144.3 256.1 136.9 268.8 132.1 283.2 135.3 301.5 139.5 313.6 150.9 317.8 169.1 322.2 188.3 316.4 204.8 300.1 216.2 278.6 231.3 258.2 247.5 240.4 266.9 201 309.6 175.1 359.4 162.3 415.8 161.8 417.8 161.8 419.9 161.4 423.3 188.1 413.4 214.2 408.4 241.2 408.3 348.8 408.2 438.6 476.8 466.4 580ZM903.1 451.1C858.7 418 807.3 404.3 751.8 409.4 730.4 411.4 709.4 416.8 687.9 420.6 688 419.7 688.1 417.1 688.6 414.7 701 360.7 725.5 312.9 762.4 271.4 780.9 250.4 802.1 232.7 825.3 217 842.4 205.4 849.2 185.1 843.1 165.7 837.2 146.7 820.1 134.9 799.4 134.4 786.2 134.1 775.9 140.9 765.3 146.9 571.9 257.1 481.3 490.5 548.4 701.7 585.6 819.1 702.3 884.1 812.5 861.1 910 840.8 973.1 781 993.9 684.6 1014.6 589.2 982 509.8 903.1 451.1Z",
"width": 1000
},
"search": [
"speech-open"
]
},
{
"uid": "64e549b016f18ec0b3fb0ead89ea3230",
"css": "arrow-back",
"code": 59398,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M1731.8 545.5H204.5L577.3 918.2 513.6 981.8 31.8 500 513.6 18.2 577.3 81.8 204.5 454.5H1727.3V545.5Z",
"width": 1773
},
"search": [
"arrow-back"
]
},
{
"uid": "269532e2f96ef2bc24a7eaaba657dbe7",
"css": "quote-large",
"code": 59405,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M283.3 966.7C400 966.7 494.4 866.7 494.4 750 494.4 627.8 400 533.3 283.3 533.3 72.2 533.3 211.1 111.1 494.4 111.1V0C-11.1 0-211.1 966.7 283.3 966.7M900 966.7C1016.7 966.7 1111.1 866.7 1111.1 750 1111.1 627.8 1016.7 533.3 900 533.3 688.9 533.3 827.8 111.1 1111.1 111.1V0C605.6 0 405.6 966.7 900 966.7",
"width": 1111
},
"search": [
"quote"
]
},
{
"uid": "f60800d59e50a3a9824ff9db89933da4",
"css": "location",
"code": 59407,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M318.2 990.9L281.8 945.5C272.7 931.8 0 590.9 0 318.2 0 140.9 140.9 0 318.2 0 495.5 0 636.4 140.9 636.4 318.2 636.4 590.9 363.6 931.8 354.5 945.5L318.2 990.9ZM318.2 90.9C190.9 90.9 90.9 190.9 90.9 318.2 90.9 504.5 245.5 740.9 318.2 840.9 390.9 740.9 545.5 504.5 545.5 318.2 545.5 190.9 445.5 90.9 318.2 90.9ZM318.2 513.6C213.6 513.6 127.3 427.3 127.3 322.7S213.6 127.3 318.2 127.3 509.1 213.6 509.1 318.2 422.7 513.6 318.2 513.6ZM318.2 218.2C263.6 218.2 218.2 263.6 218.2 318.2 218.2 372.7 263.6 418.2 318.2 418.2S418.2 372.7 418.2 318.2C418.2 263.6 372.7 218.2 318.2 218.2Z",
"width": 636
},
"search": [
"location"
]
},
{
"uid": "6638ebe5820d029b4d25cb52019a664c",
"css": "download",
"code": 59408,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M584.4 593.8L356.2 821.9 134.4 600 178.1 556.3 328.1 706.3V18.8H390.6V696.9L540.6 546.9 584.4 593.8ZM671.9 937.5H15.6V1000H671.9V937.5Z",
"width": 688
},
"search": [
"download"
]
},
{
"uid": "f1a46e01bd762f7d00719323a151a162",
"css": "building",
"code": 59409,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M475 235C475 265 455 285 425 285H375C345 285 325 265 325 235S345 185 375 185H425C455 185 475 205 475 235ZM635 185H585C555 185 535 205 535 235S555 285 585 285H635C665 285 685 265 685 235S665 185 635 185ZM425 355H375C345 355 325 375 325 405S345 455 375 455H425C455 455 475 435 475 405S455 355 425 355ZM635 355H585C555 355 535 375 535 405S555 455 585 455H635C665 455 685 435 685 405S665 355 635 355ZM425 530H375C345 530 325 550 325 580S345 630 375 630H425C455 630 475 610 475 580S455 530 425 530ZM635 530H585C555 530 535 550 535 580S555 630 585 630H635C665 630 685 610 685 580S665 530 635 530ZM1015 950C1015 980 995 1000 965 1000H890 635 380 125 50C20 1000 0 980 0 950S20 900 50 900H125V150C125 70 190 0 270 0H740C820 0 885 65 885 150V900H960C990 900 1015 925 1015 950ZM535 900V795H480V900H535ZM785 900V150C785 125 765 100 740 100H270C245 100 225 120 225 150V900H380V695H635V900H785Z",
"width": 1015
},
"search": [
"building"
]
}
]
}
\ No newline at end of file
/*
Animation example, for spinners
*/
.animate-spin {
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
display: inline-block;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-ms-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
.icon-speech-open:before { content: '\e800'; } /* '' */
.icon-instagram:before { content: '\e801'; } /* '' */
.icon-pinterest-circled:before { content: '\e802'; } /* '' */
.icon-youtube-play:before { content: '\e803'; } /* '' */
.icon-ok:before { content: '\e804'; } /* '' */
.icon-placeholder:before { content: '\e805'; } /* '' */
.icon-arrow-back:before { content: '\e806'; } /* '' */
.icon-arrow-carousel:before { content: '\e807'; } /* '' */
.icon-google:before { content: '\e808'; } /* '' */
.icon-facebook:before { content: '\e809'; } /* '' */
.icon-twitter:before { content: '\e80a'; } /* '' */
.icon-linkedin:before { content: '\e80b'; } /* '' */
.icon-arrow-next:before { content: '\e80c'; } /* '' */
.icon-quote-large:before { content: '\e80d'; } /* '' */
.icon-quotes:before { content: '\e80e'; } /* '' */
.icon-location:before { content: '\e80f'; } /* '' */
.icon-download:before { content: '\e810'; } /* '' */
.icon-building:before { content: '\e811'; } /* '' */
\ No newline at end of file
This diff is collapsed.
.icon-speech-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.icon-instagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.icon-pinterest-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.icon-youtube-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.icon-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.icon-placeholder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.icon-arrow-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.icon-arrow-carousel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.icon-google { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
.icon-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.icon-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.icon-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.icon-arrow-next { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.icon-quote-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.icon-quotes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.icon-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.icon-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.icon-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
\ No newline at end of file
[class^="icon-"], [class*=" icon-"] {
font-family: 'fontello';
font-style: normal;
font-weight: normal;
/* fix buttons height */
line-height: 1em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
}
.icon-speech-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.icon-instagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.icon-pinterest-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.icon-youtube-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.icon-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.icon-placeholder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.icon-arrow-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.icon-arrow-carousel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.icon-google { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
.icon-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.icon-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.icon-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.icon-arrow-next { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.icon-quote-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.icon-quotes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.icon-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.icon-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.icon-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
\ No newline at end of file
@font-face {
font-family: 'fontello';
src: url('../font/fontello.eot?28328512');
src: url('../font/fontello.eot?28328512#iefix') format('embedded-opentype'),
url('../font/fontello.woff2?28328512') format('woff2'),
url('../font/fontello.woff?28328512') format('woff'),
url('../font/fontello.ttf?28328512') format('truetype'),
url('../font/fontello.svg?28328512#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'fontello';
src: url('../font/fontello.svg?28328512#fontello') format('svg');
}
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-speech-open:before { content: '\e800'; } /* '' */
.icon-instagram:before { content: '\e801'; } /* '' */
.icon-pinterest-circled:before { content: '\e802'; } /* '' */
.icon-youtube-play:before { content: '\e803'; } /* '' */
.icon-ok:before { content: '\e804'; } /* '' */
.icon-placeholder:before { content: '\e805'; } /* '' */
.icon-arrow-back:before { content: '\e806'; } /* '' */
.icon-arrow-carousel:before { content: '\e807'; } /* '' */
.icon-google:before { content: '\e808'; } /* '' */
.icon-facebook:before { content: '\e809'; } /* '' */
.icon-twitter:before { content: '\e80a'; } /* '' */
.icon-linkedin:before { content: '\e80b'; } /* '' */
.icon-arrow-next:before { content: '\e80c'; } /* '' */
.icon-quote-large:before { content: '\e80d'; } /* '' */
.icon-quotes:before { content: '\e80e'; } /* '' */
.icon-location:before { content: '\e80f'; } /* '' */
.icon-download:before { content: '\e810'; } /* '' */
.icon-building:before { content: '\e811'; } /* '' */
\ No newline at end of file
<!DOCTYPE html>
<html>
<head><!--[if lt IE 9]><script language="javascript" type="text/javascript" src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<meta charset="UTF-8"><style>/*
* Bootstrap v2.2.1
*
* Copyright 2012 Twitter, Inc
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
*/
.clearfix {
*zoom: 1;
}
.clearfix:before,
.clearfix:after {
display: table;
content: "";
line-height: 0;
}
.clearfix:after {
clear: both;
}
html {
font-size: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
a:focus {
outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
a:hover,
a:active {
outline: 0;
}
button,
input,
select,
textarea {
margin: 0;
font-size: 100%;
vertical-align: middle;
}
button,
input {
*overflow: visible;
line-height: normal;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
padding: 0;
border: 0;
}
body {
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 20px;
color: #333;
background-color: #fff;
}
a {
color: #08c;
text-decoration: none;
}
a:hover {
color: #005580;
text-decoration: underline;
}
.row {
margin-left: -20px;
*zoom: 1;
}
.row:before,
.row:after {
display: table;
content: "";
line-height: 0;
}
.row:after {
clear: both;
}
[class*="span"] {
float: left;
min-height: 1px;
margin-left: 20px;
}
.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
width: 940px;
}
.span12 {
width: 940px;
}
.span11 {
width: 860px;
}
.span10 {
width: 780px;
}
.span9 {
width: 700px;
}
.span8 {
width: 620px;
}
.span7 {
width: 540px;
}
.span6 {
width: 460px;
}
.span5 {
width: 380px;
}
.span4 {
width: 300px;
}
.span3 {
width: 220px;
}
.span2 {
width: 140px;
}
.span1 {
width: 60px;
}
[class*="span"].pull-right,
.row-fluid [class*="span"].pull-right {
float: right;
}
.container {
margin-right: auto;
margin-left: auto;
*zoom: 1;
}
.container:before,
.container:after {
display: table;
content: "";
line-height: 0;
}
.container:after {
clear: both;
}
p {
margin: 0 0 10px;
}
.lead {
margin-bottom: 20px;
font-size: 21px;
font-weight: 200;
line-height: 30px;
}
small {
font-size: 85%;
}
h1 {
margin: 10px 0;
font-family: inherit;
font-weight: bold;
line-height: 20px;
color: inherit;
text-rendering: optimizelegibility;
}
h1 small {
font-weight: normal;
line-height: 1;
color: #999;
}
h1 {
line-height: 40px;
}
h1 {
font-size: 38.5px;
}
h1 small {
font-size: 24.5px;
}
body {
margin-top: 90px;
}
.header {
position: fixed;
top: 0;
left: 50%;
margin-left: -480px;
background-color: #fff;
border-bottom: 1px solid #ddd;
padding-top: 10px;
z-index: 10;
}
.footer {
color: #ddd;
font-size: 12px;
text-align: center;
margin-top: 20px;
}
.footer a {
color: #ccc;
text-decoration: underline;
}
.the-icons {
font-size: 14px;
line-height: 24px;
}
.switch {
position: absolute;
right: 0;
bottom: 10px;
color: #666;
}
.switch input {
margin-right: 0.3em;
}
.codesOn .i-name {
display: none;
}
.codesOn .i-code {
display: inline;
}
.i-code {
display: none;
}
@font-face {
font-family: 'fontello';
src: url('./font/fontello.eot?73107748');
src: url('./font/fontello.eot?73107748#iefix') format('embedded-opentype'),
url('./font/fontello.woff?73107748') format('woff'),
url('./font/fontello.ttf?73107748') format('truetype'),
url('./font/fontello.svg?73107748#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
.demo-icon
{
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* You can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
</style>
<link rel="stylesheet" href="css/animation.css"><!--[if IE 7]><link rel="stylesheet" href="css/fontello-ie7.css"><![endif]-->
<script>
function toggleCodes(on) {
var obj = document.getElementById('icons');
if (on) {
obj.className += ' codesOn';
} else {
obj.className = obj.className.replace(' codesOn', '');
}
}
</script>
</head>
<body>
<div class="container header">
<h1>
fontello
<small>font demo</small>
</h1>
<label class="switch">
<input type="checkbox" onclick="toggleCodes(this.checked)">show codes
</label>
</div>
<div id="icons" class="container">
<div class="row">
<div title="Code: 0xe800" class="the-icons span3"><i class="demo-icon icon-speech-open">&#xe800;</i> <span class="i-name">icon-speech-open</span><span class="i-code">0xe800</span></div>
<div title="Code: 0xe801" class="the-icons span3"><i class="demo-icon icon-instagram">&#xe801;</i> <span class="i-name">icon-instagram</span><span class="i-code">0xe801</span></div>
<div title="Code: 0xe802" class="the-icons span3"><i class="demo-icon icon-pinterest-circled">&#xe802;</i> <span class="i-name">icon-pinterest-circled</span><span class="i-code">0xe802</span></div>
<div title="Code: 0xe803" class="the-icons span3"><i class="demo-icon icon-youtube-play">&#xe803;</i> <span class="i-name">icon-youtube-play</span><span class="i-code">0xe803</span></div>
</div>
<div class="row">
<div title="Code: 0xe804" class="the-icons span3"><i class="demo-icon icon-ok">&#xe804;</i> <span class="i-name">icon-ok</span><span class="i-code">0xe804</span></div>
<div title="Code: 0xe805" class="the-icons span3"><i class="demo-icon icon-placeholder">&#xe805;</i> <span class="i-name">icon-placeholder</span><span class="i-code">0xe805</span></div>
<div title="Code: 0xe806" class="the-icons span3"><i class="demo-icon icon-arrow-back">&#xe806;</i> <span class="i-name">icon-arrow-back</span><span class="i-code">0xe806</span></div>
<div title="Code: 0xe807" class="the-icons span3"><i class="demo-icon icon-arrow-carousel">&#xe807;</i> <span class="i-name">icon-arrow-carousel</span><span class="i-code">0xe807</span></div>
</div>
<div class="row">
<div title="Code: 0xe808" class="the-icons span3"><i class="demo-icon icon-google">&#xe808;</i> <span class="i-name">icon-google</span><span class="i-code">0xe808</span></div>
<div title="Code: 0xe809" class="the-icons span3"><i class="demo-icon icon-facebook">&#xe809;</i> <span class="i-name">icon-facebook</span><span class="i-code">0xe809</span></div>
<div title="Code: 0xe80a" class="the-icons span3"><i class="demo-icon icon-twitter">&#xe80a;</i> <span class="i-name">icon-twitter</span><span class="i-code">0xe80a</span></div>
<div title="Code: 0xe80b" class="the-icons span3"><i class="demo-icon icon-linkedin">&#xe80b;</i> <span class="i-name">icon-linkedin</span><span class="i-code">0xe80b</span></div>
</div>
<div class="row">
<div title="Code: 0xe80c" class="the-icons span3"><i class="demo-icon icon-arrow-next">&#xe80c;</i> <span class="i-name">icon-arrow-next</span><span class="i-code">0xe80c</span></div>
<div title="Code: 0xe80d" class="the-icons span3"><i class="demo-icon icon-quote-large">&#xe80d;</i> <span class="i-name">icon-quote-large</span><span class="i-code">0xe80d</span></div>
<div title="Code: 0xe80e" class="the-icons span3"><i class="demo-icon icon-quotes">&#xe80e;</i> <span class="i-name">icon-quotes</span><span class="i-code">0xe80e</span></div>
<div title="Code: 0xe80f" class="the-icons span3"><i class="demo-icon icon-location">&#xe80f;</i> <span class="i-name">icon-location</span><span class="i-code">0xe80f</span></div>
</div>
<div class="row">
<div title="Code: 0xe810" class="the-icons span3"><i class="demo-icon icon-download">&#xe810;</i> <span class="i-name">icon-download</span><span class="i-code">0xe810</span></div>
<div title="Code: 0xe811" class="the-icons span3"><i class="demo-icon icon-building">&#xe811;</i> <span class="i-name">icon-building</span><span class="i-code">0xe811</span></div>
</div>
</div>
<div class="container footer">Generated by <a href="http://fontello.com">fontello.com</a></div>
</body>
</html>
\ No newline at end of file
File added
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Copyright (C) 2016 by original authors @ fontello.com</metadata>
<defs>
<font id="fontello" horiz-adv-x="1000" >
<font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
<missing-glyph horiz-adv-x="1000" />
<glyph glyph-name="speech-open" unicode="&#xe800;" d="M466 270c34-126-49-258-178-281-121-22-231 46-267 164-15 51-24 103-20 156 11 175 92 307 243 397 12 7 25 12 39 9 19-4 31-16 35-34 4-19-2-36-18-47-21-15-42-31-60-51-39-43-65-92-78-149 0-2 0-4-1-7 27 10 53 15 80 15 108 0 198-69 225-172z m437 129c-44 33-96 47-151 42-22-2-43-8-64-12 0 1 0 4 1 6 12 54 37 102 73 144 19 21 40 38 63 54 17 12 24 32 18 51-6 19-23 31-44 32-13 0-23-7-34-13-193-110-284-343-217-555 38-117 154-182 265-159 97 20 160 80 181 176 21 96-12 175-91 234z" horiz-adv-x="1000" />
<glyph glyph-name="instagram" unicode="&#xe801;" d="M760 54v362h-75q11-35 11-73 0-71-36-130t-97-94-134-35q-110 0-188 76t-78 183q0 38 11 73h-79v-362q0-14 10-24t25-10h596q14 0 24 10t10 24z m-158 298q0 69-51 118t-122 49q-71 0-121-49t-51-118 51-118 121-49q72 0 122 49t51 118z m158 201v92q0 15-11 27t-27 11h-98q-16 0-27-11t-11-27v-92q0-17 11-28t27-11h98q16 0 27 11t11 28z m97 116v-638q0-45-32-77t-78-33h-637q-45 0-78 33t-32 77v638q0 45 32 77t78 33h637q45 0 78-33t32-77z" horiz-adv-x="857.1" />
<glyph glyph-name="pinterest-circled" unicode="&#xe802;" d="M857 350q0-117-57-215t-156-156-215-58q-62 0-122 18 33 52 43 92 5 19 31 118 11-22 40-38t64-16q67 0 120 38t83 105 29 151q0 64-34 119t-96 91-142 36q-59 0-110-17t-86-43-61-61-37-72-12-75q0-58 22-102t66-62q16-7 21 11 1 4 4 17t5 17q3 13-6 24-29 34-29 84 0 84 58 145t153 61q84 0 131-46t48-119q0-95-39-161t-98-67q-34 0-54 24t-13 59q4 19 15 52t16 57 7 43q0 27-15 46t-43 18q-35 0-59-31t-24-80q0-40 14-68l-55-233q-10-39-7-99-115 51-186 157t-71 236q0 117 58 215t155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="youtube-play" unicode="&#xe803;" d="M714 350q0 21-16 30l-286 179q-17 11-36 1-19-10-19-31v-358q0-21 19-31 9-4 17-4 11 0 19 5l286 179q16 9 16 30z m286 0q0-54-1-84t-4-76-13-82q-9-41-38-69t-70-32q-123-14-374-14t-374 14q-40 4-70 32t-39 69q-7 36-12 82t-4 76-1 84 1 84 4 76 13 82q9 41 38 69t70 32q123 14 374 14t374-14q40-4 70-32t39-69q8-36 12-82t4-76 1-84z" horiz-adv-x="1000" />
<glyph glyph-name="ok" unicode="&#xe804;" d="M932 534q0-22-15-38l-404-404-76-76q-16-15-38-15t-38 15l-76 76-202 202q-15 16-15 38t15 38l76 76q16 16 38 16t38-16l164-165 366 367q16 16 38 16t38-16l76-76q15-16 15-38z" horiz-adv-x="1000" />
<glyph glyph-name="placeholder" unicode="&#xe805;" d="M0 850v-1000h1000v1000h-1000z m447-500l-372-371v742l372-371z m-318 425h742l-371-372-371 372z m371-478l371-372h-742l371 372z m53 53l372 371v-742l-372 371z" horiz-adv-x="1000" />
<glyph glyph-name="arrow-back" unicode="&#xe806;" d="M1732 305h-1527l372-373-63-64-482 482 482 482 63-64-372-372h1522v-91z" horiz-adv-x="1773" />
<glyph glyph-name="arrow-carousel" unicode="&#xe807;" d="M503-119l-479 479 479 480 49-49-431-431 431-431-49-48z" horiz-adv-x="552" />
<glyph glyph-name="google" unicode="&#xe808;" d="M1254 567h137c0-43 0-94 0-137 44 0 95 0 138 0v-138c-43 0-94 0-138 0 0-51 0-94 0-145-43 0-94 0-137 0 0 51 0 94 0 138-44 0-95 0-138 0v138c43 0 94 0 138 0 0 50 0 101 0 144z m-1254-210c-7 254 210 493 464 493 130 15 253-36 348-123-37-44-80-87-124-131-87 51-188 95-289 58-160-43-261-239-196-398 51-167 246-261 406-189 79 29 137 109 159 189-94 0-188 0-275 0 0 58 0 109 0 167 152 0 311 0 464 0 7-138-8-283-102-399-123-160-340-203-522-145-195 72-340 275-333 478z" horiz-adv-x="1529" />
<glyph glyph-name="facebook" unicode="&#xe809;" d="M514 671h-150c-14 0-35-21-35-57v-114h185v-164h-185v-486h-172v486h-157v164h157v100c0 136 86 250 207 250h150v-179z" horiz-adv-x="514" />
<glyph glyph-name="twitter" unicode="&#xe80a;" d="M1064 694c50 28 92 78 106 142-49-29-99-50-156-64-42 50-106 78-184 78-135 0-248-113-248-255 0-22 0-43 7-57-206 7-390 113-511 262-21-35-35-78-35-127 0-85 42-163 113-213-42 0-78 14-113 28l0 0c0-120 85-227 198-248-21-7-42-7-64-7-14 0-28 0-49 7 28-99 120-170 234-177-85-71-192-107-305-107-21 0-43 0-57 7 106-70 241-113 383-113 454 0 702 383 702 716 0 15 0 22 0 36 50 35 92 78 121 127-50-14-92-21-142-35z" horiz-adv-x="1206" />
<glyph glyph-name="linkedin" unicode="&#xe80b;" d="M225 742c0-59-45-108-103-108-5 0-5 0-9 0-59-5-108 40-113 99 0 4 0 4 0 9 0 59 45 108 104 108 4 0 4 0 9 0 58 5 108-40 112-99 0-5 0-9 0-9z m-220-194h216v-698h-216v698z m342-225c0 86-5 162-5 225h185l9-99h5c45 72 126 113 211 113 140 0 248-95 248-302v-415h-212v388c0 90-31 153-108 153-49 0-94-36-108-81-4-18-9-36-9-54v-406h-216v478l0 0z" horiz-adv-x="1000" />
<glyph glyph-name="arrow-next" unicode="&#xe80c;" d="M1250 829l-100-100 307-308h-1414v-142h1421l-307-308 107-100 472 472-486 486z" horiz-adv-x="1786" />
<glyph glyph-name="quote-large" unicode="&#xe80d;" d="M283-117c117 0 211 100 211 217 0 122-94 217-211 217-211 0-72 422 211 422v111c-505 0-705-967-211-967m617 0c117 0 211 100 211 217 0 122-94 217-211 217-211 0-72 422 211 422v111c-505 0-705-967-211-967" horiz-adv-x="1111" />
<glyph glyph-name="quotes" unicode="&#xe80e;" d="M485 719c-131-95-244-270-262-413 3 0 33 8 54 8 117 0 201-99 201-227 0-131-98-237-222-237-136 0-256 120-256 336 0 270 146 522 336 664l149-131m453-405c-18 0-47-8-55-8 15 143 132 318 263 413l-153 131c-190-142-336-394-336-664 0-216 120-336 255-336 125 0 223 106 223 237 4 132-84 227-197 227" horiz-adv-x="1146" />
<glyph glyph-name="location" unicode="&#xe80f;" d="M318-141l-36 45c-9 14-282 355-282 628 0 177 141 318 318 318 178 0 318-141 318-318 0-273-272-614-281-628l-37-45z m0 900c-127 0-227-100-227-227 0-186 155-423 227-523 73 100 228 337 228 523 0 127-100 227-228 227z m0-423c-104 0-191 87-191 191s87 196 191 196 191-87 191-191-86-196-191-196z m0 296c-54 0-100-46-100-100 0-55 46-100 100-100s100 45 100 100c0 54-45 100-100 100z" horiz-adv-x="636" />
<glyph glyph-name="download" unicode="&#xe810;" d="M584 256l-228-228-222 222 44 44 150-150v687h63v-678l150 150 43-47z m88-344h-656v-62h656v62z" horiz-adv-x="688" />
<glyph glyph-name="building" unicode="&#xe811;" d="M475 615c0-30-20-50-50-50h-50c-30 0-50 20-50 50s20 50 50 50h50c30 0 50-20 50-50z m160 50h-50c-30 0-50-20-50-50s20-50 50-50h50c30 0 50 20 50 50s-20 50-50 50z m-210-170h-50c-30 0-50-20-50-50s20-50 50-50h50c30 0 50 20 50 50s-20 50-50 50z m210 0h-50c-30 0-50-20-50-50s20-50 50-50h50c30 0 50 20 50 50s-20 50-50 50z m-210-175h-50c-30 0-50-20-50-50s20-50 50-50h50c30 0 50 20 50 50s-20 50-50 50z m210 0h-50c-30 0-50-20-50-50s20-50 50-50h50c30 0 50 20 50 50s-20 50-50 50z m380-420c0-30-20-50-50-50h-75-255-255-255-75c-30 0-50 20-50 50s20 50 50 50h75v750c0 80 65 150 145 150h470c80 0 145-65 145-150v-750h75c30 0 55-25 55-50z m-480 50v105h-55v-105h55z m250 0v750c0 25-20 50-45 50h-470c-25 0-45-20-45-50v-750h155v205h255v-205h150z" horiz-adv-x="1015" />
</font>
</defs>
</svg>
\ No newline at end of file
File added
File added
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment