add customer template
13
customer/app/.editorconfig
Normal file
@ -0,0 +1,13 @@
|
||||
# Editor configuration, see https://editorconfig.org
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.md]
|
||||
max_line_length = off
|
||||
trim_trailing_whitespace = false
|
||||
46
customer/app/.gitignore
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
||||
|
||||
# compiled output
|
||||
/dist
|
||||
/tmp
|
||||
/out-tsc
|
||||
# Only exists if Bazel was run
|
||||
/bazel-out
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
|
||||
# profiling files
|
||||
chrome-profiler-events.json
|
||||
speed-measure-plugin.json
|
||||
|
||||
# IDEs and editors
|
||||
/.idea
|
||||
.project
|
||||
.classpath
|
||||
.c9/
|
||||
*.launch
|
||||
.settings/
|
||||
*.sublime-workspace
|
||||
|
||||
# IDE - VSCode
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
.history/*
|
||||
|
||||
# misc
|
||||
/.sass-cache
|
||||
/connect.lock
|
||||
/coverage
|
||||
/libpeerconnection.log
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
testem.log
|
||||
/typings
|
||||
|
||||
# System Files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
27
customer/app/README.md
Normal file
@ -0,0 +1,27 @@
|
||||
# App
|
||||
|
||||
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.0.6.
|
||||
|
||||
## Development server
|
||||
|
||||
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
|
||||
|
||||
## Code scaffolding
|
||||
|
||||
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
|
||||
|
||||
## Build
|
||||
|
||||
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
|
||||
|
||||
## Running unit tests
|
||||
|
||||
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
||||
|
||||
## Running end-to-end tests
|
||||
|
||||
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
|
||||
|
||||
## Further help
|
||||
|
||||
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
|
||||
124
customer/app/angular.json
Normal file
@ -0,0 +1,124 @@
|
||||
{
|
||||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
||||
"version": 1,
|
||||
"newProjectRoot": "projects",
|
||||
"projects": {
|
||||
"app": {
|
||||
"projectType": "application",
|
||||
"schematics": {
|
||||
"@schematics/angular:component": {
|
||||
"style": "scss"
|
||||
}
|
||||
},
|
||||
"root": "",
|
||||
"sourceRoot": "src",
|
||||
"prefix": "app",
|
||||
"architect": {
|
||||
"build": {
|
||||
"builder": "@angular-devkit/build-angular:browser",
|
||||
"options": {
|
||||
"outputPath": "dist/app",
|
||||
"index": "src/index.html",
|
||||
"main": "src/main.ts",
|
||||
"polyfills": "src/polyfills.ts",
|
||||
"tsConfig": "tsconfig.app.json",
|
||||
"aot": false,
|
||||
"assets": [
|
||||
"src/favicon.ico",
|
||||
"src/assets"
|
||||
],
|
||||
"styles": [
|
||||
"src/styles.scss"
|
||||
],
|
||||
"scripts": []
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"fileReplacements": [
|
||||
{
|
||||
"replace": "src/environments/environment.ts",
|
||||
"with": "src/environments/environment.prod.ts"
|
||||
}
|
||||
],
|
||||
"optimization": true,
|
||||
"outputHashing": "all",
|
||||
"sourceMap": false,
|
||||
"extractCss": true,
|
||||
"namedChunks": false,
|
||||
"aot": true,
|
||||
"extractLicenses": true,
|
||||
"vendorChunk": false,
|
||||
"buildOptimizer": true,
|
||||
"budgets": [
|
||||
{
|
||||
"type": "initial",
|
||||
"maximumWarning": "2mb",
|
||||
"maximumError": "5mb"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"serve": {
|
||||
"builder": "@angular-devkit/build-angular:dev-server",
|
||||
"options": {
|
||||
"browserTarget": "app:build"
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"browserTarget": "app:build:production"
|
||||
}
|
||||
}
|
||||
},
|
||||
"extract-i18n": {
|
||||
"builder": "@angular-devkit/build-angular:extract-i18n",
|
||||
"options": {
|
||||
"browserTarget": "app:build"
|
||||
}
|
||||
},
|
||||
"test": {
|
||||
"builder": "@angular-devkit/build-angular:karma",
|
||||
"options": {
|
||||
"main": "src/test.ts",
|
||||
"polyfills": "src/polyfills.ts",
|
||||
"tsConfig": "tsconfig.spec.json",
|
||||
"karmaConfig": "karma.conf.js",
|
||||
"assets": [
|
||||
"src/favicon.ico",
|
||||
"src/assets"
|
||||
],
|
||||
"styles": [
|
||||
"src/styles.scss"
|
||||
],
|
||||
"scripts": []
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
"builder": "@angular-devkit/build-angular:tslint",
|
||||
"options": {
|
||||
"tsConfig": [
|
||||
"tsconfig.app.json",
|
||||
"tsconfig.spec.json",
|
||||
"e2e/tsconfig.json"
|
||||
],
|
||||
"exclude": [
|
||||
"**/node_modules/**"
|
||||
]
|
||||
}
|
||||
},
|
||||
"e2e": {
|
||||
"builder": "@angular-devkit/build-angular:protractor",
|
||||
"options": {
|
||||
"protractorConfig": "e2e/protractor.conf.js",
|
||||
"devServerTarget": "app:serve"
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"devServerTarget": "app:serve:production"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}},
|
||||
"defaultProject": "app"
|
||||
}
|
||||
12
customer/app/browserslist
Normal file
@ -0,0 +1,12 @@
|
||||
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
|
||||
# For additional information regarding the format and rule options, please see:
|
||||
# https://github.com/browserslist/browserslist#queries
|
||||
|
||||
# You can see what browsers were selected by your queries by running:
|
||||
# npx browserslist
|
||||
|
||||
> 0.5%
|
||||
last 2 versions
|
||||
Firefox ESR
|
||||
not dead
|
||||
not IE 9-11 # For IE 9-11 support, remove 'not'.
|
||||
32
customer/app/e2e/protractor.conf.js
Normal file
@ -0,0 +1,32 @@
|
||||
// @ts-check
|
||||
// Protractor configuration file, see link for more information
|
||||
// https://github.com/angular/protractor/blob/master/lib/config.ts
|
||||
|
||||
const { SpecReporter } = require('jasmine-spec-reporter');
|
||||
|
||||
/**
|
||||
* @type { import("protractor").Config }
|
||||
*/
|
||||
exports.config = {
|
||||
allScriptsTimeout: 11000,
|
||||
specs: [
|
||||
'./src/**/*.e2e-spec.ts'
|
||||
],
|
||||
capabilities: {
|
||||
'browserName': 'chrome'
|
||||
},
|
||||
directConnect: true,
|
||||
baseUrl: 'http://localhost:4200/',
|
||||
framework: 'jasmine',
|
||||
jasmineNodeOpts: {
|
||||
showColors: true,
|
||||
defaultTimeoutInterval: 30000,
|
||||
print: function() {}
|
||||
},
|
||||
onPrepare() {
|
||||
require('ts-node').register({
|
||||
project: require('path').join(__dirname, './tsconfig.json')
|
||||
});
|
||||
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
|
||||
}
|
||||
};
|
||||
23
customer/app/e2e/src/app.e2e-spec.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import { AppPage } from './app.po';
|
||||
import { browser, logging } from 'protractor';
|
||||
|
||||
describe('workspace-project App', () => {
|
||||
let page: AppPage;
|
||||
|
||||
beforeEach(() => {
|
||||
page = new AppPage();
|
||||
});
|
||||
|
||||
it('should display welcome message', () => {
|
||||
page.navigateTo();
|
||||
expect(page.getTitleText()).toEqual('Welcome to app!');
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
// Assert that there are no errors emitted from the browser
|
||||
const logs = await browser.manage().logs().get(logging.Type.BROWSER);
|
||||
expect(logs).not.toContain(jasmine.objectContaining({
|
||||
level: logging.Level.SEVERE,
|
||||
} as logging.Entry));
|
||||
});
|
||||
});
|
||||
11
customer/app/e2e/src/app.po.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { browser, by, element } from 'protractor';
|
||||
|
||||
export class AppPage {
|
||||
navigateTo() {
|
||||
return browser.get(browser.baseUrl) as Promise<any>;
|
||||
}
|
||||
|
||||
getTitleText() {
|
||||
return element(by.css('app-root h1')).getText() as Promise<string>;
|
||||
}
|
||||
}
|
||||
13
customer/app/e2e/tsconfig.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../out-tsc/e2e",
|
||||
"module": "commonjs",
|
||||
"target": "es5",
|
||||
"types": [
|
||||
"jasmine",
|
||||
"jasminewd2",
|
||||
"node"
|
||||
]
|
||||
}
|
||||
}
|
||||
32
customer/app/karma.conf.js
Normal file
@ -0,0 +1,32 @@
|
||||
// Karma configuration file, see link for more information
|
||||
// https://karma-runner.github.io/1.0/config/configuration-file.html
|
||||
|
||||
module.exports = function (config) {
|
||||
config.set({
|
||||
basePath: '',
|
||||
frameworks: ['jasmine', '@angular-devkit/build-angular'],
|
||||
plugins: [
|
||||
require('karma-jasmine'),
|
||||
require('karma-chrome-launcher'),
|
||||
require('karma-jasmine-html-reporter'),
|
||||
require('karma-coverage-istanbul-reporter'),
|
||||
require('@angular-devkit/build-angular/plugins/karma')
|
||||
],
|
||||
client: {
|
||||
clearContext: false // leave Jasmine Spec Runner output visible in browser
|
||||
},
|
||||
coverageIstanbulReporter: {
|
||||
dir: require('path').join(__dirname, './coverage/app'),
|
||||
reports: ['html', 'lcovonly', 'text-summary'],
|
||||
fixWebpackSourcePaths: true
|
||||
},
|
||||
reporters: ['progress', 'kjhtml'],
|
||||
port: 9876,
|
||||
colors: true,
|
||||
logLevel: config.LOG_INFO,
|
||||
autoWatch: true,
|
||||
browsers: ['Chrome'],
|
||||
singleRun: false,
|
||||
restartOnFileChange: true
|
||||
});
|
||||
};
|
||||
9667
customer/app/package-lock.json
generated
Normal file
48
customer/app/package.json
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
"name": "app",
|
||||
"version": "0.0.0",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve",
|
||||
"build": "ng build",
|
||||
"test": "ng test",
|
||||
"lint": "ng lint",
|
||||
"e2e": "ng e2e"
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "~8.0.3",
|
||||
"@angular/common": "~8.0.3",
|
||||
"@angular/compiler": "~8.0.3",
|
||||
"@angular/core": "~8.0.3",
|
||||
"@angular/forms": "~8.0.3",
|
||||
"@angular/platform-browser": "~8.0.3",
|
||||
"@angular/platform-browser-dynamic": "~8.0.3",
|
||||
"@angular/router": "~8.0.3",
|
||||
"@ng-bootstrap/ng-bootstrap": "^5.0.0-rc.1",
|
||||
"rxjs": "~6.4.0",
|
||||
"tslib": "^1.9.0",
|
||||
"zone.js": "~0.9.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "~0.800.6",
|
||||
"@angular/cli": "~8.0.6",
|
||||
"@angular/compiler-cli": "~8.0.3",
|
||||
"@angular/language-service": "~8.0.3",
|
||||
"@types/node": "~8.9.4",
|
||||
"@types/jasmine": "~3.3.8",
|
||||
"@types/jasminewd2": "~2.0.3",
|
||||
"codelyzer": "^5.0.0",
|
||||
"jasmine-core": "~3.4.0",
|
||||
"jasmine-spec-reporter": "~4.2.1",
|
||||
"karma": "~4.1.0",
|
||||
"karma-chrome-launcher": "~2.2.0",
|
||||
"karma-coverage-istanbul-reporter": "~2.0.1",
|
||||
"karma-jasmine": "~2.0.1",
|
||||
"karma-jasmine-html-reporter": "^1.4.0",
|
||||
"protractor": "~5.4.0",
|
||||
"ts-node": "~7.0.0",
|
||||
"tslint": "~5.15.0",
|
||||
"typescript": "~3.4.3"
|
||||
}
|
||||
}
|
||||
10
customer/app/src/app/app-routing.module.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { Routes, RouterModule } from '@angular/router';
|
||||
|
||||
const routes: Routes = [];
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forRoot(routes)],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class AppRoutingModule { }
|
||||
21
customer/app/src/app/app.component.html
Normal file
@ -0,0 +1,21 @@
|
||||
<!--The content below is only a placeholder and can be replaced.-->
|
||||
<div style="text-align:center">
|
||||
<h1>
|
||||
Welcome to {{ title }}!
|
||||
</h1>
|
||||
<img width="300" alt="Angular Logo" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTAgMjUwIj4KICAgIDxwYXRoIGZpbGw9IiNERDAwMzEiIGQ9Ik0xMjUgMzBMMzEuOSA2My4ybDE0LjIgMTIzLjFMMTI1IDIzMGw3OC45LTQzLjcgMTQuMi0xMjMuMXoiIC8+CiAgICA8cGF0aCBmaWxsPSIjQzMwMDJGIiBkPSJNMTI1IDMwdjIyLjItLjFWMjMwbDc4LjktNDMuNyAxNC4yLTEyMy4xTDEyNSAzMHoiIC8+CiAgICA8cGF0aCAgZmlsbD0iI0ZGRkZGRiIgZD0iTTEyNSA1Mi4xTDY2LjggMTgyLjZoMjEuN2wxMS43LTI5LjJoNDkuNGwxMS43IDI5LjJIMTgzTDEyNSA1Mi4xem0xNyA4My4zaC0zNGwxNy00MC45IDE3IDQwLjl6IiAvPgogIDwvc3ZnPg==">
|
||||
</div>
|
||||
<h2>Here are some links to help you start: </h2>
|
||||
<ul>
|
||||
<li>
|
||||
<h2><a target="_blank" rel="noopener" href="https://angular.io/tutorial">Tour of Heroes</a></h2>
|
||||
</li>
|
||||
<li>
|
||||
<h2><a target="_blank" rel="noopener" href="https://angular.io/cli">CLI Documentation</a></h2>
|
||||
</li>
|
||||
<li>
|
||||
<h2><a target="_blank" rel="noopener" href="https://blog.angular.io/">Angular blog</a></h2>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<router-outlet></router-outlet>
|
||||
0
customer/app/src/app/app.component.scss
Normal file
35
customer/app/src/app/app.component.spec.ts
Normal file
@ -0,0 +1,35 @@
|
||||
import { TestBed, async } from '@angular/core/testing';
|
||||
import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { AppComponent } from './app.component';
|
||||
|
||||
describe('AppComponent', () => {
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
imports: [
|
||||
RouterTestingModule
|
||||
],
|
||||
declarations: [
|
||||
AppComponent
|
||||
],
|
||||
}).compileComponents();
|
||||
}));
|
||||
|
||||
it('should create the app', () => {
|
||||
const fixture = TestBed.createComponent(AppComponent);
|
||||
const app = fixture.debugElement.componentInstance;
|
||||
expect(app).toBeTruthy();
|
||||
});
|
||||
|
||||
it(`should have as title 'app'`, () => {
|
||||
const fixture = TestBed.createComponent(AppComponent);
|
||||
const app = fixture.debugElement.componentInstance;
|
||||
expect(app.title).toEqual('app');
|
||||
});
|
||||
|
||||
it('should render title in a h1 tag', () => {
|
||||
const fixture = TestBed.createComponent(AppComponent);
|
||||
fixture.detectChanges();
|
||||
const compiled = fixture.debugElement.nativeElement;
|
||||
expect(compiled.querySelector('h1').textContent).toContain('Welcome to app!');
|
||||
});
|
||||
});
|
||||
10
customer/app/src/app/app.component.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
templateUrl: './app.component.html',
|
||||
styleUrls: ['./app.component.scss']
|
||||
})
|
||||
export class AppComponent {
|
||||
title = 'app';
|
||||
}
|
||||
20
customer/app/src/app/app.module.ts
Normal file
@ -0,0 +1,20 @@
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { NgModule } from '@angular/core';
|
||||
|
||||
import { AppRoutingModule } from './app-routing.module';
|
||||
import { AppComponent } from './app.component';
|
||||
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
AppRoutingModule,
|
||||
NgbModule
|
||||
],
|
||||
providers: [],
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
export class AppModule { }
|
||||
0
customer/app/src/assets/.gitkeep
Normal file
3
customer/app/src/environments/environment.prod.ts
Normal file
@ -0,0 +1,3 @@
|
||||
export const environment = {
|
||||
production: true
|
||||
};
|
||||
16
customer/app/src/environments/environment.ts
Normal file
@ -0,0 +1,16 @@
|
||||
// This file can be replaced during build by using the `fileReplacements` array.
|
||||
// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
|
||||
// The list of file replacements can be found in `angular.json`.
|
||||
|
||||
export const environment = {
|
||||
production: false
|
||||
};
|
||||
|
||||
/*
|
||||
* For easier debugging in development mode, you can import the following file
|
||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
||||
*
|
||||
* This import should be commented out in production mode because it will have a negative impact
|
||||
* on performance if an error is thrown.
|
||||
*/
|
||||
// import 'zone.js/dist/zone-error'; // Included with Angular CLI.
|
||||
BIN
customer/app/src/favicon.ico
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
14
customer/app/src/index.html
Normal file
@ -0,0 +1,14 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>App</title>
|
||||
<base href="/">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
<app-root></app-root>
|
||||
</body>
|
||||
</html>
|
||||
12
customer/app/src/main.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import { enableProdMode } from '@angular/core';
|
||||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
||||
|
||||
import { AppModule } from './app/app.module';
|
||||
import { environment } from './environments/environment';
|
||||
|
||||
if (environment.production) {
|
||||
enableProdMode();
|
||||
}
|
||||
|
||||
platformBrowserDynamic().bootstrapModule(AppModule)
|
||||
.catch(err => console.error(err));
|
||||
63
customer/app/src/polyfills.ts
Normal file
@ -0,0 +1,63 @@
|
||||
/**
|
||||
* This file includes polyfills needed by Angular and is loaded before the app.
|
||||
* You can add your own extra polyfills to this file.
|
||||
*
|
||||
* This file is divided into 2 sections:
|
||||
* 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
|
||||
* 2. Application imports. Files imported after ZoneJS that should be loaded before your main
|
||||
* file.
|
||||
*
|
||||
* The current setup is for so-called "evergreen" browsers; the last versions of browsers that
|
||||
* automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
|
||||
* Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
|
||||
*
|
||||
* Learn more in https://angular.io/guide/browser-support
|
||||
*/
|
||||
|
||||
/***************************************************************************************************
|
||||
* BROWSER POLYFILLS
|
||||
*/
|
||||
|
||||
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
|
||||
// import 'classlist.js'; // Run `npm install --save classlist.js`.
|
||||
|
||||
/**
|
||||
* Web Animations `@angular/platform-browser/animations`
|
||||
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
|
||||
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
|
||||
*/
|
||||
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
|
||||
|
||||
/**
|
||||
* By default, zone.js will patch all possible macroTask and DomEvents
|
||||
* user can disable parts of macroTask/DomEvents patch by setting following flags
|
||||
* because those flags need to be set before `zone.js` being loaded, and webpack
|
||||
* will put import in the top of bundle, so user need to create a separate file
|
||||
* in this directory (for example: zone-flags.ts), and put the following flags
|
||||
* into that file, and then add the following code before importing zone.js.
|
||||
* import './zone-flags.ts';
|
||||
*
|
||||
* The flags allowed in zone-flags.ts are listed here.
|
||||
*
|
||||
* The following flags will work for all browsers.
|
||||
*
|
||||
* (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
|
||||
* (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
|
||||
* (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
|
||||
*
|
||||
* in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
|
||||
* with the following flag, it will bypass `zone.js` patch for IE/Edge
|
||||
*
|
||||
* (window as any).__Zone_enable_cross_context_check = true;
|
||||
*
|
||||
*/
|
||||
|
||||
/***************************************************************************************************
|
||||
* Zone JS is required by default for Angular itself.
|
||||
*/
|
||||
import 'zone.js/dist/zone'; // Included with Angular CLI.
|
||||
|
||||
|
||||
/***************************************************************************************************
|
||||
* APPLICATION IMPORTS
|
||||
*/
|
||||
1
customer/app/src/styles.scss
Normal file
@ -0,0 +1 @@
|
||||
/* You can add global styles to this file, and also import other style files */
|
||||
20
customer/app/src/test.ts
Normal file
@ -0,0 +1,20 @@
|
||||
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
|
||||
|
||||
import 'zone.js/dist/zone-testing';
|
||||
import { getTestBed } from '@angular/core/testing';
|
||||
import {
|
||||
BrowserDynamicTestingModule,
|
||||
platformBrowserDynamicTesting
|
||||
} from '@angular/platform-browser-dynamic/testing';
|
||||
|
||||
declare const require: any;
|
||||
|
||||
// First, initialize the Angular testing environment.
|
||||
getTestBed().initTestEnvironment(
|
||||
BrowserDynamicTestingModule,
|
||||
platformBrowserDynamicTesting()
|
||||
);
|
||||
// Then we find all the tests.
|
||||
const context = require.context('./', true, /\.spec\.ts$/);
|
||||
// And load the modules.
|
||||
context.keys().map(context);
|
||||
14
customer/app/tsconfig.app.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "./out-tsc/app",
|
||||
"types": []
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"src/test.ts",
|
||||
"src/**/*.spec.ts"
|
||||
]
|
||||
}
|
||||
22
customer/app/tsconfig.json
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"baseUrl": "./",
|
||||
"outDir": "./dist/out-tsc",
|
||||
"sourceMap": true,
|
||||
"declaration": false,
|
||||
"downlevelIteration": true,
|
||||
"experimentalDecorators": true,
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"importHelpers": true,
|
||||
"target": "es2015",
|
||||
"typeRoots": [
|
||||
"node_modules/@types"
|
||||
],
|
||||
"lib": [
|
||||
"es2018",
|
||||
"dom"
|
||||
]
|
||||
}
|
||||
}
|
||||
18
customer/app/tsconfig.spec.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "./out-tsc/spec",
|
||||
"types": [
|
||||
"jasmine",
|
||||
"node"
|
||||
]
|
||||
},
|
||||
"files": [
|
||||
"src/test.ts",
|
||||
"src/polyfills.ts"
|
||||
],
|
||||
"include": [
|
||||
"src/**/*.spec.ts",
|
||||
"src/**/*.d.ts"
|
||||
]
|
||||
}
|
||||
92
customer/app/tslint.json
Normal file
@ -0,0 +1,92 @@
|
||||
{
|
||||
"extends": "tslint:recommended",
|
||||
"rules": {
|
||||
"array-type": false,
|
||||
"arrow-parens": false,
|
||||
"deprecation": {
|
||||
"severity": "warning"
|
||||
},
|
||||
"component-class-suffix": true,
|
||||
"contextual-lifecycle": true,
|
||||
"directive-class-suffix": true,
|
||||
"directive-selector": [
|
||||
true,
|
||||
"attribute",
|
||||
"app",
|
||||
"camelCase"
|
||||
],
|
||||
"component-selector": [
|
||||
true,
|
||||
"element",
|
||||
"app",
|
||||
"kebab-case"
|
||||
],
|
||||
"import-blacklist": [
|
||||
true,
|
||||
"rxjs/Rx"
|
||||
],
|
||||
"interface-name": false,
|
||||
"max-classes-per-file": false,
|
||||
"max-line-length": [
|
||||
true,
|
||||
140
|
||||
],
|
||||
"member-access": false,
|
||||
"member-ordering": [
|
||||
true,
|
||||
{
|
||||
"order": [
|
||||
"static-field",
|
||||
"instance-field",
|
||||
"static-method",
|
||||
"instance-method"
|
||||
]
|
||||
}
|
||||
],
|
||||
"no-consecutive-blank-lines": false,
|
||||
"no-console": [
|
||||
true,
|
||||
"debug",
|
||||
"info",
|
||||
"time",
|
||||
"timeEnd",
|
||||
"trace"
|
||||
],
|
||||
"no-empty": false,
|
||||
"no-inferrable-types": [
|
||||
true,
|
||||
"ignore-params"
|
||||
],
|
||||
"no-non-null-assertion": true,
|
||||
"no-redundant-jsdoc": true,
|
||||
"no-switch-case-fall-through": true,
|
||||
"no-use-before-declare": true,
|
||||
"no-var-requires": false,
|
||||
"object-literal-key-quotes": [
|
||||
true,
|
||||
"as-needed"
|
||||
],
|
||||
"object-literal-sort-keys": false,
|
||||
"ordered-imports": false,
|
||||
"quotemark": [
|
||||
true,
|
||||
"single"
|
||||
],
|
||||
"trailing-comma": false,
|
||||
"no-conflicting-lifecycle": true,
|
||||
"no-host-metadata-property": true,
|
||||
"no-input-rename": true,
|
||||
"no-inputs-metadata-property": true,
|
||||
"no-output-native": true,
|
||||
"no-output-on-prefix": true,
|
||||
"no-output-rename": true,
|
||||
"no-outputs-metadata-property": true,
|
||||
"template-banana-in-box": true,
|
||||
"template-no-negated-async": true,
|
||||
"use-lifecycle-interface": true,
|
||||
"use-pipe-transform-interface": true
|
||||
},
|
||||
"rulesDirectory": [
|
||||
"codelyzer"
|
||||
]
|
||||
}
|
||||
11
customer/package.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "fitness-web-customer-frontend",
|
||||
"version": "1.0.0",
|
||||
"description": "Fitness web customer frontend",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
BIN
customer/template/bodyfit.zip
Normal file
352
customer/template/bodyfit/about.html
Normal file
@ -0,0 +1,352 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>BodyFit - Free Bootstrap 4 Template by Colorlib</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
|
||||
<link rel="stylesheet" href="css/animate.css">
|
||||
|
||||
<link rel="stylesheet" href="css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="css/owl.theme.default.min.css">
|
||||
<link rel="stylesheet" href="css/magnific-popup.css">
|
||||
|
||||
<link rel="stylesheet" href="css/aos.css">
|
||||
|
||||
<link rel="stylesheet" href="css/ionicons.min.css">
|
||||
|
||||
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
|
||||
<link rel="stylesheet" href="css/jquery.timepicker.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" href="css/flaticon.css">
|
||||
<link rel="stylesheet" href="css/icomoon.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light" id="ftco-navbar">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html">BodyFit<small>Fitness</small></a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#ftco-nav" aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="oi oi-menu"></span> Menu
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="ftco-nav">
|
||||
<ul class="navbar-nav ml-auto">
|
||||
<li class="nav-item"><a href="index.html" class="nav-link">Home</a></li>
|
||||
<li class="nav-item"><a href="program.html" class="nav-link">Program</a></li>
|
||||
<li class="nav-item"><a href="coaches.html" class="nav-link">Coaches</a></li>
|
||||
<li class="nav-item"><a href="schedule.html" class="nav-link">Schedule</a></li>
|
||||
<li class="nav-item active"><a href="about.html" class="nav-link">About</a></li>
|
||||
<li class="nav-item"><a href="blog.html" class="nav-link">Blog</a></li>
|
||||
<li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- END nav -->
|
||||
|
||||
<section class="home-slider owl-carousel">
|
||||
|
||||
<div class="slider-item" style="background-image: url(images/bg_3.jpg);" data-stellar-background-ratio="0.5">
|
||||
<div class="overlay"></div>
|
||||
<div class="container">
|
||||
<div class="row slider-text justify-content-center align-items-center">
|
||||
|
||||
<div class="col-md-7 col-sm-12 text-center ftco-animate">
|
||||
<h1 class="mb-3 mt-5 bread">About</h1>
|
||||
<p class="breadcrumbs"><span class="mr-2"><a href="index.html">Home</a></span> <span>About</span></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="ftco-about d-md-flex">
|
||||
<div class="one-half img" style="background-image: url(images/about.jpg);">
|
||||
<a href="https://vimeo.com/45830194" class="icon popup-vimeo d-flex justify-content-center align-items-center">
|
||||
<span class="icon-play"></a>
|
||||
</a>
|
||||
</div>
|
||||
<div class="one-half ftco-animate">
|
||||
<div class="heading-section ftco-animate ">
|
||||
<h2 class="mb-4">Welcome to <span>BodyFit</span></h2>
|
||||
</div>
|
||||
<div>
|
||||
<p>On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="ftco-gallery">
|
||||
<div class="container-wrap">
|
||||
<div class="row no-gutters">
|
||||
<div class="col-md-3 ftco-animate">
|
||||
<a href="gallery.html" class="gallery img d-flex align-items-center" style="background-image: url(images/gallery-1.jpg);">
|
||||
<div class="icon mb-4 d-flex align-items-center justify-content-center">
|
||||
<span class="icon-search"></span>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-3 ftco-animate">
|
||||
<a href="gallery.html" class="gallery img d-flex align-items-center" style="background-image: url(images/gallery-2.jpg);">
|
||||
<div class="icon mb-4 d-flex align-items-center justify-content-center">
|
||||
<span class="icon-search"></span>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-3 ftco-animate">
|
||||
<a href="gallery.html" class="gallery img d-flex align-items-center" style="background-image: url(images/gallery-3.jpg);">
|
||||
<div class="icon mb-4 d-flex align-items-center justify-content-center">
|
||||
<span class="icon-search"></span>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-3 ftco-animate">
|
||||
<a href="gallery.html" class="gallery img d-flex align-items-center" style="background-image: url(images/gallery-4.jpg);">
|
||||
<div class="icon mb-4 d-flex align-items-center justify-content-center">
|
||||
<span class="icon-search"></span>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="ftco-section img" id="ftco-testimony" style="background-image: url(images/bg_2.jpg);" data-stellar-background-ratio="0.5">
|
||||
<div class="overlay"></div>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center mb-5">
|
||||
<div class="col-md-7 heading-section text-center ftco-animate">
|
||||
<span class="subheading">Testimony</span>
|
||||
<h2 class="mb-4">Customers Says</h2>
|
||||
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container-wrap">
|
||||
<div class="row d-flex no-gutters">
|
||||
<div class="col-lg align-self-sm-end ftco-animate">
|
||||
<div class="testimony">
|
||||
<blockquote>
|
||||
<p>“Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small.”</p>
|
||||
</blockquote>
|
||||
<div class="author d-flex mt-4">
|
||||
<div class="image mr-3 align-self-center">
|
||||
<img src="images/person_1.jpg" alt="">
|
||||
</div>
|
||||
<div class="name align-self-center">Louise Kelly <span class="position">Illustrator Designer</span></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg align-self-sm-end">
|
||||
<div class="testimony overlay">
|
||||
<blockquote>
|
||||
<p>“Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.”</p>
|
||||
</blockquote>
|
||||
<div class="author d-flex mt-4">
|
||||
<div class="image mr-3 align-self-center">
|
||||
<img src="images/person_2.jpg" alt="">
|
||||
</div>
|
||||
<div class="name align-self-center">Louise Kelly <span class="position">Illustrator Designer</span></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg align-self-sm-end ftco-animate">
|
||||
<div class="testimony">
|
||||
<blockquote>
|
||||
<p>“Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name. ”</p>
|
||||
</blockquote>
|
||||
<div class="author d-flex mt-4">
|
||||
<div class="image mr-3 align-self-center">
|
||||
<img src="images/person_3.jpg" alt="">
|
||||
</div>
|
||||
<div class="name align-self-center">Louise Kelly <span class="position">Illustrator Designer</span></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg align-self-sm-end">
|
||||
<div class="testimony overlay">
|
||||
<blockquote>
|
||||
<p>“Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however.”</p>
|
||||
</blockquote>
|
||||
<div class="author d-flex mt-4">
|
||||
<div class="image mr-3 align-self-center">
|
||||
<img src="images/person_2.jpg" alt="">
|
||||
</div>
|
||||
<div class="name align-self-center">Louise Kelly <span class="position">Illustrator Designer</span></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg align-self-sm-end ftco-animate">
|
||||
<div class="testimony">
|
||||
<blockquote>
|
||||
<p>“Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name. ”</p>
|
||||
</blockquote>
|
||||
<div class="author d-flex mt-4">
|
||||
<div class="image mr-3 align-self-center">
|
||||
<img src="images/person_3.jpg" alt="">
|
||||
</div>
|
||||
<div class="name align-self-center">Louise Kelly <span class="position">Illustrator Designer</span></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="ftco-counter ftco-bg-dark img" id="section-counter" style="background-image: url(images/bg_5.jpg);" data-stellar-background-ratio="0.5">
|
||||
<div class="overlay"></div>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-10">
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-lg-3 d-flex justify-content-center counter-wrap ftco-animate">
|
||||
<div class="block-18 text-center">
|
||||
<div class="text">
|
||||
<!-- <div class="icon"><span class="flaticon-coffee-cup"></span></div> -->
|
||||
<strong class="number" data-number="5000">0</strong>
|
||||
<span>Happy Customers</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-3 d-flex justify-content-center counter-wrap ftco-animate">
|
||||
<div class="block-18 text-center">
|
||||
<div class="text">
|
||||
<!-- <div class="icon"><span class="flaticon-coffee-cup"></span></div> -->
|
||||
<strong class="number" data-number="4560">0</strong>
|
||||
<span>Perfect Bodies</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-3 d-flex justify-content-center counter-wrap ftco-animate">
|
||||
<div class="block-18 text-center">
|
||||
<div class="text">
|
||||
<!-- <div class="icon"><span class="flaticon-coffee-cup"></span></div> -->
|
||||
<strong class="number" data-number="570">0</strong>
|
||||
<span>Working Hours</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-3 d-flex justify-content-center counter-wrap ftco-animate">
|
||||
<div class="block-18 text-center">
|
||||
<div class="text">
|
||||
<!-- <div class="icon"><span class="flaticon-coffee-cup"></span></div> -->
|
||||
<strong class="number" data-number="900">0</strong>
|
||||
<span>Success Stories</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer class="ftco-footer ftco-section img">
|
||||
<div class="overlay"></div>
|
||||
<div class="container">
|
||||
<div class="row mb-5">
|
||||
<div class="col-lg-3 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">About Us</h2>
|
||||
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
|
||||
<ul class="ftco-footer-social list-unstyled float-md-left float-lft mt-5">
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-twitter"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-facebook"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-instagram"></span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">Recent Blog</h2>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_1.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> Sept 15, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_2.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> Sept 15, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4 ml-md-4">
|
||||
<h2 class="ftco-heading-2">Services</h2>
|
||||
<ul class="list-unstyled">
|
||||
<li><a href="#" class="py-2 d-block">Cooked</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Deliver</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Quality Foods</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Mixed</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">Have a Questions?</h2>
|
||||
<div class="block-23 mb-3">
|
||||
<ul>
|
||||
<li><span class="icon icon-map-marker"></span><span class="text">203 Fake St. Mountain View, San Francisco, California, USA</span></li>
|
||||
<li><a href="#"><span class="icon icon-phone"></span><span class="text">+2 392 3929 210</span></a></li>
|
||||
<li><a href="#"><span class="icon icon-envelope"></span><span class="text">info@yourdomain.com</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12 text-center">
|
||||
|
||||
<p><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
|
||||
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | This template is made with <i class="icon-heart" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a>
|
||||
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
|
||||
<!-- loader -->
|
||||
<div id="ftco-loader" class="show fullscreen"><svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#F96D00"/></svg></div>
|
||||
|
||||
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<script src="js/jquery-migrate-3.0.1.min.js"></script>
|
||||
<script src="js/popper.min.js"></script>
|
||||
<script src="js/bootstrap.min.js"></script>
|
||||
<script src="js/jquery.easing.1.3.js"></script>
|
||||
<script src="js/jquery.waypoints.min.js"></script>
|
||||
<script src="js/jquery.stellar.min.js"></script>
|
||||
<script src="js/owl.carousel.min.js"></script>
|
||||
<script src="js/jquery.magnific-popup.min.js"></script>
|
||||
<script src="js/aos.js"></script>
|
||||
<script src="js/jquery.animateNumber.min.js"></script>
|
||||
<script src="js/bootstrap-datepicker.js"></script>
|
||||
<script src="js/jquery.timepicker.min.js"></script>
|
||||
<script src="js/scrollax.min.js"></script>
|
||||
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVWaKrjvy3MaE7SQ74_uJiULgl1JY0H2s&sensor=false"></script>
|
||||
<script src="js/google-map.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
406
customer/template/bodyfit/blog-single.html
Normal file
@ -0,0 +1,406 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>BodyFit - Free Bootstrap 4 Template by Colorlib</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
|
||||
<link rel="stylesheet" href="css/animate.css">
|
||||
|
||||
<link rel="stylesheet" href="css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="css/owl.theme.default.min.css">
|
||||
<link rel="stylesheet" href="css/magnific-popup.css">
|
||||
|
||||
<link rel="stylesheet" href="css/aos.css">
|
||||
|
||||
<link rel="stylesheet" href="css/ionicons.min.css">
|
||||
|
||||
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
|
||||
<link rel="stylesheet" href="css/jquery.timepicker.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" href="css/flaticon.css">
|
||||
<link rel="stylesheet" href="css/icomoon.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light" id="ftco-navbar">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html">BodyFit<small>Fitness</small></a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#ftco-nav" aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="oi oi-menu"></span> Menu
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="ftco-nav">
|
||||
<ul class="navbar-nav ml-auto">
|
||||
<li class="nav-item"><a href="index.html" class="nav-link">Home</a></li>
|
||||
<li class="nav-item"><a href="program.html" class="nav-link">Program</a></li>
|
||||
<li class="nav-item"><a href="coaches.html" class="nav-link">Coaches</a></li>
|
||||
<li class="nav-item"><a href="schedule.html" class="nav-link">Schedule</a></li>
|
||||
<li class="nav-item"><a href="about.html" class="nav-link">About</a></li>
|
||||
<li class="nav-item active"><a href="blog.html" class="nav-link">Blog</a></li>
|
||||
<li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- END nav -->
|
||||
|
||||
<section class="home-slider owl-carousel">
|
||||
|
||||
<div class="slider-item" style="background-image: url(images/bg_1.jpg);" data-stellar-background-ratio="0.5">
|
||||
<div class="overlay"></div>
|
||||
<div class="container">
|
||||
<div class="row slider-text justify-content-center align-items-center">
|
||||
|
||||
<div class="col-md-7 col-sm-12 text-center ftco-animate">
|
||||
<h1 class="mb-3 mt-5 bread">Blog</h1>
|
||||
<p class="breadcrumbs"><span class="mr-2"><a href="index.html">Home</a></span> <span>Blog</span></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="ftco-section">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-8 ftco-animate">
|
||||
<h2 class="mb-3">Young Women Doing Abdominal</h2>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Reiciendis, eius mollitia suscipit, quisquam doloremque distinctio perferendis et doloribus unde architecto optio laboriosam porro adipisci sapiente officiis nemo accusamus ad praesentium? Esse minima nisi et. Dolore perferendis, enim praesentium omnis, iste doloremque quia officia optio deserunt molestiae voluptates soluta architecto tempora.</p>
|
||||
<p>
|
||||
<img src="images/image_1.jpg" alt="" class="img-fluid">
|
||||
</p>
|
||||
<p>Molestiae cupiditate inventore animi, maxime sapiente optio, illo est nemo veritatis repellat sunt doloribus nesciunt! Minima laborum magni reiciendis qui voluptate quisquam voluptatem soluta illo eum ullam incidunt rem assumenda eveniet eaque sequi deleniti tenetur dolore amet fugit perspiciatis ipsa, odit. Nesciunt dolor minima esse vero ut ea, repudiandae suscipit!</p>
|
||||
<h2 class="mb-3 mt-5">#2. Creative WordPress Themes</h2>
|
||||
<p>Temporibus ad error suscipit exercitationem hic molestiae totam obcaecati rerum, eius aut, in. Exercitationem atque quidem tempora maiores ex architecto voluptatum aut officia doloremque. Error dolore voluptas, omnis molestias odio dignissimos culpa ex earum nisi consequatur quos odit quasi repellat qui officiis reiciendis incidunt hic non? Debitis commodi aut, adipisci.</p>
|
||||
<p>
|
||||
<img src="images/image_2.jpg" alt="" class="img-fluid">
|
||||
</p>
|
||||
<p>Quisquam esse aliquam fuga distinctio, quidem delectus veritatis reiciendis. Nihil explicabo quod, est eos ipsum. Unde aut non tenetur tempore, nisi culpa voluptate maiores officiis quis vel ab consectetur suscipit veritatis nulla quos quia aspernatur perferendis, libero sint. Error, velit, porro. Deserunt minus, quibusdam iste enim veniam, modi rem maiores.</p>
|
||||
<p>Odit voluptatibus, eveniet vel nihil cum ullam dolores laborum, quo velit commodi rerum eum quidem pariatur! Quia fuga iste tenetur, ipsa vel nisi in dolorum consequatur, veritatis porro explicabo soluta commodi libero voluptatem similique id quidem? Blanditiis voluptates aperiam non magni. Reprehenderit nobis odit inventore, quia laboriosam harum excepturi ea.</p>
|
||||
<p>Adipisci vero culpa, eius nobis soluta. Dolore, maxime ullam ipsam quidem, dolor distinctio similique asperiores voluptas enim, exercitationem ratione aut adipisci modi quod quibusdam iusto, voluptates beatae iure nemo itaque laborum. Consequuntur et pariatur totam fuga eligendi vero dolorum provident. Voluptatibus, veritatis. Beatae numquam nam ab voluptatibus culpa, tenetur recusandae!</p>
|
||||
<p>Voluptas dolores dignissimos dolorum temporibus, autem aliquam ducimus at officia adipisci quasi nemo a perspiciatis provident magni laboriosam repudiandae iure iusto commodi debitis est blanditiis alias laborum sint dolore. Dolores, iure, reprehenderit. Error provident, pariatur cupiditate soluta doloremque aut ratione. Harum voluptates mollitia illo minus praesentium, rerum ipsa debitis, inventore?</p>
|
||||
<div class="tag-widget post-tag-container mb-5 mt-5">
|
||||
<div class="tagcloud">
|
||||
<a href="#" class="tag-cloud-link">Life</a>
|
||||
<a href="#" class="tag-cloud-link">Sport</a>
|
||||
<a href="#" class="tag-cloud-link">Tech</a>
|
||||
<a href="#" class="tag-cloud-link">Travel</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="about-author d-flex">
|
||||
<div class="bio align-self-md-center mr-5">
|
||||
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid mb-4">
|
||||
</div>
|
||||
<div class="desc align-self-md-center">
|
||||
<h3>Lance Smith</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ducimus itaque, autem necessitatibus voluptate quod mollitia delectus aut, sunt placeat nam vero culpa sapiente consectetur similique, inventore eos fugit cupiditate numquam!</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="pt-5 mt-5">
|
||||
<h3 class="mb-5">6 Comments</h3>
|
||||
<ul class="comment-list">
|
||||
<li class="comment">
|
||||
<div class="vcard bio">
|
||||
<img src="images/person_1.jpg" alt="Image placeholder">
|
||||
</div>
|
||||
<div class="comment-body">
|
||||
<h3>John Doe</h3>
|
||||
<div class="meta">June 27, 2018 at 2:21pm</div>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem laborum necessitatibus, ipsam impedit vitae autem, eum officia, fugiat saepe enim sapiente iste iure! Quam voluptas earum impedit necessitatibus, nihil?</p>
|
||||
<p><a href="#" class="reply">Reply</a></p>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="comment">
|
||||
<div class="vcard bio">
|
||||
<img src="images/person_1.jpg" alt="Image placeholder">
|
||||
</div>
|
||||
<div class="comment-body">
|
||||
<h3>John Doe</h3>
|
||||
<div class="meta">June 27, 2018 at 2:21pm</div>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem laborum necessitatibus, ipsam impedit vitae autem, eum officia, fugiat saepe enim sapiente iste iure! Quam voluptas earum impedit necessitatibus, nihil?</p>
|
||||
<p><a href="#" class="reply">Reply</a></p>
|
||||
</div>
|
||||
|
||||
<ul class="children">
|
||||
<li class="comment">
|
||||
<div class="vcard bio">
|
||||
<img src="images/person_1.jpg" alt="Image placeholder">
|
||||
</div>
|
||||
<div class="comment-body">
|
||||
<h3>John Doe</h3>
|
||||
<div class="meta">June 27, 2018 at 2:21pm</div>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem laborum necessitatibus, ipsam impedit vitae autem, eum officia, fugiat saepe enim sapiente iste iure! Quam voluptas earum impedit necessitatibus, nihil?</p>
|
||||
<p><a href="#" class="reply">Reply</a></p>
|
||||
</div>
|
||||
|
||||
|
||||
<ul class="children">
|
||||
<li class="comment">
|
||||
<div class="vcard bio">
|
||||
<img src="images/person_1.jpg" alt="Image placeholder">
|
||||
</div>
|
||||
<div class="comment-body">
|
||||
<h3>John Doe</h3>
|
||||
<div class="meta">June 27, 2018 at 2:21pm</div>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem laborum necessitatibus, ipsam impedit vitae autem, eum officia, fugiat saepe enim sapiente iste iure! Quam voluptas earum impedit necessitatibus, nihil?</p>
|
||||
<p><a href="#" class="reply">Reply</a></p>
|
||||
</div>
|
||||
|
||||
<ul class="children">
|
||||
<li class="comment">
|
||||
<div class="vcard bio">
|
||||
<img src="images/person_1.jpg" alt="Image placeholder">
|
||||
</div>
|
||||
<div class="comment-body">
|
||||
<h3>John Doe</h3>
|
||||
<div class="meta">June 27, 2018 at 2:21pm</div>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem laborum necessitatibus, ipsam impedit vitae autem, eum officia, fugiat saepe enim sapiente iste iure! Quam voluptas earum impedit necessitatibus, nihil?</p>
|
||||
<p><a href="#" class="reply">Reply</a></p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="comment">
|
||||
<div class="vcard bio">
|
||||
<img src="images/person_1.jpg" alt="Image placeholder">
|
||||
</div>
|
||||
<div class="comment-body">
|
||||
<h3>John Doe</h3>
|
||||
<div class="meta">June 27, 2018 at 2:21pm</div>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem laborum necessitatibus, ipsam impedit vitae autem, eum officia, fugiat saepe enim sapiente iste iure! Quam voluptas earum impedit necessitatibus, nihil?</p>
|
||||
<p><a href="#" class="reply">Reply</a></p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- END comment-list -->
|
||||
|
||||
<div class="comment-form-wrap pt-5">
|
||||
<h3 class="mb-5">Leave a comment</h3>
|
||||
<form action="#">
|
||||
<div class="form-group">
|
||||
<label for="name">Name *</label>
|
||||
<input type="text" class="form-control" id="name">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="email">Email *</label>
|
||||
<input type="email" class="form-control" id="email">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="website">Website</label>
|
||||
<input type="url" class="form-control" id="website">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="message">Message</label>
|
||||
<textarea name="" id="message" cols="30" rows="10" class="form-control"></textarea>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Post Comment" class="btn py-3 px-4 btn-primary">
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div> <!-- .col-md-8 -->
|
||||
<div class="col-md-4 sidebar ftco-animate">
|
||||
<div class="sidebar-box">
|
||||
<form action="#" class="search-form">
|
||||
<div class="form-group">
|
||||
<div class="icon">
|
||||
<span class="icon-search"></span>
|
||||
</div>
|
||||
<input type="text" class="form-control" placeholder="Search...">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="sidebar-box ftco-animate">
|
||||
<div class="categories">
|
||||
<h3>Categories</h3>
|
||||
<li><a href="#">Tour <span>(12)</span></a></li>
|
||||
<li><a href="#">Hotel <span>(22)</span></a></li>
|
||||
<li><a href="#">Coffee <span>(37)</span></a></li>
|
||||
<li><a href="#">Drinks <span>(42)</span></a></li>
|
||||
<li><a href="#">Foods <span>(14)</span></a></li>
|
||||
<li><a href="#">Travel <span>(140)</span></a></li>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="sidebar-box ftco-animate">
|
||||
<h3>Recent Blog</h3>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_1.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about the blind texts</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> July 12, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_2.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about the blind texts</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> July 12, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_3.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about the blind texts</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> July 12, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="sidebar-box ftco-animate">
|
||||
<h3>Tag Cloud</h3>
|
||||
<div class="tagcloud">
|
||||
<a href="#" class="tag-cloud-link">dish</a>
|
||||
<a href="#" class="tag-cloud-link">menu</a>
|
||||
<a href="#" class="tag-cloud-link">food</a>
|
||||
<a href="#" class="tag-cloud-link">sweet</a>
|
||||
<a href="#" class="tag-cloud-link">tasty</a>
|
||||
<a href="#" class="tag-cloud-link">delicious</a>
|
||||
<a href="#" class="tag-cloud-link">desserts</a>
|
||||
<a href="#" class="tag-cloud-link">drinks</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="sidebar-box ftco-animate">
|
||||
<h3>Paragraph</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ducimus itaque, autem necessitatibus voluptate quod mollitia delectus aut, sunt placeat nam vero culpa sapiente consectetur similique, inventore eos fugit cupiditate numquam!</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section> <!-- .section -->
|
||||
|
||||
<footer class="ftco-footer ftco-section img">
|
||||
<div class="overlay"></div>
|
||||
<div class="container">
|
||||
<div class="row mb-5">
|
||||
<div class="col-lg-3 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">About Us</h2>
|
||||
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
|
||||
<ul class="ftco-footer-social list-unstyled float-md-left float-lft mt-5">
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-twitter"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-facebook"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-instagram"></span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">Recent Blog</h2>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_1.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> Sept 15, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_2.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> Sept 15, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4 ml-md-4">
|
||||
<h2 class="ftco-heading-2">Services</h2>
|
||||
<ul class="list-unstyled">
|
||||
<li><a href="#" class="py-2 d-block">Cooked</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Deliver</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Quality Foods</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Mixed</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">Have a Questions?</h2>
|
||||
<div class="block-23 mb-3">
|
||||
<ul>
|
||||
<li><span class="icon icon-map-marker"></span><span class="text">203 Fake St. Mountain View, San Francisco, California, USA</span></li>
|
||||
<li><a href="#"><span class="icon icon-phone"></span><span class="text">+2 392 3929 210</span></a></li>
|
||||
<li><a href="#"><span class="icon icon-envelope"></span><span class="text">info@yourdomain.com</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12 text-center">
|
||||
|
||||
<p><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
|
||||
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | This template is made with <i class="icon-heart" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a>
|
||||
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
|
||||
<!-- loader -->
|
||||
<div id="ftco-loader" class="show fullscreen"><svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#F96D00"/></svg></div>
|
||||
|
||||
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<script src="js/jquery-migrate-3.0.1.min.js"></script>
|
||||
<script src="js/popper.min.js"></script>
|
||||
<script src="js/bootstrap.min.js"></script>
|
||||
<script src="js/jquery.easing.1.3.js"></script>
|
||||
<script src="js/jquery.waypoints.min.js"></script>
|
||||
<script src="js/jquery.stellar.min.js"></script>
|
||||
<script src="js/owl.carousel.min.js"></script>
|
||||
<script src="js/jquery.magnific-popup.min.js"></script>
|
||||
<script src="js/aos.js"></script>
|
||||
<script src="js/jquery.animateNumber.min.js"></script>
|
||||
<script src="js/bootstrap-datepicker.js"></script>
|
||||
<script src="js/jquery.timepicker.min.js"></script>
|
||||
<script src="js/scrollax.min.js"></script>
|
||||
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVWaKrjvy3MaE7SQ74_uJiULgl1JY0H2s&sensor=false"></script>
|
||||
<script src="js/google-map.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
282
customer/template/bodyfit/blog.html
Normal file
@ -0,0 +1,282 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>BodyFit - Free Bootstrap 4 Template by Colorlib</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
|
||||
<link rel="stylesheet" href="css/animate.css">
|
||||
|
||||
<link rel="stylesheet" href="css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="css/owl.theme.default.min.css">
|
||||
<link rel="stylesheet" href="css/magnific-popup.css">
|
||||
|
||||
<link rel="stylesheet" href="css/aos.css">
|
||||
|
||||
<link rel="stylesheet" href="css/ionicons.min.css">
|
||||
|
||||
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
|
||||
<link rel="stylesheet" href="css/jquery.timepicker.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" href="css/flaticon.css">
|
||||
<link rel="stylesheet" href="css/icomoon.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light" id="ftco-navbar">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html">BodyFit<small>Fitness</small></a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#ftco-nav" aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="oi oi-menu"></span> Menu
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="ftco-nav">
|
||||
<ul class="navbar-nav ml-auto">
|
||||
<li class="nav-item"><a href="index.html" class="nav-link">Home</a></li>
|
||||
<li class="nav-item"><a href="program.html" class="nav-link">Program</a></li>
|
||||
<li class="nav-item"><a href="coaches.html" class="nav-link">Coaches</a></li>
|
||||
<li class="nav-item"><a href="schedule.html" class="nav-link">Schedule</a></li>
|
||||
<li class="nav-item"><a href="about.html" class="nav-link">About</a></li>
|
||||
<li class="nav-item active"><a href="blog.html" class="nav-link">Blog</a></li>
|
||||
<li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- END nav -->
|
||||
|
||||
<section class="home-slider owl-carousel">
|
||||
|
||||
<div class="slider-item" style="background-image: url(images/bg_1.jpg);" data-stellar-background-ratio="0.5">
|
||||
<div class="overlay"></div>
|
||||
<div class="container">
|
||||
<div class="row slider-text justify-content-center align-items-center">
|
||||
|
||||
<div class="col-md-7 col-sm-12 text-center ftco-animate">
|
||||
<h1 class="mb-3 mt-5 bread">Blog</h1>
|
||||
<p class="breadcrumbs"><span class="mr-2"><a href="index.html">Home</a></span> <span>Blog</span></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="ftco-section">
|
||||
<div class="container">
|
||||
<div class="row d-flex">
|
||||
<div class="col-md-4 d-flex ftco-animate">
|
||||
<div class="blog-entry align-self-stretch">
|
||||
<a href="blog-single.html" class="block-20" style="background-image: url('images/image_1.jpg');">
|
||||
</a>
|
||||
<div class="text py-4 d-block">
|
||||
<div class="meta">
|
||||
<div><a href="#">October 23, 2018</a></div>
|
||||
<div><a href="#">Admin</a></div>
|
||||
<div><a href="#" class="meta-chat"><span class="icon-chat"></span> 3</a></div>
|
||||
</div>
|
||||
<h3 class="heading mt-2"><a href="#">Young Women Doing Abdominal</a></h3>
|
||||
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 d-flex ftco-animate">
|
||||
<div class="blog-entry align-self-stretch">
|
||||
<a href="blog-single.html" class="block-20" style="background-image: url('images/image_2.jpg');">
|
||||
</a>
|
||||
<div class="text py-4 d-block">
|
||||
<div class="meta">
|
||||
<div><a href="#">October 23, 2018</a></div>
|
||||
<div><a href="#">Admin</a></div>
|
||||
<div><a href="#" class="meta-chat"><span class="icon-chat"></span> 3</a></div>
|
||||
</div>
|
||||
<h3 class="heading mt-2"><a href="#">Young Women Doing Abdominal</a></h3>
|
||||
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 d-flex ftco-animate">
|
||||
<div class="blog-entry align-self-stretch">
|
||||
<a href="blog-single.html" class="block-20" style="background-image: url('images/image_3.jpg');">
|
||||
</a>
|
||||
<div class="text py-4 d-block">
|
||||
<div class="meta">
|
||||
<div><a href="#">October 23, 2018</a></div>
|
||||
<div><a href="#">Admin</a></div>
|
||||
<div><a href="#" class="meta-chat"><span class="icon-chat"></span> 3</a></div>
|
||||
</div>
|
||||
<h3 class="heading mt-2"><a href="#">Young Women Doing Abdominal</a></h3>
|
||||
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 d-flex ftco-animate">
|
||||
<div class="blog-entry align-self-stretch">
|
||||
<a href="blog-single.html" class="block-20" style="background-image: url('images/image_4.jpg');">
|
||||
</a>
|
||||
<div class="text py-4 d-block">
|
||||
<div class="meta">
|
||||
<div><a href="#">October 23, 2018</a></div>
|
||||
<div><a href="#">Admin</a></div>
|
||||
<div><a href="#" class="meta-chat"><span class="icon-chat"></span> 3</a></div>
|
||||
</div>
|
||||
<h3 class="heading mt-2"><a href="#">Young Women Doing Abdominal</a></h3>
|
||||
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 d-flex ftco-animate">
|
||||
<div class="blog-entry align-self-stretch">
|
||||
<a href="blog-single.html" class="block-20" style="background-image: url('images/image_5.jpg');">
|
||||
</a>
|
||||
<div class="text py-4 d-block">
|
||||
<div class="meta">
|
||||
<div><a href="#">October 23, 2018</a></div>
|
||||
<div><a href="#">Admin</a></div>
|
||||
<div><a href="#" class="meta-chat"><span class="icon-chat"></span> 3</a></div>
|
||||
</div>
|
||||
<h3 class="heading mt-2"><a href="#">Young Women Doing Abdominal</a></h3>
|
||||
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 d-flex ftco-animate">
|
||||
<div class="blog-entry align-self-stretch">
|
||||
<a href="blog-single.html" class="block-20" style="background-image: url('images/image_6.jpg');">
|
||||
</a>
|
||||
<div class="text py-4 d-block">
|
||||
<div class="meta">
|
||||
<div><a href="#">October 23, 2018</a></div>
|
||||
<div><a href="#">Admin</a></div>
|
||||
<div><a href="#" class="meta-chat"><span class="icon-chat"></span> 3</a></div>
|
||||
</div>
|
||||
<h3 class="heading mt-2"><a href="#">Young Women Doing Abdominal</a></h3>
|
||||
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-5">
|
||||
<div class="col text-center">
|
||||
<div class="block-27">
|
||||
<ul>
|
||||
<li><a href="#"><</a></li>
|
||||
<li class="active"><span>1</span></li>
|
||||
<li><a href="#">2</a></li>
|
||||
<li><a href="#">3</a></li>
|
||||
<li><a href="#">4</a></li>
|
||||
<li><a href="#">5</a></li>
|
||||
<li><a href="#">></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer class="ftco-footer ftco-section img">
|
||||
<div class="overlay"></div>
|
||||
<div class="container">
|
||||
<div class="row mb-5">
|
||||
<div class="col-lg-3 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">About Us</h2>
|
||||
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
|
||||
<ul class="ftco-footer-social list-unstyled float-md-left float-lft mt-5">
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-twitter"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-facebook"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-instagram"></span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">Recent Blog</h2>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_1.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> Sept 15, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_2.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> Sept 15, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4 ml-md-4">
|
||||
<h2 class="ftco-heading-2">Services</h2>
|
||||
<ul class="list-unstyled">
|
||||
<li><a href="#" class="py-2 d-block">Cooked</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Deliver</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Quality Foods</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Mixed</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">Have a Questions?</h2>
|
||||
<div class="block-23 mb-3">
|
||||
<ul>
|
||||
<li><span class="icon icon-map-marker"></span><span class="text">203 Fake St. Mountain View, San Francisco, California, USA</span></li>
|
||||
<li><a href="#"><span class="icon icon-phone"></span><span class="text">+2 392 3929 210</span></a></li>
|
||||
<li><a href="#"><span class="icon icon-envelope"></span><span class="text">info@yourdomain.com</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12 text-center">
|
||||
|
||||
<p><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
|
||||
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | This template is made with <i class="icon-heart" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a>
|
||||
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
|
||||
<!-- loader -->
|
||||
<div id="ftco-loader" class="show fullscreen"><svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#F96D00"/></svg></div>
|
||||
|
||||
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<script src="js/jquery-migrate-3.0.1.min.js"></script>
|
||||
<script src="js/popper.min.js"></script>
|
||||
<script src="js/bootstrap.min.js"></script>
|
||||
<script src="js/jquery.easing.1.3.js"></script>
|
||||
<script src="js/jquery.waypoints.min.js"></script>
|
||||
<script src="js/jquery.stellar.min.js"></script>
|
||||
<script src="js/owl.carousel.min.js"></script>
|
||||
<script src="js/jquery.magnific-popup.min.js"></script>
|
||||
<script src="js/aos.js"></script>
|
||||
<script src="js/jquery.animateNumber.min.js"></script>
|
||||
<script src="js/bootstrap-datepicker.js"></script>
|
||||
<script src="js/jquery.timepicker.min.js"></script>
|
||||
<script src="js/scrollax.min.js"></script>
|
||||
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVWaKrjvy3MaE7SQ74_uJiULgl1JY0H2s&sensor=false"></script>
|
||||
<script src="js/google-map.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
314
customer/template/bodyfit/coaches.html
Normal file
@ -0,0 +1,314 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>BodyFit - Free Bootstrap 4 Template by Colorlib</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
|
||||
<link rel="stylesheet" href="css/animate.css">
|
||||
|
||||
<link rel="stylesheet" href="css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="css/owl.theme.default.min.css">
|
||||
<link rel="stylesheet" href="css/magnific-popup.css">
|
||||
|
||||
<link rel="stylesheet" href="css/aos.css">
|
||||
|
||||
<link rel="stylesheet" href="css/ionicons.min.css">
|
||||
|
||||
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
|
||||
<link rel="stylesheet" href="css/jquery.timepicker.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" href="css/flaticon.css">
|
||||
<link rel="stylesheet" href="css/icomoon.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light" id="ftco-navbar">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html">BodyFit<small>Fitness</small></a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#ftco-nav" aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="oi oi-menu"></span> Menu
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="ftco-nav">
|
||||
<ul class="navbar-nav ml-auto">
|
||||
<li class="nav-item"><a href="index.html" class="nav-link">Home</a></li>
|
||||
<li class="nav-item"><a href="program.html" class="nav-link">Program</a></li>
|
||||
<li class="nav-item active"><a href="coaches.html" class="nav-link">Coaches</a></li>
|
||||
<li class="nav-item"><a href="schedule.html" class="nav-link">Schedule</a></li>
|
||||
<li class="nav-item"><a href="about.html" class="nav-link">About</a></li>
|
||||
<li class="nav-item"><a href="blog.html" class="nav-link">Blog</a></li>
|
||||
<li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- END nav -->
|
||||
|
||||
<section class="home-slider owl-carousel">
|
||||
|
||||
<div class="slider-item" style="background-image: url(images/bg_1.jpg);" data-stellar-background-ratio="0.5">
|
||||
<div class="overlay"></div>
|
||||
<div class="container">
|
||||
<div class="row slider-text justify-content-center align-items-center">
|
||||
|
||||
<div class="col-md-7 col-sm-12 text-center ftco-animate">
|
||||
<h1 class="mb-3 mt-5 bread">Coaches</h1>
|
||||
<p class="breadcrumbs"><span class="mr-2"><a href="index.html">Home</a></span> <span>Coaches</span></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="ftco-section">
|
||||
<div class="container">
|
||||
<div class="row justify-content-center mb-5">
|
||||
<div class="col-md-7 heading-section text-center ftco-animate">
|
||||
<h2 class="mb-4">Our Coaches</h2>
|
||||
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-6 d-flex">
|
||||
<div class="coach d-sm-flex align-items-stretch">
|
||||
<div class="img" style="background-image: url(images/trainer-1.jpg);"></div>
|
||||
<div class="text py-4 px-5 ftco-animate">
|
||||
<span class="subheading">Owner / Head Coach</span>
|
||||
<h3><a href="#">Oscar Brook</a></h3>
|
||||
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
|
||||
<ul class="ftco-social-media d-flex mt-4">
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-twitter"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-facebook"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-instagram"></span></a></li>
|
||||
</ul>
|
||||
<p></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 d-flex">
|
||||
<div class="coach d-sm-flex align-items-stretch">
|
||||
<div class="img" style="background-image: url(images/trainer-2.jpg);"></div>
|
||||
<div class="text py-4 px-5 ftco-animate">
|
||||
<span class="subheading">Owner / Head Coach</span>
|
||||
<h3><a href="#">Leonard Smith</a></h3>
|
||||
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
|
||||
<ul class="ftco-social-media d-flex mt-4">
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-twitter"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-facebook"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-instagram"></span></a></li>
|
||||
</ul>
|
||||
<p></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 d-flex">
|
||||
<div class="coach d-sm-flex align-items-stretch">
|
||||
<div class="img order-xl-last" style="background-image: url(images/trainer-3.jpg);"></div>
|
||||
<div class="text py-4 px-5 ftco-animate">
|
||||
<span class="subheading">Owner / Head Coach</span>
|
||||
<h3><a href="#">James Buffer</a></h3>
|
||||
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
|
||||
<ul class="ftco-social-media d-flex mt-4">
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-twitter"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-facebook"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-instagram"></span></a></li>
|
||||
</ul>
|
||||
<p></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 d-flex">
|
||||
<div class="coach d-sm-flex align-items-stretch">
|
||||
<div class="img order-xl-last" style="background-image: url(images/trainer-4.jpg);"></div>
|
||||
<div class="text py-4 px-5 ftco-animate">
|
||||
<span class="subheading">Owner / Head Coach</span>
|
||||
<h3><a href="#">Maricar Collins</a></h3>
|
||||
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
|
||||
<ul class="ftco-social-media d-flex mt-4">
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-twitter"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-facebook"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-instagram"></span></a></li>
|
||||
</ul>
|
||||
<p></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 d-flex">
|
||||
<div class="coach d-sm-flex align-items-stretch">
|
||||
<div class="img" style="background-image: url(images/trainer-5.jpg);"></div>
|
||||
<div class="text py-4 px-5 ftco-animate">
|
||||
<span class="subheading">Owner / Head Coach</span>
|
||||
<h3><a href="#">Patrece Miller</a></h3>
|
||||
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
|
||||
<ul class="ftco-social-media d-flex mt-4">
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-twitter"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-facebook"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-instagram"></span></a></li>
|
||||
</ul>
|
||||
<p></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 d-flex">
|
||||
<div class="coach d-sm-flex align-items-stretch">
|
||||
<div class="img" style="background-image: url(images/trainer-6.jpg);"></div>
|
||||
<div class="text py-4 px-5 ftco-animate">
|
||||
<span class="subheading">Owner / Head Coach</span>
|
||||
<h3><a href="#">Leonard Smith</a></h3>
|
||||
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
|
||||
<ul class="ftco-social-media d-flex mt-4">
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-twitter"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-facebook"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-instagram"></span></a></li>
|
||||
</ul>
|
||||
<p></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="ftco-gallery">
|
||||
<div class="container-wrap">
|
||||
<div class="row no-gutters">
|
||||
<div class="col-md-3 ftco-animate">
|
||||
<a href="gallery.html" class="gallery img d-flex align-items-center" style="background-image: url(images/gallery-1.jpg);">
|
||||
<div class="icon mb-4 d-flex align-items-center justify-content-center">
|
||||
<span class="icon-search"></span>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-3 ftco-animate">
|
||||
<a href="gallery.html" class="gallery img d-flex align-items-center" style="background-image: url(images/gallery-2.jpg);">
|
||||
<div class="icon mb-4 d-flex align-items-center justify-content-center">
|
||||
<span class="icon-search"></span>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-3 ftco-animate">
|
||||
<a href="gallery.html" class="gallery img d-flex align-items-center" style="background-image: url(images/gallery-3.jpg);">
|
||||
<div class="icon mb-4 d-flex align-items-center justify-content-center">
|
||||
<span class="icon-search"></span>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-3 ftco-animate">
|
||||
<a href="gallery.html" class="gallery img d-flex align-items-center" style="background-image: url(images/gallery-4.jpg);">
|
||||
<div class="icon mb-4 d-flex align-items-center justify-content-center">
|
||||
<span class="icon-search"></span>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer class="ftco-footer ftco-section img">
|
||||
<div class="overlay"></div>
|
||||
<div class="container">
|
||||
<div class="row mb-5">
|
||||
<div class="col-lg-3 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">About Us</h2>
|
||||
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
|
||||
<ul class="ftco-footer-social list-unstyled float-md-left float-lft mt-5">
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-twitter"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-facebook"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-instagram"></span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">Recent Blog</h2>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_1.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> Sept 15, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_2.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> Sept 15, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4 ml-md-4">
|
||||
<h2 class="ftco-heading-2">Services</h2>
|
||||
<ul class="list-unstyled">
|
||||
<li><a href="#" class="py-2 d-block">Cooked</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Deliver</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Quality Foods</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Mixed</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">Have a Questions?</h2>
|
||||
<div class="block-23 mb-3">
|
||||
<ul>
|
||||
<li><span class="icon icon-map-marker"></span><span class="text">203 Fake St. Mountain View, San Francisco, California, USA</span></li>
|
||||
<li><a href="#"><span class="icon icon-phone"></span><span class="text">+2 392 3929 210</span></a></li>
|
||||
<li><a href="#"><span class="icon icon-envelope"></span><span class="text">info@yourdomain.com</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12 text-center">
|
||||
|
||||
<p><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
|
||||
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | This template is made with <i class="icon-heart" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a>
|
||||
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
|
||||
<!-- loader -->
|
||||
<div id="ftco-loader" class="show fullscreen"><svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#F96D00"/></svg></div>
|
||||
|
||||
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<script src="js/jquery-migrate-3.0.1.min.js"></script>
|
||||
<script src="js/popper.min.js"></script>
|
||||
<script src="js/bootstrap.min.js"></script>
|
||||
<script src="js/jquery.easing.1.3.js"></script>
|
||||
<script src="js/jquery.waypoints.min.js"></script>
|
||||
<script src="js/jquery.stellar.min.js"></script>
|
||||
<script src="js/owl.carousel.min.js"></script>
|
||||
<script src="js/jquery.magnific-popup.min.js"></script>
|
||||
<script src="js/aos.js"></script>
|
||||
<script src="js/jquery.animateNumber.min.js"></script>
|
||||
<script src="js/bootstrap-datepicker.js"></script>
|
||||
<script src="js/jquery.timepicker.min.js"></script>
|
||||
<script src="js/scrollax.min.js"></script>
|
||||
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVWaKrjvy3MaE7SQ74_uJiULgl1JY0H2s&sensor=false"></script>
|
||||
<script src="js/google-map.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
224
customer/template/bodyfit/contact.html
Normal file
@ -0,0 +1,224 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>BodyFit - Free Bootstrap 4 Template by Colorlib</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
|
||||
<link rel="stylesheet" href="css/animate.css">
|
||||
|
||||
<link rel="stylesheet" href="css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="css/owl.theme.default.min.css">
|
||||
<link rel="stylesheet" href="css/magnific-popup.css">
|
||||
|
||||
<link rel="stylesheet" href="css/aos.css">
|
||||
|
||||
<link rel="stylesheet" href="css/ionicons.min.css">
|
||||
|
||||
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
|
||||
<link rel="stylesheet" href="css/jquery.timepicker.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" href="css/flaticon.css">
|
||||
<link rel="stylesheet" href="css/icomoon.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light" id="ftco-navbar">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html">BodyFit<small>Fitness</small></a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#ftco-nav" aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="oi oi-menu"></span> Menu
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="ftco-nav">
|
||||
<ul class="navbar-nav ml-auto">
|
||||
<li class="nav-item"><a href="index.html" class="nav-link">Home</a></li>
|
||||
<li class="nav-item"><a href="program.html" class="nav-link">Program</a></li>
|
||||
<li class="nav-item"><a href="coaches.html" class="nav-link">Coaches</a></li>
|
||||
<li class="nav-item"><a href="schedule.html" class="nav-link">Schedule</a></li>
|
||||
<li class="nav-item"><a href="about.html" class="nav-link">About</a></li>
|
||||
<li class="nav-item"><a href="blog.html" class="nav-link">Blog</a></li>
|
||||
<li class="nav-item active"><a href="contact.html" class="nav-link">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- END nav -->
|
||||
|
||||
<section class="home-slider owl-carousel">
|
||||
|
||||
<div class="slider-item" style="background-image: url(images/bg_1.jpg);" data-stellar-background-ratio="0.5">
|
||||
<div class="overlay"></div>
|
||||
<div class="container">
|
||||
<div class="row slider-text justify-content-center align-items-center">
|
||||
|
||||
<div class="col-md-7 col-sm-12 text-center ftco-animate">
|
||||
<h1 class="mb-3 mt-5 bread">Contact</h1>
|
||||
<p class="breadcrumbs"><span class="mr-2"><a href="index.html">Home</a></span> <span>Contact</span></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="ftco-section contact-section">
|
||||
<div class="container mt-5">
|
||||
<div class="row block-9">
|
||||
<div class="col-md-4 contact-info ftco-animate">
|
||||
<div class="row">
|
||||
<div class="col-md-12 mb-4">
|
||||
<h2 class="h4">Contact Information</h2>
|
||||
</div>
|
||||
<div class="col-md-12 mb-3">
|
||||
<p><span>Address:</span> 198 West 21th Street, Suite 721 New York NY 10016</p>
|
||||
</div>
|
||||
<div class="col-md-12 mb-3">
|
||||
<p><span>Phone:</span> <a href="tel://1234567920">+ 1235 2355 98</a></p>
|
||||
</div>
|
||||
<div class="col-md-12 mb-3">
|
||||
<p><span>Email:</span> <a href="mailto:info@yoursite.com">info@yoursite.com</a></p>
|
||||
</div>
|
||||
<div class="col-md-12 mb-3">
|
||||
<p><span>Website:</span> <a href="#">yoursite.com</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-1"></div>
|
||||
<div class="col-md-6 ftco-animate">
|
||||
<form action="#" class="contact-form">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" placeholder="Your Name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" placeholder="Your Email">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" placeholder="Subject">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<textarea name="" id="" cols="30" rows="7" class="form-control" placeholder="Message"></textarea>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Send Message" class="btn btn-primary py-3 px-5">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div id="map" class="map"></div>
|
||||
|
||||
<footer class="ftco-footer ftco-section img">
|
||||
<div class="overlay"></div>
|
||||
<div class="container">
|
||||
<div class="row mb-5">
|
||||
<div class="col-lg-3 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">About Us</h2>
|
||||
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
|
||||
<ul class="ftco-footer-social list-unstyled float-md-left float-lft mt-5">
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-twitter"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-facebook"></span></a></li>
|
||||
<li class="ftco-animate"><a href="#"><span class="icon-instagram"></span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">Recent Blog</h2>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_1.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> Sept 15, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="block-21 mb-4 d-flex">
|
||||
<a class="blog-img mr-4" style="background-image: url(images/image_2.jpg);"></a>
|
||||
<div class="text">
|
||||
<h3 class="heading"><a href="#">Even the all-powerful Pointing has no control about</a></h3>
|
||||
<div class="meta">
|
||||
<div><a href="#"><span class="icon-calendar"></span> Sept 15, 2018</a></div>
|
||||
<div><a href="#"><span class="icon-person"></span> Admin</a></div>
|
||||
<div><a href="#"><span class="icon-chat"></span> 19</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4 ml-md-4">
|
||||
<h2 class="ftco-heading-2">Services</h2>
|
||||
<ul class="list-unstyled">
|
||||
<li><a href="#" class="py-2 d-block">Cooked</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Deliver</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Quality Foods</a></li>
|
||||
<li><a href="#" class="py-2 d-block">Mixed</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-6 mb-5 mb-md-5">
|
||||
<div class="ftco-footer-widget mb-4">
|
||||
<h2 class="ftco-heading-2">Have a Questions?</h2>
|
||||
<div class="block-23 mb-3">
|
||||
<ul>
|
||||
<li><span class="icon icon-map-marker"></span><span class="text">203 Fake St. Mountain View, San Francisco, California, USA</span></li>
|
||||
<li><a href="#"><span class="icon icon-phone"></span><span class="text">+2 392 3929 210</span></a></li>
|
||||
<li><a href="#"><span class="icon icon-envelope"></span><span class="text">info@yourdomain.com</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12 text-center">
|
||||
|
||||
<p><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
|
||||
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | This template is made with <i class="icon-heart" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a>
|
||||
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
|
||||
<!-- loader -->
|
||||
<div id="ftco-loader" class="show fullscreen"><svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#F96D00"/></svg></div>
|
||||
|
||||
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<script src="js/jquery-migrate-3.0.1.min.js"></script>
|
||||
<script src="js/popper.min.js"></script>
|
||||
<script src="js/bootstrap.min.js"></script>
|
||||
<script src="js/jquery.easing.1.3.js"></script>
|
||||
<script src="js/jquery.waypoints.min.js"></script>
|
||||
<script src="js/jquery.stellar.min.js"></script>
|
||||
<script src="js/owl.carousel.min.js"></script>
|
||||
<script src="js/jquery.magnific-popup.min.js"></script>
|
||||
<script src="js/aos.js"></script>
|
||||
<script src="js/jquery.animateNumber.min.js"></script>
|
||||
<script src="js/bootstrap-datepicker.js"></script>
|
||||
<script src="js/jquery.timepicker.min.js"></script>
|
||||
<script src="js/scrollax.min.js"></script>
|
||||
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVWaKrjvy3MaE7SQ74_uJiULgl1JY0H2s&sensor=false"></script>
|
||||
<script src="js/google-map.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
BIN
customer/template/bodyfit/css/ajax-loader.gif
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
3377
customer/template/bodyfit/css/animate.css
vendored
Normal file
2
customer/template/bodyfit/css/aos.css
Normal file
512
customer/template/bodyfit/css/bootstrap-datepicker.css
vendored
Normal file
@ -0,0 +1,512 @@
|
||||
/*!
|
||||
* Datepicker for Bootstrap
|
||||
*
|
||||
* Copyright 2012 Stefan Petre
|
||||
* Improvements by Andrew Rowls
|
||||
* Licensed under the Apache License v2.0
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*/
|
||||
.datepicker {
|
||||
padding: 4px;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
direction: ltr;
|
||||
/*.dow {
|
||||
border-top: 1px solid #ddd !important;
|
||||
}*/
|
||||
}
|
||||
.datepicker-inline {
|
||||
width: 220px;
|
||||
}
|
||||
.datepicker.datepicker-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.datepicker.datepicker-rtl table tr td span {
|
||||
float: right;
|
||||
}
|
||||
.datepicker-dropdown {
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
.datepicker-dropdown:before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
border-left: 7px solid transparent;
|
||||
border-right: 7px solid transparent;
|
||||
border-bottom: 7px solid #ccc;
|
||||
border-top: 0;
|
||||
border-bottom-color: rgba(0, 0, 0, 0.2);
|
||||
position: absolute;
|
||||
}
|
||||
.datepicker-dropdown:after {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
border-left: 6px solid transparent;
|
||||
border-right: 6px solid transparent;
|
||||
border-bottom: 6px solid #ffffff;
|
||||
border-top: 0;
|
||||
position: absolute;
|
||||
}
|
||||
.datepicker-dropdown.datepicker-orient-left:before {
|
||||
left: 6px;
|
||||
}
|
||||
.datepicker-dropdown.datepicker-orient-left:after {
|
||||
left: 7px;
|
||||
}
|
||||
.datepicker-dropdown.datepicker-orient-right:before {
|
||||
right: 6px;
|
||||
}
|
||||
.datepicker-dropdown.datepicker-orient-right:after {
|
||||
right: 7px;
|
||||
}
|
||||
.datepicker-dropdown.datepicker-orient-top:before {
|
||||
top: -7px;
|
||||
}
|
||||
.datepicker-dropdown.datepicker-orient-top:after {
|
||||
top: -6px;
|
||||
}
|
||||
.datepicker-dropdown.datepicker-orient-bottom:before {
|
||||
bottom: -7px;
|
||||
border-bottom: 0;
|
||||
border-top: 7px solid #999;
|
||||
}
|
||||
.datepicker-dropdown.datepicker-orient-bottom:after {
|
||||
bottom: -6px;
|
||||
border-bottom: 0;
|
||||
border-top: 6px solid #ffffff;
|
||||
}
|
||||
.datepicker > div {
|
||||
display: none;
|
||||
}
|
||||
.datepicker.days div.datepicker-days {
|
||||
display: block;
|
||||
}
|
||||
.datepicker.months div.datepicker-months {
|
||||
display: block;
|
||||
}
|
||||
.datepicker.years div.datepicker-years {
|
||||
display: block;
|
||||
}
|
||||
.datepicker table {
|
||||
margin: 0;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.datepicker td,
|
||||
.datepicker th {
|
||||
text-align: center;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
border: none;
|
||||
}
|
||||
.table-striped .datepicker table tr td,
|
||||
.table-striped .datepicker table tr th {
|
||||
background-color: transparent;
|
||||
}
|
||||
.datepicker table tr td.day:hover,
|
||||
.datepicker table tr td.day.focused {
|
||||
background: #eeeeee;
|
||||
cursor: pointer;
|
||||
}
|
||||
.datepicker table tr td.old,
|
||||
.datepicker table tr td.new {
|
||||
color: #999999;
|
||||
}
|
||||
.datepicker table tr td.disabled,
|
||||
.datepicker table tr td.disabled:hover {
|
||||
background: none;
|
||||
color: #999999;
|
||||
cursor: default;
|
||||
}
|
||||
.datepicker table tr td.today,
|
||||
.datepicker table tr td.today:hover,
|
||||
.datepicker table tr td.today.disabled,
|
||||
.datepicker table tr td.today.disabled:hover {
|
||||
background-color: #fde19a;
|
||||
background-image: -moz-linear-gradient(top, #fdd49a, #fdf59a);
|
||||
background-image: -ms-linear-gradient(top, #fdd49a, #fdf59a);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
|
||||
background-image: -webkit-linear-gradient(top, #fdd49a, #fdf59a);
|
||||
background-image: -o-linear-gradient(top, #fdd49a, #fdf59a);
|
||||
background-image: linear-gradient(top, #fdd49a, #fdf59a);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
|
||||
border-color: #fdf59a #fdf59a #fbed50;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
||||
color: #000;
|
||||
}
|
||||
.datepicker table tr td.today:hover,
|
||||
.datepicker table tr td.today:hover:hover,
|
||||
.datepicker table tr td.today.disabled:hover,
|
||||
.datepicker table tr td.today.disabled:hover:hover,
|
||||
.datepicker table tr td.today:active,
|
||||
.datepicker table tr td.today:hover:active,
|
||||
.datepicker table tr td.today.disabled:active,
|
||||
.datepicker table tr td.today.disabled:hover:active,
|
||||
.datepicker table tr td.today.active,
|
||||
.datepicker table tr td.today:hover.active,
|
||||
.datepicker table tr td.today.disabled.active,
|
||||
.datepicker table tr td.today.disabled:hover.active,
|
||||
.datepicker table tr td.today.disabled,
|
||||
.datepicker table tr td.today:hover.disabled,
|
||||
.datepicker table tr td.today.disabled.disabled,
|
||||
.datepicker table tr td.today.disabled:hover.disabled,
|
||||
.datepicker table tr td.today[disabled],
|
||||
.datepicker table tr td.today:hover[disabled],
|
||||
.datepicker table tr td.today.disabled[disabled],
|
||||
.datepicker table tr td.today.disabled:hover[disabled] {
|
||||
background-color: #fdf59a;
|
||||
}
|
||||
.datepicker table tr td.today:active,
|
||||
.datepicker table tr td.today:hover:active,
|
||||
.datepicker table tr td.today.disabled:active,
|
||||
.datepicker table tr td.today.disabled:hover:active,
|
||||
.datepicker table tr td.today.active,
|
||||
.datepicker table tr td.today:hover.active,
|
||||
.datepicker table tr td.today.disabled.active,
|
||||
.datepicker table tr td.today.disabled:hover.active {
|
||||
background-color: #fbf069 \9;
|
||||
}
|
||||
.datepicker table tr td.today:hover:hover {
|
||||
color: #000;
|
||||
}
|
||||
.datepicker table tr td.today.active:hover {
|
||||
color: #fff;
|
||||
}
|
||||
.datepicker table tr td.range,
|
||||
.datepicker table tr td.range:hover,
|
||||
.datepicker table tr td.range.disabled,
|
||||
.datepicker table tr td.range.disabled:hover {
|
||||
background: #eeeeee;
|
||||
-webkit-border-radius: 0;
|
||||
-moz-border-radius: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
.datepicker table tr td.range.today,
|
||||
.datepicker table tr td.range.today:hover,
|
||||
.datepicker table tr td.range.today.disabled,
|
||||
.datepicker table tr td.range.today.disabled:hover {
|
||||
background-color: #f3d17a;
|
||||
background-image: -moz-linear-gradient(top, #f3c17a, #f3e97a);
|
||||
background-image: -ms-linear-gradient(top, #f3c17a, #f3e97a);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3c17a), to(#f3e97a));
|
||||
background-image: -webkit-linear-gradient(top, #f3c17a, #f3e97a);
|
||||
background-image: -o-linear-gradient(top, #f3c17a, #f3e97a);
|
||||
background-image: linear-gradient(top, #f3c17a, #f3e97a);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
|
||||
border-color: #f3e97a #f3e97a #edde34;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
||||
-webkit-border-radius: 0;
|
||||
-moz-border-radius: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
.datepicker table tr td.range.today:hover,
|
||||
.datepicker table tr td.range.today:hover:hover,
|
||||
.datepicker table tr td.range.today.disabled:hover,
|
||||
.datepicker table tr td.range.today.disabled:hover:hover,
|
||||
.datepicker table tr td.range.today:active,
|
||||
.datepicker table tr td.range.today:hover:active,
|
||||
.datepicker table tr td.range.today.disabled:active,
|
||||
.datepicker table tr td.range.today.disabled:hover:active,
|
||||
.datepicker table tr td.range.today.active,
|
||||
.datepicker table tr td.range.today:hover.active,
|
||||
.datepicker table tr td.range.today.disabled.active,
|
||||
.datepicker table tr td.range.today.disabled:hover.active,
|
||||
.datepicker table tr td.range.today.disabled,
|
||||
.datepicker table tr td.range.today:hover.disabled,
|
||||
.datepicker table tr td.range.today.disabled.disabled,
|
||||
.datepicker table tr td.range.today.disabled:hover.disabled,
|
||||
.datepicker table tr td.range.today[disabled],
|
||||
.datepicker table tr td.range.today:hover[disabled],
|
||||
.datepicker table tr td.range.today.disabled[disabled],
|
||||
.datepicker table tr td.range.today.disabled:hover[disabled] {
|
||||
background-color: #f3e97a;
|
||||
}
|
||||
.datepicker table tr td.range.today:active,
|
||||
.datepicker table tr td.range.today:hover:active,
|
||||
.datepicker table tr td.range.today.disabled:active,
|
||||
.datepicker table tr td.range.today.disabled:hover:active,
|
||||
.datepicker table tr td.range.today.active,
|
||||
.datepicker table tr td.range.today:hover.active,
|
||||
.datepicker table tr td.range.today.disabled.active,
|
||||
.datepicker table tr td.range.today.disabled:hover.active {
|
||||
background-color: #efe24b \9;
|
||||
}
|
||||
.datepicker table tr td.selected,
|
||||
.datepicker table tr td.selected:hover,
|
||||
.datepicker table tr td.selected.disabled,
|
||||
.datepicker table tr td.selected.disabled:hover {
|
||||
background-color: #9e9e9e;
|
||||
background-image: -moz-linear-gradient(top, #b3b3b3, #808080);
|
||||
background-image: -ms-linear-gradient(top, #b3b3b3, #808080);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b3b3b3), to(#808080));
|
||||
background-image: -webkit-linear-gradient(top, #b3b3b3, #808080);
|
||||
background-image: -o-linear-gradient(top, #b3b3b3, #808080);
|
||||
background-image: linear-gradient(top, #b3b3b3, #808080);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
|
||||
border-color: #808080 #808080 #595959;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
||||
color: #fff;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
.datepicker table tr td.selected:hover,
|
||||
.datepicker table tr td.selected:hover:hover,
|
||||
.datepicker table tr td.selected.disabled:hover,
|
||||
.datepicker table tr td.selected.disabled:hover:hover,
|
||||
.datepicker table tr td.selected:active,
|
||||
.datepicker table tr td.selected:hover:active,
|
||||
.datepicker table tr td.selected.disabled:active,
|
||||
.datepicker table tr td.selected.disabled:hover:active,
|
||||
.datepicker table tr td.selected.active,
|
||||
.datepicker table tr td.selected:hover.active,
|
||||
.datepicker table tr td.selected.disabled.active,
|
||||
.datepicker table tr td.selected.disabled:hover.active,
|
||||
.datepicker table tr td.selected.disabled,
|
||||
.datepicker table tr td.selected:hover.disabled,
|
||||
.datepicker table tr td.selected.disabled.disabled,
|
||||
.datepicker table tr td.selected.disabled:hover.disabled,
|
||||
.datepicker table tr td.selected[disabled],
|
||||
.datepicker table tr td.selected:hover[disabled],
|
||||
.datepicker table tr td.selected.disabled[disabled],
|
||||
.datepicker table tr td.selected.disabled:hover[disabled] {
|
||||
background-color: #808080;
|
||||
}
|
||||
.datepicker table tr td.selected:active,
|
||||
.datepicker table tr td.selected:hover:active,
|
||||
.datepicker table tr td.selected.disabled:active,
|
||||
.datepicker table tr td.selected.disabled:hover:active,
|
||||
.datepicker table tr td.selected.active,
|
||||
.datepicker table tr td.selected:hover.active,
|
||||
.datepicker table tr td.selected.disabled.active,
|
||||
.datepicker table tr td.selected.disabled:hover.active {
|
||||
background-color: #666666 \9;
|
||||
}
|
||||
.datepicker table tr td.active,
|
||||
.datepicker table tr td.active:hover,
|
||||
.datepicker table tr td.active.disabled,
|
||||
.datepicker table tr td.active.disabled:hover {
|
||||
background-color: #006dcc;
|
||||
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
|
||||
background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
|
||||
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
|
||||
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
|
||||
background-image: linear-gradient(top, #0088cc, #0044cc);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
|
||||
border-color: #0044cc #0044cc #002a80;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
||||
color: #fff;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
.datepicker table tr td.active:hover,
|
||||
.datepicker table tr td.active:hover:hover,
|
||||
.datepicker table tr td.active.disabled:hover,
|
||||
.datepicker table tr td.active.disabled:hover:hover,
|
||||
.datepicker table tr td.active:active,
|
||||
.datepicker table tr td.active:hover:active,
|
||||
.datepicker table tr td.active.disabled:active,
|
||||
.datepicker table tr td.active.disabled:hover:active,
|
||||
.datepicker table tr td.active.active,
|
||||
.datepicker table tr td.active:hover.active,
|
||||
.datepicker table tr td.active.disabled.active,
|
||||
.datepicker table tr td.active.disabled:hover.active,
|
||||
.datepicker table tr td.active.disabled,
|
||||
.datepicker table tr td.active:hover.disabled,
|
||||
.datepicker table tr td.active.disabled.disabled,
|
||||
.datepicker table tr td.active.disabled:hover.disabled,
|
||||
.datepicker table tr td.active[disabled],
|
||||
.datepicker table tr td.active:hover[disabled],
|
||||
.datepicker table tr td.active.disabled[disabled],
|
||||
.datepicker table tr td.active.disabled:hover[disabled] {
|
||||
background-color: #0044cc;
|
||||
}
|
||||
.datepicker table tr td.active:active,
|
||||
.datepicker table tr td.active:hover:active,
|
||||
.datepicker table tr td.active.disabled:active,
|
||||
.datepicker table tr td.active.disabled:hover:active,
|
||||
.datepicker table tr td.active.active,
|
||||
.datepicker table tr td.active:hover.active,
|
||||
.datepicker table tr td.active.disabled.active,
|
||||
.datepicker table tr td.active.disabled:hover.active {
|
||||
background-color: #003399 \9;
|
||||
}
|
||||
.datepicker table tr td span {
|
||||
display: block;
|
||||
width: 23%;
|
||||
height: 54px;
|
||||
line-height: 54px;
|
||||
float: left;
|
||||
margin: 1%;
|
||||
cursor: pointer;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.datepicker table tr td span:hover {
|
||||
background: #eeeeee;
|
||||
}
|
||||
.datepicker table tr td span.disabled,
|
||||
.datepicker table tr td span.disabled:hover {
|
||||
background: none;
|
||||
color: #999999;
|
||||
cursor: default;
|
||||
}
|
||||
.datepicker table tr td span.active,
|
||||
.datepicker table tr td span.active:hover,
|
||||
.datepicker table tr td span.active.disabled,
|
||||
.datepicker table tr td span.active.disabled:hover {
|
||||
background-color: #006dcc;
|
||||
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
|
||||
background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
|
||||
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
|
||||
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
|
||||
background-image: linear-gradient(top, #0088cc, #0044cc);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
|
||||
border-color: #0044cc #0044cc #002a80;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
||||
color: #fff;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
.datepicker table tr td span.active:hover,
|
||||
.datepicker table tr td span.active:hover:hover,
|
||||
.datepicker table tr td span.active.disabled:hover,
|
||||
.datepicker table tr td span.active.disabled:hover:hover,
|
||||
.datepicker table tr td span.active:active,
|
||||
.datepicker table tr td span.active:hover:active,
|
||||
.datepicker table tr td span.active.disabled:active,
|
||||
.datepicker table tr td span.active.disabled:hover:active,
|
||||
.datepicker table tr td span.active.active,
|
||||
.datepicker table tr td span.active:hover.active,
|
||||
.datepicker table tr td span.active.disabled.active,
|
||||
.datepicker table tr td span.active.disabled:hover.active,
|
||||
.datepicker table tr td span.active.disabled,
|
||||
.datepicker table tr td span.active:hover.disabled,
|
||||
.datepicker table tr td span.active.disabled.disabled,
|
||||
.datepicker table tr td span.active.disabled:hover.disabled,
|
||||
.datepicker table tr td span.active[disabled],
|
||||
.datepicker table tr td span.active:hover[disabled],
|
||||
.datepicker table tr td span.active.disabled[disabled],
|
||||
.datepicker table tr td span.active.disabled:hover[disabled] {
|
||||
background-color: #0044cc;
|
||||
}
|
||||
.datepicker table tr td span.active:active,
|
||||
.datepicker table tr td span.active:hover:active,
|
||||
.datepicker table tr td span.active.disabled:active,
|
||||
.datepicker table tr td span.active.disabled:hover:active,
|
||||
.datepicker table tr td span.active.active,
|
||||
.datepicker table tr td span.active:hover.active,
|
||||
.datepicker table tr td span.active.disabled.active,
|
||||
.datepicker table tr td span.active.disabled:hover.active {
|
||||
background-color: #003399 \9;
|
||||
}
|
||||
.datepicker table tr td span.old,
|
||||
.datepicker table tr td span.new {
|
||||
color: #999999;
|
||||
}
|
||||
.datepicker th.datepicker-switch {
|
||||
width: 145px;
|
||||
}
|
||||
.datepicker thead tr:first-child th,
|
||||
.datepicker tfoot tr th {
|
||||
cursor: pointer;
|
||||
}
|
||||
.datepicker thead tr:first-child th:hover,
|
||||
.datepicker tfoot tr th:hover {
|
||||
background: #eeeeee;
|
||||
}
|
||||
.datepicker .cw {
|
||||
font-size: 10px;
|
||||
width: 12px;
|
||||
padding: 0 2px 0 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.datepicker thead tr:first-child th.cw {
|
||||
cursor: default;
|
||||
background-color: transparent;
|
||||
}
|
||||
.input-append.date .add-on i,
|
||||
.input-prepend.date .add-on i {
|
||||
cursor: pointer;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.input-daterange input {
|
||||
text-align: center;
|
||||
}
|
||||
.input-daterange input:first-child {
|
||||
-webkit-border-radius: 3px 0 0 3px;
|
||||
-moz-border-radius: 3px 0 0 3px;
|
||||
border-radius: 3px 0 0 3px;
|
||||
}
|
||||
.input-daterange input:last-child {
|
||||
-webkit-border-radius: 0 3px 3px 0;
|
||||
-moz-border-radius: 0 3px 3px 0;
|
||||
border-radius: 0 3px 3px 0;
|
||||
}
|
||||
.input-daterange .add-on {
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
min-width: 16px;
|
||||
height: 20px;
|
||||
padding: 4px 5px;
|
||||
font-weight: normal;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
text-shadow: 0 1px 0 #ffffff;
|
||||
vertical-align: middle;
|
||||
background-color: #eeeeee;
|
||||
border: 1px solid #ccc;
|
||||
margin-left: -5px;
|
||||
margin-right: -5px;
|
||||
}
|
||||
.datepicker.dropdown-menu {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1000;
|
||||
float: left;
|
||||
display: none;
|
||||
min-width: 160px;
|
||||
list-style: none;
|
||||
background-color: #ffffff;
|
||||
border: 1px solid #ccc;
|
||||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||
-webkit-background-clip: padding-box;
|
||||
-moz-background-clip: padding;
|
||||
background-clip: padding-box;
|
||||
*border-right-width: 2px;
|
||||
*border-bottom-width: 2px;
|
||||
color: #333333;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 13px;
|
||||
line-height: 20px;
|
||||
}
|
||||
.datepicker.dropdown-menu th,
|
||||
.datepicker.dropdown-menu td {
|
||||
padding: 4px 5px;
|
||||
}
|
||||
7
customer/template/bodyfit/css/bootstrap.min.css
vendored
Normal file
1708
customer/template/bodyfit/css/bootstrap/bootstrap-grid.css
vendored
Normal file
272
customer/template/bodyfit/css/bootstrap/bootstrap-reboot.css
vendored
Normal file
@ -0,0 +1,272 @@
|
||||
/*!
|
||||
* Bootstrap Reboot v4.1.0 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2018 The Bootstrap Authors
|
||||
* Copyright 2011-2018 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box; }
|
||||
|
||||
html {
|
||||
font-family: sans-serif;
|
||||
line-height: 1.15;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
-ms-overflow-style: scrollbar;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
|
||||
|
||||
@-ms-viewport {
|
||||
width: device-width; }
|
||||
|
||||
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
|
||||
display: block; }
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.5;
|
||||
color: #212529;
|
||||
text-align: left;
|
||||
background-color: #fff; }
|
||||
|
||||
[tabindex="-1"]:focus {
|
||||
outline: 0 !important; }
|
||||
|
||||
hr {
|
||||
-webkit-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
overflow: visible; }
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem; }
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem; }
|
||||
|
||||
abbr[title],
|
||||
abbr[data-original-title] {
|
||||
text-decoration: underline;
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
border-bottom: 0; }
|
||||
|
||||
address {
|
||||
margin-bottom: 1rem;
|
||||
font-style: normal;
|
||||
line-height: inherit; }
|
||||
|
||||
ol,
|
||||
ul,
|
||||
dl {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem; }
|
||||
|
||||
ol ol,
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol {
|
||||
margin-bottom: 0; }
|
||||
|
||||
dt {
|
||||
font-weight: 700; }
|
||||
|
||||
dd {
|
||||
margin-bottom: .5rem;
|
||||
margin-left: 0; }
|
||||
|
||||
blockquote {
|
||||
margin: 0 0 1rem; }
|
||||
|
||||
dfn {
|
||||
font-style: italic; }
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder; }
|
||||
|
||||
small {
|
||||
font-size: 80%; }
|
||||
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
vertical-align: baseline; }
|
||||
|
||||
sub {
|
||||
bottom: -.25em; }
|
||||
|
||||
sup {
|
||||
top: -.5em; }
|
||||
|
||||
a {
|
||||
color: #78d5ef;
|
||||
text-decoration: none;
|
||||
background-color: transparent;
|
||||
-webkit-text-decoration-skip: objects; }
|
||||
a:hover {
|
||||
color: #34c0e7;
|
||||
text-decoration: underline; }
|
||||
|
||||
a:not([href]):not([tabindex]) {
|
||||
color: inherit;
|
||||
text-decoration: none; }
|
||||
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
|
||||
color: inherit;
|
||||
text-decoration: none; }
|
||||
a:not([href]):not([tabindex]):focus {
|
||||
outline: 0; }
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, monospace;
|
||||
font-size: 1em; }
|
||||
|
||||
pre {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto;
|
||||
-ms-overflow-style: scrollbar; }
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem; }
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
border-style: none; }
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden; }
|
||||
|
||||
table {
|
||||
border-collapse: collapse; }
|
||||
|
||||
caption {
|
||||
padding-top: 0.75rem;
|
||||
padding-bottom: 0.75rem;
|
||||
color: #6c757d;
|
||||
text-align: left;
|
||||
caption-side: bottom; }
|
||||
|
||||
th {
|
||||
text-align: inherit; }
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
margin-bottom: 0.5rem; }
|
||||
|
||||
button {
|
||||
border-radius: 0; }
|
||||
|
||||
button:focus {
|
||||
outline: 1px dotted;
|
||||
outline: 5px auto -webkit-focus-ring-color; }
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
optgroup,
|
||||
textarea {
|
||||
margin: 0;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit; }
|
||||
|
||||
button,
|
||||
input {
|
||||
overflow: visible; }
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none; }
|
||||
|
||||
button,
|
||||
html [type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button; }
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none; }
|
||||
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
padding: 0; }
|
||||
|
||||
input[type="date"],
|
||||
input[type="time"],
|
||||
input[type="datetime-local"],
|
||||
input[type="month"] {
|
||||
-webkit-appearance: listbox; }
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
resize: vertical; }
|
||||
|
||||
fieldset {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0; }
|
||||
|
||||
legend {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: .5rem;
|
||||
font-size: 1.5rem;
|
||||
line-height: inherit;
|
||||
color: inherit;
|
||||
white-space: normal; }
|
||||
|
||||
progress {
|
||||
vertical-align: baseline; }
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto; }
|
||||
|
||||
[type="search"] {
|
||||
outline-offset: -2px;
|
||||
-webkit-appearance: none; }
|
||||
|
||||
[type="search"]::-webkit-search-cancel-button,
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none; }
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button; }
|
||||
|
||||
output {
|
||||
display: inline-block; }
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
cursor: pointer; }
|
||||
|
||||
template {
|
||||
display: none; }
|
||||
|
||||
[hidden] {
|
||||
display: none !important; }
|
||||
272
customer/template/bodyfit/css/css/bootstrap-reboot.css
vendored
Normal file
@ -0,0 +1,272 @@
|
||||
/*!
|
||||
* Bootstrap Reboot v4.1.0 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2018 The Bootstrap Authors
|
||||
* Copyright 2011-2018 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box; }
|
||||
|
||||
html {
|
||||
font-family: sans-serif;
|
||||
line-height: 1.15;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
-ms-overflow-style: scrollbar;
|
||||
-webkit-tap-highlight-color: transparent; }
|
||||
|
||||
@-ms-viewport {
|
||||
width: device-width; }
|
||||
|
||||
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
|
||||
display: block; }
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.5;
|
||||
color: #212529;
|
||||
text-align: left;
|
||||
background-color: #fff; }
|
||||
|
||||
[tabindex="-1"]:focus {
|
||||
outline: 0 !important; }
|
||||
|
||||
hr {
|
||||
-webkit-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
overflow: visible; }
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem; }
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem; }
|
||||
|
||||
abbr[title],
|
||||
abbr[data-original-title] {
|
||||
text-decoration: underline;
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
border-bottom: 0; }
|
||||
|
||||
address {
|
||||
margin-bottom: 1rem;
|
||||
font-style: normal;
|
||||
line-height: inherit; }
|
||||
|
||||
ol,
|
||||
ul,
|
||||
dl {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem; }
|
||||
|
||||
ol ol,
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol {
|
||||
margin-bottom: 0; }
|
||||
|
||||
dt {
|
||||
font-weight: 700; }
|
||||
|
||||
dd {
|
||||
margin-bottom: .5rem;
|
||||
margin-left: 0; }
|
||||
|
||||
blockquote {
|
||||
margin: 0 0 1rem; }
|
||||
|
||||
dfn {
|
||||
font-style: italic; }
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder; }
|
||||
|
||||
small {
|
||||
font-size: 80%; }
|
||||
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
vertical-align: baseline; }
|
||||
|
||||
sub {
|
||||
bottom: -.25em; }
|
||||
|
||||
sup {
|
||||
top: -.5em; }
|
||||
|
||||
a {
|
||||
color: #007bff;
|
||||
text-decoration: none;
|
||||
background-color: transparent;
|
||||
-webkit-text-decoration-skip: objects; }
|
||||
a:hover {
|
||||
color: #0056b3;
|
||||
text-decoration: underline; }
|
||||
|
||||
a:not([href]):not([tabindex]) {
|
||||
color: inherit;
|
||||
text-decoration: none; }
|
||||
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
|
||||
color: inherit;
|
||||
text-decoration: none; }
|
||||
a:not([href]):not([tabindex]):focus {
|
||||
outline: 0; }
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, monospace;
|
||||
font-size: 1em; }
|
||||
|
||||
pre {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto;
|
||||
-ms-overflow-style: scrollbar; }
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem; }
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
border-style: none; }
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden; }
|
||||
|
||||
table {
|
||||
border-collapse: collapse; }
|
||||
|
||||
caption {
|
||||
padding-top: 0.75rem;
|
||||
padding-bottom: 0.75rem;
|
||||
color: #6c757d;
|
||||
text-align: left;
|
||||
caption-side: bottom; }
|
||||
|
||||
th {
|
||||
text-align: inherit; }
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
margin-bottom: 0.5rem; }
|
||||
|
||||
button {
|
||||
border-radius: 0; }
|
||||
|
||||
button:focus {
|
||||
outline: 1px dotted;
|
||||
outline: 5px auto -webkit-focus-ring-color; }
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
optgroup,
|
||||
textarea {
|
||||
margin: 0;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit; }
|
||||
|
||||
button,
|
||||
input {
|
||||
overflow: visible; }
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none; }
|
||||
|
||||
button,
|
||||
html [type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button; }
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none; }
|
||||
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
padding: 0; }
|
||||
|
||||
input[type="date"],
|
||||
input[type="time"],
|
||||
input[type="datetime-local"],
|
||||
input[type="month"] {
|
||||
-webkit-appearance: listbox; }
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
resize: vertical; }
|
||||
|
||||
fieldset {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0; }
|
||||
|
||||
legend {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: .5rem;
|
||||
font-size: 1.5rem;
|
||||
line-height: inherit;
|
||||
color: inherit;
|
||||
white-space: normal; }
|
||||
|
||||
progress {
|
||||
vertical-align: baseline; }
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto; }
|
||||
|
||||
[type="search"] {
|
||||
outline-offset: -2px;
|
||||
-webkit-appearance: none; }
|
||||
|
||||
[type="search"]::-webkit-search-cancel-button,
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none; }
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button; }
|
||||
|
||||
output {
|
||||
display: inline-block; }
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
cursor: pointer; }
|
||||
|
||||
template {
|
||||
display: none; }
|
||||
|
||||
[hidden] {
|
||||
display: none !important; }
|
||||
47
customer/template/bodyfit/css/flaticon.css
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
Flaticon icon font: Flaticon
|
||||
Creation date: 15/10/2018 10:08
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: "Flaticon";
|
||||
src: url("../fonts/flaticon/font/Flaticon.eot");
|
||||
src: url("../fonts/flaticon/font/Flaticon.eot?#iefix") format("embedded-opentype"),
|
||||
url("../fonts/flaticon/font/Flaticon.woff") format("woff"),
|
||||
url("../fonts/flaticon/font/Flaticon.ttf") format("truetype"),
|
||||
url("../fonts/flaticon/font/Flaticon.svg#Flaticon") format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||
@font-face {
|
||||
font-family: "Flaticon";
|
||||
src: url("../fonts/flaticon/font/Flaticon.svg#Flaticon") format("svg");
|
||||
}
|
||||
}
|
||||
|
||||
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
|
||||
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
|
||||
font-family: Flaticon;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
|
||||
/* Better Font Rendering =========== */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.flaticon-gym:before { content: "\f100"; }
|
||||
.flaticon-running:before { content: "\f101"; }
|
||||
.flaticon-workout:before { content: "\f102"; }
|
||||
.flaticon-woman:before { content: "\f103"; }
|
||||
.flaticon-stationary-bike:before { content: "\f104"; }
|
||||
.flaticon-heart:before { content: "\f105"; }
|
||||
.flaticon-meditation:before { content: "\f106"; }
|
||||
.flaticon-ruler:before { content: "\f107"; }
|
||||
.flaticon-abs:before { content: "\f108"; }
|
||||
.flaticon-tools-and-utensils:before { content: "\f109"; }
|
||||
4919
customer/template/bodyfit/css/icomoon.css
Normal file
11
customer/template/bodyfit/css/ionicons.min.css
vendored
Normal file
72
customer/template/bodyfit/css/jquery.timepicker.css
Normal file
@ -0,0 +1,72 @@
|
||||
.ui-timepicker-wrapper {
|
||||
overflow-y: auto;
|
||||
max-height: 150px;
|
||||
width: 6.5em;
|
||||
background: #fff;
|
||||
border: 1px solid #ddd;
|
||||
-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);
|
||||
-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);
|
||||
box-shadow:0 5px 10px rgba(0,0,0,0.2);
|
||||
outline: none;
|
||||
z-index: 10001;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ui-timepicker-wrapper.ui-timepicker-with-duration {
|
||||
width: 13em;
|
||||
}
|
||||
|
||||
.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-30,
|
||||
.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-60 {
|
||||
width: 11em;
|
||||
}
|
||||
|
||||
.ui-timepicker-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.ui-timepicker-duration {
|
||||
margin-left: 5px; color: #888;
|
||||
}
|
||||
|
||||
.ui-timepicker-list:hover .ui-timepicker-duration {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.ui-timepicker-list li {
|
||||
padding: 3px 0 3px 5px;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
color: #000;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ui-timepicker-list:hover .ui-timepicker-selected {
|
||||
background: #fff; color: #000;
|
||||
}
|
||||
|
||||
li.ui-timepicker-selected,
|
||||
.ui-timepicker-list li:hover,
|
||||
.ui-timepicker-list .ui-timepicker-selected:hover {
|
||||
background: #1980EC; color: #fff;
|
||||
}
|
||||
|
||||
li.ui-timepicker-selected .ui-timepicker-duration,
|
||||
.ui-timepicker-list li:hover .ui-timepicker-duration {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.ui-timepicker-list li.ui-timepicker-disabled,
|
||||
.ui-timepicker-list li.ui-timepicker-disabled:hover,
|
||||
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
|
||||
color: #888;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.ui-timepicker-list li.ui-timepicker-disabled:hover,
|
||||
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
|
||||
background: #f2f2f2;
|
||||
}
|
||||
351
customer/template/bodyfit/css/magnific-popup.css
Normal file
@ -0,0 +1,351 @@
|
||||
/* Magnific Popup CSS */
|
||||
.mfp-bg {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1042;
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
background: #0b0b0b;
|
||||
opacity: 0.8; }
|
||||
|
||||
.mfp-wrap {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1043;
|
||||
position: fixed;
|
||||
outline: none !important;
|
||||
-webkit-backface-visibility: hidden; }
|
||||
|
||||
.mfp-container {
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
padding: 0 8px;
|
||||
box-sizing: border-box; }
|
||||
|
||||
.mfp-container:before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
vertical-align: middle; }
|
||||
|
||||
.mfp-align-top .mfp-container:before {
|
||||
display: none; }
|
||||
|
||||
.mfp-content {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin: 0 auto;
|
||||
text-align: left;
|
||||
z-index: 1045; }
|
||||
|
||||
.mfp-inline-holder .mfp-content,
|
||||
.mfp-ajax-holder .mfp-content {
|
||||
width: 100%;
|
||||
cursor: auto; }
|
||||
|
||||
.mfp-ajax-cur {
|
||||
cursor: progress; }
|
||||
|
||||
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
|
||||
cursor: -moz-zoom-out;
|
||||
cursor: -webkit-zoom-out;
|
||||
cursor: zoom-out; }
|
||||
|
||||
.mfp-zoom {
|
||||
cursor: pointer;
|
||||
cursor: -webkit-zoom-in;
|
||||
cursor: -moz-zoom-in;
|
||||
cursor: zoom-in; }
|
||||
|
||||
.mfp-auto-cursor .mfp-content {
|
||||
cursor: auto; }
|
||||
|
||||
.mfp-close,
|
||||
.mfp-arrow,
|
||||
.mfp-preloader,
|
||||
.mfp-counter {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none; }
|
||||
|
||||
.mfp-loading.mfp-figure {
|
||||
display: none; }
|
||||
|
||||
.mfp-hide {
|
||||
display: none !important; }
|
||||
|
||||
.mfp-preloader {
|
||||
color: #CCC;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: auto;
|
||||
text-align: center;
|
||||
margin-top: -0.8em;
|
||||
left: 8px;
|
||||
right: 8px;
|
||||
z-index: 1044; }
|
||||
.mfp-preloader a {
|
||||
color: #CCC; }
|
||||
.mfp-preloader a:hover {
|
||||
color: #FFF; }
|
||||
|
||||
.mfp-s-ready .mfp-preloader {
|
||||
display: none; }
|
||||
|
||||
.mfp-s-error .mfp-content {
|
||||
display: none; }
|
||||
|
||||
button.mfp-close,
|
||||
button.mfp-arrow {
|
||||
overflow: visible;
|
||||
cursor: pointer;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
-webkit-appearance: none;
|
||||
display: block;
|
||||
outline: none;
|
||||
padding: 0;
|
||||
z-index: 1046;
|
||||
box-shadow: none;
|
||||
touch-action: manipulation; }
|
||||
|
||||
button::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border: 0; }
|
||||
|
||||
.mfp-close {
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
line-height: 44px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
opacity: 0.65;
|
||||
padding: 0 0 18px 10px;
|
||||
color: #FFF;
|
||||
font-style: normal;
|
||||
font-size: 28px;
|
||||
font-family: Arial, Baskerville, monospace; }
|
||||
.mfp-close:hover,
|
||||
.mfp-close:focus {
|
||||
opacity: 1; }
|
||||
.mfp-close:active {
|
||||
top: 1px; }
|
||||
|
||||
.mfp-close-btn-in .mfp-close {
|
||||
color: #333; }
|
||||
|
||||
.mfp-image-holder .mfp-close,
|
||||
.mfp-iframe-holder .mfp-close {
|
||||
color: #FFF;
|
||||
right: -6px;
|
||||
text-align: right;
|
||||
padding-right: 6px;
|
||||
width: 100%; }
|
||||
|
||||
.mfp-counter {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
color: #CCC;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
white-space: nowrap; }
|
||||
|
||||
.mfp-arrow {
|
||||
position: absolute;
|
||||
opacity: 0.65;
|
||||
margin: 0;
|
||||
top: 50%;
|
||||
margin-top: -55px;
|
||||
padding: 0;
|
||||
width: 90px;
|
||||
height: 110px;
|
||||
-webkit-tap-highlight-color: transparent; }
|
||||
.mfp-arrow:active {
|
||||
margin-top: -54px; }
|
||||
.mfp-arrow:hover,
|
||||
.mfp-arrow:focus {
|
||||
opacity: 1; }
|
||||
.mfp-arrow:before,
|
||||
.mfp-arrow:after {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
margin-top: 35px;
|
||||
margin-left: 35px;
|
||||
border: medium inset transparent; }
|
||||
.mfp-arrow:after {
|
||||
border-top-width: 13px;
|
||||
border-bottom-width: 13px;
|
||||
top: 8px; }
|
||||
.mfp-arrow:before {
|
||||
border-top-width: 21px;
|
||||
border-bottom-width: 21px;
|
||||
opacity: 0.7; }
|
||||
|
||||
.mfp-arrow-left {
|
||||
left: 0; }
|
||||
.mfp-arrow-left:after {
|
||||
border-right: 17px solid #FFF;
|
||||
margin-left: 31px; }
|
||||
.mfp-arrow-left:before {
|
||||
margin-left: 25px;
|
||||
border-right: 27px solid #3F3F3F; }
|
||||
|
||||
.mfp-arrow-right {
|
||||
right: 0; }
|
||||
.mfp-arrow-right:after {
|
||||
border-left: 17px solid #FFF;
|
||||
margin-left: 39px; }
|
||||
.mfp-arrow-right:before {
|
||||
border-left: 27px solid #3F3F3F; }
|
||||
|
||||
.mfp-iframe-holder {
|
||||
padding-top: 40px;
|
||||
padding-bottom: 40px; }
|
||||
.mfp-iframe-holder .mfp-content {
|
||||
line-height: 0;
|
||||
width: 100%;
|
||||
max-width: 900px; }
|
||||
.mfp-iframe-holder .mfp-close {
|
||||
top: -40px; }
|
||||
|
||||
.mfp-iframe-scaler {
|
||||
width: 100%;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
padding-top: 56.25%; }
|
||||
.mfp-iframe-scaler iframe {
|
||||
position: absolute;
|
||||
display: block;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
||||
background: #000; }
|
||||
|
||||
/* Main image in popup */
|
||||
img.mfp-img {
|
||||
width: auto;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
line-height: 0;
|
||||
box-sizing: border-box;
|
||||
padding: 40px 0 40px;
|
||||
margin: 0 auto; }
|
||||
|
||||
/* The shadow behind the image */
|
||||
.mfp-figure {
|
||||
line-height: 0; }
|
||||
.mfp-figure:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 40px;
|
||||
bottom: 40px;
|
||||
display: block;
|
||||
right: 0;
|
||||
width: auto;
|
||||
height: auto;
|
||||
z-index: -1;
|
||||
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
||||
background: #444; }
|
||||
.mfp-figure small {
|
||||
color: #BDBDBD;
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
line-height: 14px; }
|
||||
.mfp-figure figure {
|
||||
margin: 0; }
|
||||
|
||||
.mfp-bottom-bar {
|
||||
margin-top: -36px;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
cursor: auto; }
|
||||
|
||||
.mfp-title {
|
||||
text-align: left;
|
||||
line-height: 18px;
|
||||
color: #F3F3F3;
|
||||
word-wrap: break-word;
|
||||
padding-right: 36px; }
|
||||
|
||||
.mfp-image-holder .mfp-content {
|
||||
max-width: 100%; }
|
||||
|
||||
.mfp-gallery .mfp-image-holder .mfp-figure {
|
||||
cursor: pointer; }
|
||||
|
||||
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
|
||||
/**
|
||||
* Remove all paddings around the image on small screen
|
||||
*/
|
||||
.mfp-img-mobile .mfp-image-holder {
|
||||
padding-left: 0;
|
||||
padding-right: 0; }
|
||||
.mfp-img-mobile img.mfp-img {
|
||||
padding: 0; }
|
||||
.mfp-img-mobile .mfp-figure:after {
|
||||
top: 0;
|
||||
bottom: 0; }
|
||||
.mfp-img-mobile .mfp-figure small {
|
||||
display: inline;
|
||||
margin-left: 5px; }
|
||||
.mfp-img-mobile .mfp-bottom-bar {
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
bottom: 0;
|
||||
margin: 0;
|
||||
top: auto;
|
||||
padding: 3px 5px;
|
||||
position: fixed;
|
||||
box-sizing: border-box; }
|
||||
.mfp-img-mobile .mfp-bottom-bar:empty {
|
||||
padding: 0; }
|
||||
.mfp-img-mobile .mfp-counter {
|
||||
right: 5px;
|
||||
top: 3px; }
|
||||
.mfp-img-mobile .mfp-close {
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
position: fixed;
|
||||
text-align: center;
|
||||
padding: 0; } }
|
||||
|
||||
@media all and (max-width: 900px) {
|
||||
.mfp-arrow {
|
||||
-webkit-transform: scale(0.75);
|
||||
transform: scale(0.75); }
|
||||
.mfp-arrow-left {
|
||||
-webkit-transform-origin: 0;
|
||||
transform-origin: 0; }
|
||||
.mfp-arrow-right {
|
||||
-webkit-transform-origin: 100%;
|
||||
transform-origin: 100%; }
|
||||
.mfp-container {
|
||||
padding-left: 6px;
|
||||
padding-right: 6px; } }
|
||||
1
customer/template/bodyfit/css/open-iconic-bootstrap.min.css
vendored
Normal file
6
customer/template/bodyfit/css/owl.carousel.min.css
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/**
|
||||
* Owl Carousel v2.3.0
|
||||
* Copyright 2013-2017 David Deutsch
|
||||
* Licensed under ()
|
||||
*/
|
||||
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:-webkit-transform .1s ease;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-webkit-transform:scale(1.3,1.3);-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
|
||||
15
customer/template/bodyfit/css/owl.theme.default.min.css
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
/**
|
||||
* Owl Carousel v2.2.1
|
||||
* Copyright 2013-2017 David Deutsch
|
||||
* Licensed under ()
|
||||
*/
|
||||
.owl-theme .owl-dots,
|
||||
.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}
|
||||
.owl-theme .owl-nav{margin-top:10px}
|
||||
.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px;position: absolute;}
|
||||
.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}
|
||||
.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}
|
||||
.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}
|
||||
.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}
|
||||
.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}
|
||||
.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
|
||||
8912
customer/template/bodyfit/css/style.css
Normal file
1
customer/template/bodyfit/fonts/flaticon/backup.txt
Normal file
@ -0,0 +1 @@
|
||||
eyIxIjp7IklEIjoxLCJuYW1lIjoiTXkgaWNvbnMgY29sbGVjdGlvbiIsImJvb2ttYXJrX2lkIjoiZHpvejQ5Z2pvNjAwMDAwMCIsImNyZWF0ZWQiOm51bGwsInVwZGF0ZWQiOjE1Mzk2Njg3OTEsImFjdGl2ZSI6MSwic291cmNlIjoibG9jYWwiLCJvcmRlciI6MCwiY29sb3IiOiIwMDAwMDAiLCJzdGF0dXMiOjF9LCJkem96NDlnam82MDAwMDAwIjpbeyJpZCI6NDg5ODYwLCJ0ZWFtIjowLCJuYW1lIjoiZ3ltIiwiY29sb3IiOiIjMDAwMDAwIiwicHJlbWl1bSI6MCwic29ydCI6MX0seyJpZCI6NzU1MzIyLCJ0ZWFtIjowLCJuYW1lIjoid29ya291dCIsImNvbG9yIjoiIzAwMDAwMCIsInByZW1pdW0iOjAsInNvcnQiOjN9LHsiaWQiOjc1MzA0NSwidGVhbSI6MCwibmFtZSI6IndvbWFuIiwiY29sb3IiOiIjMDAwMDAwIiwicHJlbWl1bSI6MCwic29ydCI6NH0seyJpZCI6Njg0Mjc1LCJ0ZWFtIjowLCJuYW1lIjoic3RhdGlvbmFyeS1iaWtlIiwiY29sb3IiOiIjMDAwMDAwIiwicHJlbWl1bSI6MCwic29ydCI6NX0seyJpZCI6Njg0MjYyLCJ0ZWFtIjowLCJuYW1lIjoiaGVhcnQiLCJjb2xvciI6IiMwMDAwMDAiLCJwcmVtaXVtIjowLCJzb3J0Ijo2fSx7ImlkIjoxMTE2NDgyLCJ0ZWFtIjowLCJuYW1lIjoibWVkaXRhdGlvbiIsImNvbG9yIjoiIzAwMDAwMCIsInByZW1pdW0iOjAsInNvcnQiOjd9LHsiaWQiOjEwODUxOTIsInRlYW0iOjAsIm5hbWUiOiJydWxlciIsImNvbG9yIjoiIzAwMDAwMCIsInByZW1pdW0iOjAsInNvcnQiOjh9LHsiaWQiOjQ1MzUxOSwidGVhbSI6MCwibmFtZSI6InRvb2xzLWFuZC11dGVuc2lscyIsImNvbG9yIjoiIzAwMDAwMCIsInByZW1pdW0iOjAsInNvcnQiOjEwfSx7ImlkIjo3ODAwNDYsInRlYW0iOjAsIm5hbWUiOiJhYnMiLCJjb2xvciI6IiMwMDAwMDAiLCJwcmVtaXVtIjowLCJzb3J0Ijo5fSx7ImlkIjo3NTUzMTAsInRlYW0iOjAsIm5hbWUiOiJydW5uaW5nIiwiY29sb3IiOiIjMDAwMDAwIiwicHJlbWl1bSI6MCwic29ydCI6Mn1dfQ==
|
||||
BIN
customer/template/bodyfit/fonts/flaticon/font/Flaticon.eot
Normal file
231
customer/template/bodyfit/fonts/flaticon/font/Flaticon.svg
Normal file
@ -0,0 +1,231 @@
|
||||
<?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" >
|
||||
<!--
|
||||
2018-10-16: Created with FontForge (http://fontforge.org)
|
||||
-->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
||||
<metadata>
|
||||
Created by FontForge 20160405 at Tue Oct 16 07:46:35 2018
|
||||
By Apache
|
||||
Copyright (c) 2018, Apache
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="Flaticon" horiz-adv-x="512" >
|
||||
<font-face
|
||||
font-family="Flaticon"
|
||||
font-weight="400"
|
||||
font-stretch="normal"
|
||||
units-per-em="512"
|
||||
panose-1="2 0 5 3 0 0 0 0 0 0"
|
||||
ascent="448"
|
||||
descent="-64"
|
||||
bbox="0 -64.002 512.941 448"
|
||||
underline-thickness="25.6"
|
||||
underline-position="-51.2"
|
||||
unicode-range="U+0020-F109"
|
||||
/>
|
||||
<missing-glyph />
|
||||
<glyph glyph-name="space" unicode=" " horiz-adv-x="200"
|
||||
/>
|
||||
<glyph glyph-name="uniF100" unicode=""
|
||||
d="M486.4 328.533c14.1133 0 25.5996 -11.4854 25.5996 -25.5996v-85.334c0 -14.1133 -11.4863 -25.5996 -25.5996 -25.5996h-17.0674v-42.667c0 -14.1143 -11.4854 -25.5996 -25.5996 -25.5996h-34.1338c-14.1133 0 -25.5996 11.4854 -25.5996 25.5996v68.2666h-18.9609
|
||||
c-1.74902 -4.96582 -4.625 -9.50586 -8.72168 -13.0215l-46.8223 -40.1318c-1.18555 -1.01562 -1.80859 -2.55176 -1.64648 -4.11328l14.9072 -149.086c0.615234 -6.14453 -1.40723 -12.2793 -5.5459 -16.8535c-4.13086 -4.57422 -10.0352 -7.19336 -16.2051 -7.19336
|
||||
h-115.678c-6.15234 0 -12.041 2.61133 -16.1797 7.15039c-4.13867 4.54883 -6.16895 10.667 -5.58008 16.7852l14.5918 153.311l-22.7754 29.4648c-0.614258 0.802734 -1.08398 1.69824 -1.38281 2.6543l-6.64746 21.0342h-19.3535v-68.2666
|
||||
c0 -14.1143 -11.4863 -25.5996 -25.5996 -25.5996h-34.1338c-14.1143 0 -25.5996 11.4854 -25.5996 25.5996v42.667h-17.0674c-14.1133 0 -25.5996 11.4863 -25.5996 25.5996v85.334c0 14.1143 11.4863 25.5996 25.5996 25.5996h17.0674v42.667
|
||||
c0 14.1143 11.4854 25.5996 25.5996 25.5996h34.1338c14.1133 0 25.5996 -11.4854 25.5996 -25.5996v-68.2666h25.5996v34.1328c0 14.1143 11.4863 25.6006 25.6006 25.6006c6.5791 0 12.5264 -2.56055 17.0664 -6.65625c4.54004 4.08691 10.4873 6.65625 17.0664 6.65625
|
||||
s12.5273 -2.56055 17.0674 -6.65625c4.53906 4.08691 10.4873 6.65625 17.0664 6.65625s12.5264 -2.56055 17.0664 -6.65625c4.54004 4.08691 10.4873 6.65625 17.0664 6.65625c11.1104 0 20.4971 -7.16016 24.0303 -17.0674h0.810547
|
||||
c24.7295 0 46.5498 -14.873 55.5947 -37.8877l1.87695 -4.77832h20.0879v68.2666c0 14.1143 11.4863 25.5996 25.5996 25.5996h34.1338c14.1143 0 25.5996 -11.4854 25.5996 -25.5996v-42.667h17.0674zM42.667 209.066v102.4h-17.0674
|
||||
c-4.70996 0 -8.5332 -3.83203 -8.5332 -8.5332v-85.334c0 -4.70117 3.82324 -8.5332 8.5332 -8.5332h17.0674zM110.934 294.4v76.7998c0 4.70215 -3.82324 8.5332 -8.5332 8.5332h-34.1338c-4.70996 0 -8.5332 -3.83105 -8.5332 -8.5332v-51.2002v-119.467v-51.2002
|
||||
c0 -4.70117 3.82324 -8.5332 8.5332 -8.5332h34.1338c4.70996 0 8.5332 3.83203 8.5332 8.5332v76.8008v68.2666zM273.066 337.066v-51.2002c0 -1.20312 0.282227 -2.37207 0.750977 -3.43848c0.145508 -0.324219 0.401367 -0.563477 0.580078 -0.862305
|
||||
c0.418945 -0.69043 0.862305 -1.37305 1.46777 -1.92773c0.324219 -0.298828 0.725586 -0.486328 1.09277 -0.734375c0.614258 -0.40918 1.24609 -0.785156 1.92871 -1.01562c0.460938 -0.15332 0.955078 -0.212891 1.4502 -0.290039
|
||||
c0.666016 -0.102539 1.33984 -0.15332 2.03125 -0.102539c0.588867 0.0517578 1.14355 0.170898 1.68945 0.341797c0.495117 0.15332 0.990234 0.298828 1.44238 0.563477c0.264648 0.144531 0.495117 0.332031 0.742188 0.50293
|
||||
c2.30371 1.70703 3.8916 4.63379 3.8916 7.87598v7.62109v42.666c0 4.70215 -3.82324 8.5332 -8.53418 8.5332c-4.70996 0 -8.5332 -3.83105 -8.5332 -8.5332zM238.934 337.066v-51.2002c0 -4.70117 3.82227 -8.5332 8.5332 -8.5332c4.70996 0 8.5332 3.83203 8.5332 8.5332
|
||||
v51.2002c0 4.70215 -3.82324 8.5332 -8.5332 8.5332c-4.71094 0 -8.5332 -3.83105 -8.5332 -8.5332zM204.8 337.066v-51.2002c0 -4.70117 3.82324 -8.5332 8.5332 -8.5332c4.71094 0 8.5332 3.83203 8.5332 8.5332v51.2002c0 4.70215 -3.82227 8.5332 -8.5332 8.5332
|
||||
c-4.70996 0 -8.5332 -3.83105 -8.5332 -8.5332zM170.667 294.4v-7.6123c0 -3.24219 1.5957 -6.17773 3.89941 -7.88477c0.239258 -0.170898 0.460938 -0.358398 0.725586 -0.495117c0.460938 -0.264648 0.955078 -0.40918 1.45898 -0.571289
|
||||
c0.537109 -0.170898 1.0918 -0.290039 1.67285 -0.341797c0.708008 -0.0595703 1.39062 0 2.07324 0.102539c0.469727 0.0771484 0.956055 0.12793 1.39941 0.282227c0.700195 0.230469 1.33105 0.614258 1.9541 1.02344
|
||||
c0.358398 0.239258 0.759766 0.435547 1.0752 0.725586c0.605469 0.563477 1.0498 1.2373 1.46777 1.92871c0.179688 0.298828 0.435547 0.537109 0.580078 0.861328c0.478516 1.0752 0.759766 2.24414 0.759766 3.44727v51.2002c0 4.70215 -3.82324 8.5332 -8.5332 8.5332
|
||||
c-4.71094 0 -8.5332 -3.83105 -8.5332 -8.5332v-42.666zM128 234.667h167.134l12.0664 12.0654v30.6006c0 1.0752 -0.255859 2.09082 -0.631836 3.04688c-1.57812 -7.19336 -6.2207 -13.1758 -12.458 -16.708c-0.572266 -0.333008 -1.15234 -0.657227 -1.75 -0.947266
|
||||
c-0.537109 -0.255859 -1.08398 -0.486328 -1.64648 -0.700195c-1.02441 -0.40918 -2.08203 -0.725586 -3.1748 -0.990234c-0.375 -0.09375 -0.742188 -0.204102 -1.12598 -0.28125c-0.196289 -0.0341797 -0.375977 -0.102539 -0.572266 -0.136719
|
||||
c-0.588867 -0.09375 -1.16895 -0.0419922 -1.74902 -0.09375c-0.828125 -0.0849609 -1.63867 -0.255859 -2.49219 -0.255859c-0.263672 0 -0.50293 0.0683594 -0.758789 0.0771484c-0.725586 0.0166016 -1.42578 0.12793 -2.14258 0.212891
|
||||
c-1.0752 0.12793 -2.1416 0.264648 -3.18262 0.520508c-0.691406 0.170898 -1.35645 0.401367 -2.03125 0.631836c-0.998047 0.34082 -1.96191 0.699219 -2.90137 1.15137c-0.682617 0.325195 -1.33105 0.691406 -1.97949 1.0752
|
||||
c-0.870117 0.520508 -1.68945 1.0752 -2.4834 1.68164c-0.349609 0.272461 -0.758789 0.460938 -1.10059 0.750977c-0.170898 0.136719 -0.333008 0.28125 -0.495117 0.426758c-0.494141 -0.444336 -1.0752 -0.793945 -1.60352 -1.19531
|
||||
c-0.538086 -0.40918 -1.04102 -0.827148 -1.60449 -1.19434c-0.802734 -0.520508 -1.65527 -0.947266 -2.51758 -1.37402c-0.571289 -0.290039 -1.10938 -0.614258 -1.70703 -0.853516c-0.989258 -0.400391 -2.03027 -0.673828 -3.08008 -0.955078
|
||||
c-0.529297 -0.145508 -1.03223 -0.341797 -1.57031 -0.452148c-1.6123 -0.316406 -3.26855 -0.503906 -4.97461 -0.503906c-1.70703 0 -3.3623 0.1875 -4.9668 0.495117c-0.545898 0.110352 -1.05762 0.31543 -1.5957 0.460938
|
||||
c-1.04102 0.272461 -2.07324 0.545898 -3.05469 0.947266c-0.605469 0.24707 -1.15234 0.571289 -1.73242 0.861328c-0.853516 0.426758 -1.70605 0.844727 -2.5 1.35742c-0.572266 0.366211 -1.08398 0.801758 -1.62109 1.21094
|
||||
c-0.529297 0.410156 -1.10156 0.750977 -1.5957 1.19531c-0.495117 -0.444336 -1.06738 -0.793945 -1.5957 -1.19531c-0.529297 -0.40918 -1.04102 -0.835938 -1.61328 -1.20312c-0.793945 -0.511719 -1.64648 -0.929688 -2.5 -1.35645
|
||||
c-0.580078 -0.290039 -1.12695 -0.614258 -1.73242 -0.862305c-0.981445 -0.400391 -2.02246 -0.665039 -3.05469 -0.947266c-0.538086 -0.144531 -1.04102 -0.349609 -1.5957 -0.459961c-1.61328 -0.316406 -3.26855 -0.503906 -4.97559 -0.503906
|
||||
c-1.70605 0 -3.36133 0.1875 -4.97461 0.503906c-0.545898 0.110352 -1.04102 0.31543 -1.57031 0.452148c-1.04102 0.272461 -2.09082 0.554688 -3.08008 0.955078c-0.588867 0.239258 -1.12695 0.563477 -1.69824 0.844727
|
||||
c-0.862305 0.435547 -1.72363 0.853516 -2.52637 1.37402c-0.5625 0.367188 -1.0752 0.785156 -1.60352 1.19531c-0.529297 0.400391 -1.10938 0.750977 -1.60449 1.19434c-0.162109 -0.145508 -0.324219 -0.28125 -0.495117 -0.426758
|
||||
c-0.341797 -0.290039 -0.750977 -0.477539 -1.10938 -0.750977c-0.793945 -0.605469 -1.60449 -1.15234 -2.45801 -1.66406c-0.665039 -0.392578 -1.33105 -0.767578 -2.02148 -1.10059c-0.905273 -0.426758 -1.84375 -0.785156 -2.7998 -1.10938
|
||||
c-0.716797 -0.239258 -1.41602 -0.486328 -2.15039 -0.666016c-0.980469 -0.238281 -1.98828 -0.375 -3.01172 -0.494141c-0.768555 -0.0859375 -1.52734 -0.205078 -2.3125 -0.230469c-0.239258 -0.00878906 -0.469727 -0.0771484 -0.716797 -0.0771484
|
||||
c-0.836914 0 -1.62988 0.170898 -2.44922 0.24707c-0.597656 0.0605469 -1.18652 0 -1.7832 0.102539c-0.179688 0.0341797 -0.333008 0.102539 -0.512695 0.136719c-0.580078 0.111328 -1.12598 0.298828 -1.68945 0.444336
|
||||
c-0.947266 0.24707 -1.88574 0.50293 -2.78125 0.861328c-0.802734 0.307617 -1.56152 0.700195 -2.33008 1.09277c-0.477539 0.255859 -0.956055 0.486328 -1.41602 0.767578c-7.52637 4.46289 -12.6387 12.5781 -12.6387 21.9473h-25.5996v-51.1992zM349.866 227.661
|
||||
v63.5986c0 0.733398 -0.178711 1.47656 -0.511719 2.15039l-3.20801 8.06445c-6.36621 16.2041 -21.5986 26.752 -38.9463 27.0498v-27.1611c9.90723 -3.5332 17.0664 -12.9199 17.0664 -24.0303v-30.6006c0 -4.55664 -1.77441 -8.83984 -5 -12.0654l-12.0664 -12.0664
|
||||
c-3.1748 -3.18262 -7.57812 -5.00098 -12.0664 -5.00098h-129.886l4.56543 -14.4463l23.9102 -30.9248c1.32324 -1.72363 1.94531 -3.87402 1.74121 -6.0332l-14.917 -156.672c-0.169922 -1.84375 0.700195 -3.09766 1.22949 -3.68652
|
||||
c0.52832 -0.588867 1.70605 -1.57031 3.5498 -1.57031h115.669c1.85156 0 3.0293 0.990234 3.55859 1.57031c0.537109 0.588867 1.39941 1.85156 1.2207 3.70312l-14.9082 149.086c-0.708008 7.11719 2.10742 14.1318 7.53516 18.7822l46.8135 40.123
|
||||
c2.95312 2.54297 4.65039 6.22949 4.65039 10.1299zM384 234.667v51.1992h-17.0664v-51.1992h17.0664zM452.267 320v51.2002c0 4.70215 -3.82324 8.5332 -8.5332 8.5332h-34.1338c-4.70996 0 -8.5332 -3.83105 -8.5332 -8.5332v-76.7998v-68.2666v-76.8008
|
||||
c0 -4.70117 3.82324 -8.5332 8.5332 -8.5332h34.1338c4.70996 0 8.5332 3.83203 8.5332 8.5332v51.2002v119.467zM494.934 217.6v85.334c0 4.70117 -3.82324 8.5332 -8.5332 8.5332h-17.0674v-102.4h17.0674c4.70996 0 8.5332 3.83203 8.5332 8.5332z" />
|
||||
<glyph glyph-name="uniF103" unicode=""
|
||||
d="M482.142 337.082c4.71289 0 8.53418 -3.82129 8.53418 -8.53418v-51.2021c0 -4.71191 -3.82129 -8.5332 -8.53418 -8.5332h-34.1348c-4.71191 0 -8.5332 3.82129 -8.5332 8.5332v-90.2432c-0.0673828 -16.0703 -11.2764 -29.9434 -26.9746 -33.3838l-92.4971 -19.8145
|
||||
v-0.350586c-0.628906 -11.0791 -8.05566 -20.6104 -18.6455 -23.9277l-0.477539 -1.19531c-9.32617 -23.3574 -10.085 -49.2617 -2.14258 -73.125l3.27734 -9.83008l6.52832 -8.1582c18.4336 -23.0986 28.4902 -51.7656 28.5273 -81.3174h-17.0674
|
||||
c-0.0292969 25.6777 -8.76562 50.5879 -24.7812 70.6582l-4.91504 6.14453h-106.842v-34.1348c0 -4.71289 -3.82129 -8.5332 -8.5332 -8.5332h-34.1348c-4.71289 0 -8.53418 3.82031 -8.53418 8.5332v0.120117c-5.5918 -13.5752 -8.48926 -28.1074 -8.5332 -42.7881
|
||||
h-17.0674c0.0576172 20.7939 5.08105 41.2754 14.6523 59.7354h-48.7871v-17.0674c0 -4.71289 -3.82129 -8.5332 -8.5332 -8.5332h-34.1348c-4.71289 0 -8.53418 3.82031 -8.53418 8.5332v51.2021c0 4.71289 3.82129 8.53418 8.53418 8.53418h34.1348
|
||||
c4.71191 0 8.5332 -3.82129 8.5332 -8.53418v-17.0674h16.5811c-6.92969 17.9209 -8.04688 44.8613 -8.04688 68.2695c0.758789 48.5273 18.9307 95.167 51.2012 131.418v0.282227c0.0126953 3.28613 1.91211 6.27246 4.88184 7.67969
|
||||
c11.5566 5.39844 23.8096 9.16113 36.4043 11.1797c1.36426 0.194336 2.75684 0.0537109 4.05371 -0.410156c4.70215 1.4209 9.51953 2.42578 14.3965 3.00391v23.2803c-2.14941 1.12207 -4.24023 2.35156 -6.26367 3.68652
|
||||
c-23.5889 -22.5459 -54.9775 -35.1035 -87.6074 -35.0479c-4.71191 0 -8.5332 3.82031 -8.5332 8.5332v128.005c0.00488281 4.01855 0.366211 8.02832 1.07715 11.9834c6.66895 37.0674 42.124 61.709 79.1904 55.04c36.6494 26.832 87.1875 23.8711 120.452 -7.05762
|
||||
c18.9062 -17.7715 29.6475 -42.5518 29.6885 -68.499v-8.74707c0 -43.3594 -23.7227 -63.5078 -52.3965 -83.5703c-2.35742 -1.58691 -4.80859 -3.0332 -7.33887 -4.32617v-23.2803c4.87598 -0.589844 9.69043 -1.60645 14.3877 -3.03809
|
||||
c1.30078 0.464844 2.69434 0.606445 4.0625 0.410156c12.5947 -2.01855 24.8477 -5.78125 36.4043 -11.1797c2.96973 -1.40723 4.86816 -4.39355 4.88086 -7.67969v-3.66113h53.4209c8.84961 -0.046875 16.2529 6.70605 17.0166 15.5225l4.65918 69.8135h-15.3604v-17.0674
|
||||
c0 -4.71191 -3.82129 -8.5332 -8.53418 -8.5332h-34.1348c-4.71191 0 -8.5332 3.82129 -8.5332 8.5332v51.2021c0 4.71289 3.82129 8.53418 8.5332 8.53418h34.1348c4.71289 0 8.53418 -3.82129 8.53418 -8.53418v-17.0674h16.4785l0.588867 9.09668
|
||||
c0.296875 4.49219 4.03223 7.98047 8.5332 7.9707h25.6006c4.71289 0 8.53418 -3.82031 8.53418 -8.5332v8.5332c0 4.71289 3.82129 8.53418 8.5332 8.53418h34.1348zM362.671 285.88v34.1348h-17.0674v-34.1348h17.0674zM55.459 -12.7979v34.1348h-17.0674v-34.1348
|
||||
h17.0674zM121.587 16.4043c-4.31836 25.9248 -0.581055 92.2656 10.6748 117.765v51.8242c-21.5439 -30.8086 -33.4268 -67.334 -34.1348 -104.921c0 -43.8799 5.01855 -61.5107 9.89062 -68.2949h14.166zM221.012 430.79
|
||||
c-34.2227 -1.91602 -62.8936 -26.5762 -69.9072 -60.1279l99.1436 17.4932c1.80273 0.324219 3.66309 0.0546875 5.2998 -0.767578l46.7041 -23.3564c-5.16992 40.2324 -40.7676 69.4854 -81.2402 66.7588zM106.661 243.536
|
||||
c24.1631 1.79883 47.0449 11.5664 65.0605 27.7686c-22.5205 17.4424 -39.46 37.4883 -39.46 74.0977v8.74707c-0.109375 21.6455 7.26465 42.6641 20.874 59.4961c-26.3154 -2.46387 -46.4404 -24.5332 -46.4746 -50.9629v-119.146zM149.329 345.402
|
||||
c0 -32.3262 14.5498 -48.1895 45.1094 -69.5918c19.0479 -13.2627 44.3398 -13.2627 63.3877 0c30.3027 21.2227 44.8184 37.0439 45.0664 68.8232l-52.4482 26.2236l-101.115 -17.8438v-7.61133zM183.464 215.298v-13.6533l42.668 -9.17383l42.6689 9.17383v13.6533
|
||||
c-5.5625 1.52441 -11.3008 2.30176 -17.0674 2.3125c-4.71289 0 -8.53418 3.82129 -8.53418 8.53418v24.8926c-11.1826 -2.97656 -22.9512 -2.97656 -34.1348 0v-24.8926c0 -4.71289 -3.82031 -8.53418 -8.5332 -8.53418
|
||||
c-5.7666 -0.0107422 -11.5059 -0.788086 -17.0674 -2.3125zM137.032 37.4395c1.16113 0.613281 2.4502 0.944336 3.76367 0.964844h11c7.92383 23.1699 7.55273 48.3711 -1.0498 71.2979c-2.51758 0.986328 -4.91113 2.25977 -7.13477 3.79785
|
||||
c-4.89648 -25.0459 -7.10254 -50.5449 -6.5791 -76.0605zM166.396 -12.7979v34.1348h-17.0674v-34.1348h17.0674zM183.464 29.8701h99.084c-8.2959 24.9053 -8.44824 51.8047 -0.43457 76.8027h-112.303c6.45801 -22.2979 6.45801 -45.9707 0 -68.2686h5.12012
|
||||
c4.71191 0 8.5332 -3.82129 8.5332 -8.53418zM302.936 133.554v73.6377c-5.54004 2.28613 -11.2461 4.14941 -17.0674 5.57227v-18.04c0.000976562 -4.02441 -2.80762 -7.50098 -6.74219 -8.34668l-51.2021 -11.0166c-1.18066 -0.257812 -2.40332 -0.257812 -3.58398 0
|
||||
l-51.2012 11.0166c-3.93457 0.845703 -6.74316 4.32227 -6.74219 8.34668v18.0312c-5.82227 -1.42285 -11.5273 -3.28516 -17.0674 -5.57227v-73.6289c0 -4.63379 7.29688 -9.81348 17.0674 -9.81348h119.472c9.77051 0 17.0674 5.17969 17.0674 9.81348zM408.914 170.411
|
||||
c7.85352 1.71484 13.4609 8.6543 13.4922 16.6914v0v124.378h-9.08008l-5.8877 -88.2207c-1.44824 -17.6963 -16.2598 -31.3047 -34.0156 -31.25h-53.4209v-40.6455zM473.608 285.88v34.1348h-17.0674v-34.1348h17.0674z" />
|
||||
<glyph glyph-name="uniF107" unicode=""
|
||||
d="M175.758 261.603c-42.4707 0 -77.1074 26.0811 -77.1074 58.0332c0 31.9561 34.5332 58.0371 77.1074 58.0371c42.5732 0 77.1064 -26.0811 77.1064 -58.0371c0 -31.9521 -34.6367 -58.0332 -77.1064 -58.0332zM175.758 357.059v0.103516
|
||||
c-30.6182 0 -56.4932 -17.2168 -56.4932 -37.5225c0 -20.3086 25.875 -37.4189 56.4932 -37.4189c30.6133 0 56.4883 17.1104 56.4883 37.4189c0 20.3057 -25.5664 37.4189 -56.4883 37.4189zM175.758 357.059zM502.633 212.43c5.69043 0 10.3086 -4.61719 10.3086 -10.3047
|
||||
v-126.691c0 -5.69141 -4.61816 -10.3086 -10.3086 -10.3086h-327.081c-7.32031 0 -14.5371 0.514648 -21.6475 1.13574h-1.75391c-85.6611 8.14355 -152.15 61.7471 -152.15 126.688v126.794c0 70.5078 78.4453 127.923 175.242 127.923
|
||||
c96.7949 0 175.239 -57.415 175.239 -127.923v-107.312h152.151zM175.758 426.948c-84.9414 0 -154.625 -48.1396 -154.625 -107.309c0 -59.1729 69.1689 -107.312 154.625 -107.312c85.4551 0 154.625 48.1396 154.625 107.309c0 59.1729 -69.585 107.312 -154.625 107.312
|
||||
zM330.383 259.54h-0.518555c-15.5742 -20.3486 -35.9346 -36.5322 -59.2725 -47.1104h59.791v47.1104zM492.323 85.7422v106.074h-316.051c-67.1074 0 -125.144 27.4189 -154.625 67.7236v-66.4883c0 -51.541 52.3672 -94.6289 121.94 -104.938v25.875
|
||||
c0 5.69043 4.61816 10.3086 10.3096 10.3086c5.69043 0 10.3086 -4.61816 10.3086 -10.3086v-28.3496h11.5439h29.6914v28.3496c0 5.69043 4.61719 10.3086 10.3086 10.3086c5.6875 0 10.3086 -4.61816 10.3086 -10.3086v-28.3496h39.4785v52.2646
|
||||
c0 5.69141 4.62109 10.3086 10.3086 10.3086c5.69141 0 10.3086 -4.62109 10.3086 -10.3086v-52.2646h41.2354v28.3496c0 5.69043 4.61816 10.3086 10.3086 10.3086c5.69141 0 10.3096 -4.61816 10.3096 -10.3086v-28.3496h41.2314v28.3496
|
||||
c0 5.69043 4.61719 10.3086 10.3086 10.3086s10.3086 -4.61816 10.3086 -10.3086v-28.3496h41.2354v52.2646c0 5.69141 4.61816 10.3086 10.3086 10.3086c5.6875 0 10.3057 -4.62109 10.3057 -10.3086v-52.1621h20.6172zM492.323 85.7422z" />
|
||||
<glyph glyph-name="uniF108" unicode=""
|
||||
d="M399.98 242.898c23.252 -34.665 55.0977 -82.1426 55.0977 -168.763c0 -48.7158 -12.9932 -95.1699 -37.583 -134.336c-1.47656 -2.36426 -4.07617 -3.80176 -6.87109 -3.80176h-134.31c-4.48535 0 -8.125 3.63965 -8.125 8.125v16.2529h-16.2529v-16.2529
|
||||
c0 -4.48535 -3.64062 -8.125 -8.12598 -8.125h-134.31c-2.79492 0 -5.39453 1.4375 -6.88281 3.80664c-24.585 39.1709 -37.583 85.6201 -37.583 134.336c0 86.4131 28.6201 133.819 49.5205 168.437c13.1953 21.8594 23.6133 39.124 23.6133 59.0928
|
||||
c0 26.2822 -7.37305 39.1904 -15.1787 52.8506c-8.51562 14.9033 -17.3242 30.3135 -17.3242 60.9121c0 1.89746 0.00683594 3.79199 0.0283203 5.67285c0.03125 2.84473 1.54785 5.46875 3.99512 6.90625c2.44922 1.44727 5.47754 1.5 7.98438 0.155273
|
||||
c15.46 -8.33301 33.7891 -12.7373 52.998 -12.7373c30.4443 0 58.5479 11.2012 75.1768 29.9609c3.08789 3.47363 9.07324 3.47363 12.1611 0c16.6328 -18.7598 44.7373 -29.9609 75.1758 -29.9609c22.3955 0 43.8428 6.10645 60.4004 17.1914
|
||||
c2.47559 1.64941 5.65625 1.82129 8.28906 0.447266c2.6377 -1.38086 4.30664 -4.0918 4.35645 -7.06543c0.0625 -3.50195 0.0908203 -7.02832 0.0908203 -10.5752c0 -30.5986 -8.80371 -46.0088 -17.3242 -60.9121c-7.80371 -13.6572 -15.1787 -26.5674 -15.1787 -52.8506
|
||||
c0 -19.7568 11.5459 -36.9717 26.1611 -58.7666zM406.079 -47.7471c21.4453 35.7695 32.7559 77.8047 32.7559 121.89c0 81.6738 -29.0225 124.939 -52.3438 159.712c-15.5146 23.1309 -28.915 43.1094 -28.915 67.8154c0 30.5986 8.80371 46.0088 17.3242 60.9121
|
||||
c7.44629 13.0342 14.5 25.373 15.1338 49.2959c-16.8623 -8.24609 -36.5654 -12.6963 -56.8389 -12.6963c-31.6221 0 -61.3135 10.8018 -81.2588 29.2305c-19.9453 -18.4316 -49.6367 -29.2305 -81.2598 -29.2305c-17.0957 0 -33.6406 3.0957 -48.5557 9.02832
|
||||
c1.2207 -21.5498 7.9248 -33.2754 14.9834 -45.623c8.51562 -14.9033 17.3242 -30.3135 17.3242 -60.9121c0 -24.4941 -12.0273 -44.4209 -25.9541 -67.4893c-21.0254 -34.8223 -47.1846 -78.1572 -47.1846 -160.043c0 -44.083 11.3154 -86.1201 32.7559 -121.89h121.643
|
||||
v16.2529c0 4.48535 3.63965 8.125 8.125 8.125h32.5029c4.48535 0 8.125 -3.63965 8.125 -8.125v-16.2529h121.638zM447.763 141.782c0.99707 -4.28516 -1.59766 -8.58496 -5.84668 -9.70312c-45.4688 -11.9443 -96.1152 -58.1621 -132.17 -120.614
|
||||
c-8.6582 -14.998 -16.1963 -30.4658 -22.4072 -45.9775c-1.23535 -3.08301 -4.2207 -5.10645 -7.54395 -5.10645h-39.3623c-3.31836 0 -6.30859 2.02344 -7.54395 5.10645c-6.21094 15.5117 -13.748 30.9844 -22.4072 45.9775
|
||||
c-36.3047 62.876 -87.2178 109.16 -132.881 120.792c-4.22168 1.07617 -6.84277 5.29004 -5.94531 9.55176c1.72168 8.18652 3.82324 16.3047 6.24512 24.126c0.642578 2.0752 2.08789 3.80859 4.01855 4.81348c1.92578 1 4.17773 1.1875 6.24902 0.521484
|
||||
c48.5107 -15.6963 105.146 -23.9932 163.771 -23.9932c64.3301 0 125.449 9.83301 176.753 28.4375c4.20117 1.52344 8.85547 -0.637695 10.4004 -4.83984c3.44531 -9.39844 6.36426 -19.1904 8.6709 -29.0918zM295.672 19.5879
|
||||
c36.1758 62.6631 87.0195 110.084 134.412 125.906c-1.10059 4.11621 -2.31152 8.19336 -3.62402 12.2119c-51.3906 -17.4756 -111.524 -26.6816 -174.517 -26.6816c-57.126 0 -112.51 7.68945 -160.79 22.2803c-0.678711 -2.4834 -1.32617 -4.99023 -1.93066 -7.50879
|
||||
c47.6582 -15.5029 98.8691 -63.0537 135.338 -126.208c8.08984 -14.0225 15.2529 -28.4521 21.3262 -42.959h28.4541c6.07324 14.5098 13.2344 28.9365 21.3311 42.959zM487.591 309.795c4.48535 0 8.125 -3.63965 8.125 -8.125s-3.63965 -8.125 -8.125 -8.125h-73.1338
|
||||
c-4.48535 0 -8.125 3.63965 -8.125 8.125s3.63965 8.125 8.125 8.125h73.1338zM417.825 301.67l34.8818 -34.8887c3.17383 -3.1709 3.17383 -8.31543 0 -11.4893c-1.58301 -1.58496 -3.66406 -2.37988 -5.74414 -2.37988c-2.08105 0 -4.15918 0.791992 -5.74512 2.37988
|
||||
l-40.6309 40.6309c-3.17285 3.1709 -3.17285 8.31641 0 11.4893l40.6309 40.6309c3.16895 3.17383 8.32031 3.17383 11.4893 0c3.17383 -3.1709 3.17383 -8.31543 0 -11.4893zM97.543 309.795c4.48535 0 8.125 -3.63965 8.125 -8.125s-3.63965 -8.125 -8.125 -8.125
|
||||
h-73.1338c-4.48535 0 -8.125 3.63965 -8.125 8.125s3.63965 8.125 8.125 8.125h73.1338zM111.415 307.415c3.1709 -3.17383 3.1709 -8.31641 0 -11.4893l-40.6328 -40.6289c-1.58301 -1.58496 -3.66406 -2.38086 -5.74512 -2.38086
|
||||
c-2.08008 0 -4.15918 0.792969 -5.74414 2.38086c-3.17383 3.1709 -3.17383 8.31543 0 11.4893l34.8838 34.8867l-34.8818 34.8838c-3.17285 3.1709 -3.17285 8.31543 0 11.4893c3.16895 3.17285 8.32031 3.17285 11.4893 0z" />
|
||||
<glyph glyph-name="uniF106" unicode=""
|
||||
d="M0 -47.4834h16.5166v-16.5166h-16.5166v16.5166zM0 -47.4834zM495.483 -47.4834h16.5166v-16.5166h-16.5166v16.5166zM495.483 -47.4834zM470.71 -8.53223c0 -15.1689 -6.12891 -28.9277 -16.0361 -38.9512h24.2939v-16.5166h-445.936v16.5166h24.2939
|
||||
c-9.90723 10.0234 -16.0361 23.7822 -16.0361 38.9512c0 19.6494 10.5361 38.0039 27.5166 47.9072l7.15332 4.16895c-14.71 0.992188 -26.4111 13.1572 -26.4111 28.1094v1.20996c0 15.5967 12.6934 28.2979 28.2979 28.2979c4.37109 0 8.74609 -1.03223 12.6611 -2.97949
|
||||
l7.55664 -3.78223l23.875 19.1006c7.58887 6.06836 13.4922 14.0361 17.1006 23.0488l5.58496 13.9473c2.66504 6.67285 4.02051 13.7051 4.02051 20.8994v5.89844l-34.4199 8.60547l14.1699 70.8428c3 15.0078 13.9756 27.0645 28.6328 31.4551l57.6816 17.3105v19.5361
|
||||
c-10.1982 10.4238 -16.5166 24.6699 -16.5166 40.375v24.7744c0 31.875 25.9395 57.8066 57.8066 57.8066s57.8066 -25.9316 57.8066 -57.8066v-24.7822c0 -15.6973 -6.31836 -29.9434 -16.5166 -40.375v-19.5361l57.6816 -17.3027
|
||||
c14.6699 -4.39844 25.6328 -16.4473 28.6328 -31.4551l14.1699 -70.8428l-34.4199 -8.60547v-5.89844c0 -7.19434 1.35547 -14.2266 4.02051 -20.9072l5.58496 -13.9482c3.60059 -9.01172 9.51172 -16.9795 17.1006 -23.0479l23.875 -19.1006l7.55664 3.78223
|
||||
c3.90723 1.95508 8.29004 2.9873 12.6611 2.9873c15.6045 0 28.2979 -12.7012 28.2979 -28.2979v-1.20996c0 -14.9521 -11.7012 -27.1172 -26.4111 -28.1094l7.15332 -4.16895c16.9805 -9.90332 27.5166 -28.2578 27.5166 -47.9072zM316.657 8.33105l43.9883 43.9912
|
||||
c1.75 1.75 2.70898 4.07324 2.70898 6.54883c0 5.10449 -4.15332 9.25781 -9.25781 9.25781c-2.43555 0 -4.82227 -0.992188 -6.54785 -2.70996l-14.5166 -14.5156c-4.79883 -4.79883 -11.4395 -7.54883 -18.2256 -7.54883c-5.10547 0 -9.25781 -4.15332 -9.25781 -9.25781
|
||||
v-10.6777l-5.2627 -5.26562zM151.354 52.3223l55.0967 -55.0967l13.0977 13.0967l-13.0977 13.0967v10.6777c0 5.10449 -4.15234 9.25781 -9.25781 9.25781c-6.78613 0 -13.4268 2.75 -18.2256 7.54883l-14.5166 14.5156c-1.72559 1.71777 -4.1123 2.70996 -6.54785 2.70996
|
||||
c-5.10449 0 -9.25781 -4.15332 -9.25781 -9.25781c0 -2.47559 0.958984 -4.79883 2.70898 -6.54883zM231.226 22l23.4961 23.4922l30.9678 -18.5811l3.34277 3.34668v3.83887c0 14.2139 11.5605 25.7744 25.7744 25.7744c2.43555 0 4.82227 0.992188 6.54785 2.70996
|
||||
l14.5166 14.5156c1.90723 1.90723 4.16113 3.39551 6.54785 4.60938c-3.50781 2.37891 -6.66113 5.18555 -9.33789 8.45508c-13.2705 -7.34277 -43.9316 -22.0322 -77.0811 -22.0322s-63.8105 14.6895 -77.0811 22.04
|
||||
c-2.67676 -3.26953 -5.83008 -6.08398 -9.33789 -8.46289c2.38672 -1.21387 4.64062 -2.70215 6.54785 -4.60938l14.5166 -14.5156c1.72559 -1.71777 4.1123 -2.70996 6.54785 -2.70996c14.2139 0 25.7744 -11.5605 25.7744 -25.7744v-3.83887zM198.193 166.036
|
||||
c0 -14.7744 -2.02441 -29.29 -5.70508 -43.4639l11.4717 4.02441c26.1084 9.78613 50.0684 24.2383 71.0479 42.8828c26.2461 23.3389 47.0088 52.8955 60.0361 85.4805l7.84766 19.6123l-25.21 7.56445c-27.8145 -42.4072 -67.1982 -74.8105 -114.436 -93.7051
|
||||
l-5.05273 -2.02051v-20.375zM325.153 104.669c-7.44727 19.6895 -11.3467 40.2949 -11.3545 61.375v20.416c-8.45605 -10.5127 -17.7461 -20.3594 -27.8232 -29.3184c-22.5039 -20 -48.2012 -35.5 -76.3867 -46.0605l-20.96 -7.35938
|
||||
c12.6855 -6.78223 39.5 -19.0762 67.3711 -19.0762c29.3428 0 57.3672 13.5195 69.1533 20.0234zM352.04 144.358c-3.45117 8.6377 -5.20117 17.7305 -5.20117 27.0371v1.76953l-16.5166 -4.12891v-3c0 -20.0684 3.78223 -39.6973 11.2305 -58.3428
|
||||
c2.32227 -5.80664 6.61621 -10.6768 12.0723 -13.71l61.415 -34.1123h19.1133c6.49609 0 11.7822 5.28613 11.7822 11.7822v1.20996c0 6.49512 -5.28613 11.7822 -11.7822 11.7822c-1.81836 0 -3.64551 -0.427734 -5.26172 -1.23828l-17.0127 -8.50781l-32.1328 25.709
|
||||
c-9.81055 7.83496 -17.4561 18.1416 -22.1211 29.8027zM378.483 198.101l-11.0645 55.4072c-1.19727 5.98438 -4.64062 11.0322 -9.30566 14.625l-7.72168 -19.3018c-5.46777 -13.6494 -12.2227 -26.7783 -20.0693 -39.2344v-23.5361zM280.774 303.004v10.2666
|
||||
c-7.52441 -3.58496 -15.9033 -5.65723 -24.7744 -5.65723s-17.25 2.07227 -24.7744 5.65723v-10.2666c5.375 -4.61719 15.75 -11.9072 24.7744 -11.9072s19.3994 7.29004 24.7744 11.9072zM214.71 390.193v-24.7744c0 -22.7656 18.5234 -41.29 41.29 -41.29
|
||||
s41.29 18.5244 41.29 41.29v24.7744c0 22.7666 -18.5234 41.29 -41.29 41.29s-41.29 -18.5234 -41.29 -41.29zM144.589 253.496l-11.0723 -55.3955l48.1611 -12.04v47.2295h16.5156v-29.0439c42.0488 17.0605 77.3555 45.6328 102.92 82.8623l-9.99219 2.99609
|
||||
c-6.47168 -5.52344 -20.2139 -15.5234 -35.1211 -15.5234s-28.6494 10 -35.1211 15.5234l-59.1123 -17.7373c-8.78711 -2.63379 -15.375 -9.86719 -17.1777 -18.8711zM66.0645 71.6533c0 -6.49609 5.28613 -11.7822 11.7822 -11.7822h19.1133l61.4316 34.1123
|
||||
c5.45508 3.04102 9.75 7.90332 12.0801 13.7178c7.43945 18.6377 11.2217 38.2666 11.2217 58.335v3l-16.5156 4.12891v-1.76953c0 -9.30664 -1.75 -18.4072 -5.20215 -27.0371l-5.58398 -13.9551c-4.67383 -11.6533 -12.3105 -21.96 -22.1211 -29.8027l-32.1338 -25.709
|
||||
l-17.0117 8.50781c-1.63281 0.818359 -3.45117 1.24609 -5.27832 1.24609c-6.49609 0 -11.7822 -5.28711 -11.7822 -11.7822v-1.20996zM96.7578 -47.4834h126.448c2.64453 0 5.26953 0.132812 7.88672 0.362305c-6.5 4.16113 -12.625 8.97559 -18.2178 14.5684
|
||||
l-73.1973 73.1982c-4.48438 4.49121 -7.0127 10.3545 -7.3916 16.6406l-55.1572 -32.1729c-11.9229 -6.95215 -19.3223 -19.8428 -19.3223 -33.6455c0 -21.4756 17.4756 -38.9512 38.9512 -38.9512zM288.794 -47.4834h126.448c21.4756 0 38.9512 17.4756 38.9434 38.9512
|
||||
c0 13.8027 -7.40723 26.6934 -19.3223 33.6455l-55.1572 32.1729c-0.379883 -6.28613 -2.89941 -12.1572 -7.3916 -16.6406l-41.0684 -41.0645l11.5801 -6.94824l-8.5 -14.1611l-25.8057 15.4844l-51.2422 30.7451l-39.1494 -39.1523l6.43164 -6.42383
|
||||
c17.1533 -17.1611 39.9717 -26.6084 64.2334 -26.6084zM288.794 -47.4834z" />
|
||||
<glyph glyph-name="uniF109" unicode=""
|
||||
d="M437.019 357.103c48.3525 -48.3516 74.9814 -112.639 74.9814 -181.02c0 -73.3154 -31.5264 -143.239 -86.4941 -191.841c-1.44727 -1.27832 -3.24414 -1.90723 -5.03418 -1.90723c-2.10254 0 -4.19629 0.867188 -5.69922 2.56738
|
||||
c-2.78223 3.14551 -2.4873 7.9502 0.65918 10.7324c51.7061 45.7168 81.3604 111.487 81.3604 180.448c0 64.3184 -25.0459 124.786 -70.5264 170.266c-45.4795 45.4805 -105.948 70.5264 -170.266 70.5264s-124.785 -25.0459 -170.265 -70.5264
|
||||
c-45.4805 -45.4795 -70.5264 -105.948 -70.5264 -170.266c0 -68.96 29.6543 -134.731 81.3594 -180.449c3.14648 -2.78125 3.44141 -7.58691 0.65918 -10.7324c-2.78125 -3.14648 -7.58789 -3.44238 -10.7324 -0.660156c-54.9688 48.6025 -86.4951 118.526 -86.4951 191.842
|
||||
c0 68.3809 26.6299 132.668 74.9814 181.02c48.3506 48.3525 112.639 74.9805 181.019 74.9805s132.668 -26.6279 181.019 -74.9805zM357.664 21.0771c14.3789 0 26.0762 -11.6982 26.0771 -26.0771v-17.0088c0 -14.377 -11.6982 -26.0752 -26.0771 -26.0752h-203.329
|
||||
c-14.3779 0 -26.0762 11.6963 -26.0762 26.0752v17.0088c0 14.3789 11.6973 26.0771 26.0762 26.0771h7.52539c4.19824 0 7.60352 -3.40527 7.60352 -7.60449c0 -4.19824 -3.40527 -7.60352 -7.60352 -7.60352h-7.52539c-5.99219 0 -10.8682 -4.87598 -10.8682 -10.8691
|
||||
v-17.0088c0 -5.99219 4.875 -10.8682 10.8682 -10.8682h203.328c5.99316 0 10.8691 4.875 10.8691 10.8682v17.0088c0 5.99316 -4.87598 10.8691 -10.8691 10.8691h-170.457c-4.19922 0 -7.60449 3.40527 -7.60449 7.60352c0 4.19922 3.40527 7.60449 7.60449 7.60449
|
||||
h170.458zM385 348.497c3.36133 -2.51855 4.04297 -7.28516 1.52734 -10.6465c-2.52051 -3.35938 -7.28516 -4.04297 -10.6465 -1.52441c-34.8047 26.083 -76.2607 39.8691 -119.883 39.8691c-55.8125 0 -107.702 -23.0195 -144.762 -61.8369
|
||||
c31.0479 20.7842 67.9453 32.3057 106.483 32.3057c46.6865 0 91.6572 -16.9941 126.625 -47.8525c3.14844 -2.77832 3.44824 -7.58398 0.668945 -10.7324c-2.77539 -3.14941 -7.58398 -3.44824 -10.7324 -0.669922c-32.1875 28.4043 -73.583 44.0469 -116.562 44.0469
|
||||
c-59.0234 0 -113.861 -29.3506 -146.691 -78.5137c-1.45703 -2.18164 -3.86328 -3.38281 -6.33008 -3.38281c-1.22363 0 -2.46191 0.295898 -3.60742 0.913086c-3.45312 1.86426 -4.91992 6.05078 -3.38672 9.66211c33.8418 79.7441 111.677 131.27 198.293 131.27
|
||||
c46.9375 0 91.5459 -14.8369 129.004 -42.9072zM424.472 310.182c30.6465 -38.4541 46.8467 -84.8242 46.8457 -134.099c0 -4.19922 -3.4043 -7.60449 -7.60547 -7.60449h-63.3105c-3.86816 0 -7.12012 2.9043 -7.55566 6.74902
|
||||
c-2.49316 22.0215 -9.02734 43.0967 -19.4258 62.6387c-1.97168 3.70801 -0.566406 8.31152 3.1416 10.2852c3.71094 1.97363 8.31348 0.56543 10.2852 -3.1416c10.2344 -19.2324 17.0254 -39.832 20.2275 -61.3232h48.8975
|
||||
c-1.57422 42.9541 -16.4961 83.2695 -43.3916 117.018c-2.61719 3.28516 -2.07812 8.06836 1.20605 10.6855c3.28613 2.61719 8.06738 2.07617 10.6855 -1.20801zM411.889 344.535c3.29199 -2.16211 4.3877 -6.48145 2.52441 -9.95215l-129.637 -241.433
|
||||
c-0.0615234 -0.115234 -0.126953 -0.228516 -0.194336 -0.34082c-0.356445 -0.586914 -2.19824 -3.60254 -3.59766 -5.36133c-5.3125 -6.67188 -12.9062 -10.8779 -21.3828 -11.8398c-1.22461 -0.139648 -2.44727 -0.208008 -3.66211 -0.208008
|
||||
c-7.19043 0 -14.1201 2.41016 -19.8291 6.95605c-6.6748 5.31152 -10.8789 12.9053 -11.8418 21.3818c-0.960938 8.47559 1.43457 16.8184 6.74805 23.4922l23.7686 30.0244c2.60645 3.29199 7.38965 3.84766 10.6816 1.24219
|
||||
c3.29297 -2.60742 3.84961 -7.38965 1.24316 -10.6826l-23.7822 -30.041c-2.79688 -3.5127 -4.05176 -7.88281 -3.54785 -12.3213c0.503906 -4.44043 2.70605 -8.41699 6.20215 -11.2002s7.86621 -4.04102 12.3047 -3.53418
|
||||
c4.44043 0.503906 8.41699 2.70605 11.1992 6.20215c0.5625 0.705078 1.71484 2.5 2.3877 3.60352l88.9717 165.695l-78.7197 -99.4346c-2.60645 -3.29199 -7.38867 -3.85059 -10.6816 -1.24219s-3.84863 7.38867 -1.24219 10.6816l131.95 166.677
|
||||
c2.44531 3.08887 6.84375 3.79785 10.1367 1.63477zM263.332 113.112c2.06641 -3.05176 1.54492 -7.31055 -1.15918 -9.79883c-2.31934 -2.13672 -5.75293 -2.5918 -8.57422 -1.20508c-2.91406 1.43066 -4.56738 4.70898 -4.10547 7.9043
|
||||
c0.97168 6.72168 10.1152 8.7666 13.8389 3.09961z" />
|
||||
<glyph glyph-name="uniF102" unicode=""
|
||||
d="M93.9492 413.621c14.1318 0 25.5869 -11.4561 25.5869 -25.5869c0 -14.1318 -11.4551 -25.5869 -25.5869 -25.5869c-14.1309 0 -25.5869 11.4551 -25.5869 25.5869c0 14.1309 11.4561 25.5869 25.5869 25.5869zM93.9492 379.505c4.71191 0 8.5293 3.81934 8.5293 8.5293
|
||||
s-3.81934 8.5293 -8.5293 8.5293s-8.52832 -3.81934 -8.52832 -8.5293s3.81836 -8.5293 8.52832 -8.5293zM418.05 413.621c14.1309 0 25.5869 -11.4561 25.5869 -25.5869c0 -14.1318 -11.4561 -25.5869 -25.5869 -25.5869c-14.1318 0 -25.5869 11.4551 -25.5869 25.5869
|
||||
c0 14.1309 11.4551 25.5869 25.5869 25.5869zM418.05 379.505c4.71094 0 8.52832 3.81934 8.52832 8.5293s-3.81836 8.5293 -8.52832 8.5293c-4.71094 0 -8.5293 -3.81934 -8.5293 -8.5293s3.81836 -8.5293 8.5293 -8.5293zM511.467 220.014
|
||||
c0.263672 -0.827148 0.398438 -1.68945 0.401367 -2.55859v-85.2891c0 -4.70996 -3.81934 -8.5293 -8.5293 -8.5293h-112.292l-32.8369 -180.635c-0.737305 -4.05566 -4.27051 -7.00293 -8.39258 -7.00195h-187.637c-4.12109 -0.000976562 -7.6543 2.94629 -8.3916 7.00195
|
||||
l-32.8369 180.635h-112.292c-4.70996 0 -8.5293 3.81934 -8.5293 8.5293v85.2891c0.00195312 0.868164 0.137695 1.73145 0.401367 2.55859l43.2842 136.054c-6.20508 9.51074 -9.52832 20.6113 -9.56934 31.9668c-0.0429688 24.7891 15.2646 47.0156 38.4395 55.8145
|
||||
c30.7695 11.6816 65.1807 -3.79297 76.8633 -34.5615s-3.79102 -65.1816 -34.5596 -76.8633l-15.4541 -85.0156c6.31152 2.74414 13.1182 4.15918 20 4.16211c18.2666 -0.0166016 35.1406 -9.76758 44.2744 -25.5869h47.207
|
||||
c-14.7646 12.9082 -23.2393 31.5605 -23.25 51.1729v34.1162c0 37.6826 30.5488 68.2314 68.2314 68.2314c37.6836 0 68.2324 -30.5488 68.2324 -68.2314v-34.1162c-0.0107422 -19.6123 -8.48535 -38.2646 -23.25 -51.1729h47.207
|
||||
c9.13379 15.8193 26.0068 25.5703 44.2744 25.5869c6.88184 -0.00292969 13.6885 -1.41797 20 -4.16211l-15.4541 85.0156c-23.3516 8.79492 -38.7705 31.1836 -38.6611 56.1357c0.145508 32.9727 26.9922 59.584 59.9648 59.4395
|
||||
c32.9727 -0.145508 59.585 -26.9922 59.4395 -59.9648c-0.0419922 -11.3555 -3.36426 -22.4561 -9.56934 -31.9668zM406.766 346.95c2.02441 -0.546875 4.08496 -0.949219 6.16797 -1.20312c2.01172 -0.268555 4.04102 -0.391602 6.07129 -0.368164
|
||||
c23.29 0.266602 41.9561 19.3633 41.6895 42.6553c0 23.5518 -19.0938 42.6445 -42.6445 42.6445c-23.5518 0 -42.6455 -19.0928 -42.6455 -42.6445c0.0390625 -19.1836 12.8662 -35.9883 31.3613 -41.084zM204.826 277.158c0 -28.2617 22.9111 -51.1738 51.1729 -51.1738
|
||||
c28.2637 0 51.1738 22.9102 51.1738 51.1738v34.1152c0 28.2627 -22.9102 51.1738 -51.1738 51.1738c-28.2627 0 -51.1729 -22.9111 -51.1729 -51.1738v-34.1152zM93.9492 430.679c-23.54 -0.0273438 -42.6152 -19.1035 -42.6445 -42.6445
|
||||
c0.00976562 -3.74609 0.512695 -7.47656 1.49707 -11.0918c6.18945 -22.7539 29.6533 -36.1826 52.4062 -29.9922c18.3867 5.11621 31.1367 21.8262 31.2139 40.9121c0.0947266 23.5518 -18.9209 42.7217 -42.4727 42.8164zM247.471 -46.9424v25.5869h-25.5869
|
||||
c-7.06543 0 -12.7939 -5.72852 -12.7939 -12.793c0 -7.06543 5.72852 -12.7939 12.7939 -12.7939h25.5869zM247.471 -4.29785v25.5869h-38.3809c-7.06445 0 -12.793 -5.72754 -12.793 -12.793s5.72852 -12.7939 12.793 -12.7939h38.3809zM247.471 38.3477v25.5869h-38.3809
|
||||
c-7.06445 0 -12.793 -5.72852 -12.793 -12.7939s5.72852 -12.793 12.793 -12.793h38.3809zM290.115 -46.9424c7.06641 0 12.793 5.72852 12.793 12.7939c0 7.06445 -5.72754 12.793 -12.793 12.793h-25.5869v-25.5869h25.5869zM302.908 -4.29785
|
||||
c7.06641 0 12.7939 5.72852 12.7939 12.7939s-5.72852 12.793 -12.7939 12.793h-38.3799v-25.5869h38.3799zM264.528 38.3477h38.3799c7.06543 0 12.7939 5.72754 12.7939 12.793s-5.72852 12.7939 -12.7939 12.7939h-38.3799v-25.5869zM494.81 140.694v75.4385
|
||||
l-39.7871 125.026c-1.44434 -1.14355 -2.92871 -2.21484 -4.45215 -3.21582l-0.119141 -0.0683594c-1.76562 -1.14355 -3.59082 -2.19434 -5.46777 -3.14648l-0.912109 -0.435547c-1.76562 -0.870117 -3.57324 -1.6377 -5.41602 -2.32812l-0.452148 -0.162109
|
||||
c-6.24121 -2.24414 -12.8223 -3.39844 -19.4541 -3.41113c-0.230469 -0.0429688 -0.426758 -0.0429688 -0.699219 -0.0429688c-0.273438 0 -0.545898 0.0595703 -0.810547 0.0595703c-0.724609 0 -1.44141 -0.0429688 -2.16602 0l17.9619 -98.791
|
||||
c0.53418 -2.9668 -0.538086 -5.99707 -2.82031 -7.96777c-3.56543 -3.0791 -8.9502 -2.68457 -12.0293 0.880859c-3.38672 3.99609 -7.65527 7.15332 -12.4688 9.22168c-17.1875 7.38281 -37.1045 -0.56543 -44.4873 -17.751
|
||||
c-1.35645 -3.10645 -4.42285 -5.11523 -7.8125 -5.11719h-194.835c-3.39062 0.00195312 -6.45703 2.01074 -7.8125 5.11719c-2.06836 4.81348 -5.22559 9.08203 -9.22168 12.4697c-14.2695 12.0938 -35.6416 10.3291 -47.7344 -3.94043
|
||||
c-1.9707 -2.2832 -5.00098 -3.35547 -7.96875 -2.82031c-4.63672 0.835938 -7.7168 5.27246 -6.88086 9.90723l17.9795 98.8076h-2.08105c-0.298828 0 -0.597656 -0.0595703 -0.895508 -0.0595703c-0.298828 0 -0.571289 0.0517578 -0.853516 0.0517578
|
||||
c-1.97363 0.0117188 -3.94629 0.12207 -5.91016 0.332031h-0.31543c-4.38086 0.508789 -8.69043 1.5127 -12.8447 2.99414c-0.349609 0.119141 -0.69043 0.255859 -1.04102 0.383789c-1.64551 0.62207 -3.26562 1.32227 -4.85254 2.08105
|
||||
c-0.392578 0.204102 -0.835938 0.392578 -1.24512 0.605469c-1.78711 0.907227 -3.52637 1.90723 -5.21094 2.99316l-0.282227 0.170898c-1.52637 0.998047 -3.00195 2.05566 -4.43457 3.19824l-39.7871 -125.043v-75.4385h110.876
|
||||
c4.12109 0.000976562 7.6543 -2.94629 8.39258 -7.00195l32.8359 -180.635h25.7324c-4.49316 9.09473 -3.90723 19.874 1.54297 28.4268c-3.35156 1.53613 -6.3877 3.68164 -8.9541 6.32812c-11.4199 11.7783 -11.1309 30.585 0.647461 42.0059
|
||||
c-9.43164 9.0625 -11.7217 23.2754 -5.6123 34.8408c-12.1523 2.19043 -22.5557 9.99512 -28.0605 21.0498l15.2676 7.62402c3.74707 -7.57324 11.4736 -12.3594 19.9229 -12.3408h57.6904v78.168l-86.8164 15.7871l3.05371 16.7842l92.1807 -16.7676l83.6943 16.7344
|
||||
l3.41211 -16.7168l-78.4668 -15.6934v-78.2959h57.6895c8.48145 -0.0517578 16.248 4.74023 20.0098 12.3408l15.2666 -7.62402c-5.5166 -11.0703 -15.9453 -18.876 -28.1201 -21.0498c6.10352 -11.5703 3.80273 -25.7852 -5.6377 -34.8408
|
||||
c2.64648 -2.56641 4.79199 -5.60352 6.32715 -8.9541c6.83301 -14.915 0.28125 -32.5469 -14.6348 -39.3799c5.4502 -8.55273 6.03711 -19.332 1.54395 -28.4268h25.7324l32.8359 180.635c0.738281 4.05566 4.27148 7.00293 8.39258 7.00195h110.876v0zM113.021 183.341
|
||||
h23.5742v-17.0586h-23.5742c-14.9199 -0.0322266 -28.5625 8.40918 -35.1904 21.7744l15.2666 7.625c3.74707 -7.57324 11.4736 -12.3594 19.9238 -12.3408v0zM418.987 195.681l15.2676 -7.625c-6.64258 -13.3936 -20.3262 -21.8398 -35.2764 -21.7744h-23.5742v17.0586
|
||||
h23.5742c8.48145 -0.0517578 16.248 4.73926 20.0088 12.3408z" />
|
||||
<glyph glyph-name="uniF105" unicode=""
|
||||
d="M503.239 199.787c4.38086 0 8.76074 -2.91992 8.76074 -7.30078c0 -4.37988 -3.40723 -7.78711 -7.78711 -7.78711h-51.1025c-3.89355 -7.2998 -8.27344 -14.6006 -13.6279 -21.9004c-55.4824 -80.791 -161.095 -148.928 -178.129 -157.202v-0.486328h-1.45996
|
||||
c-0.486328 -0.486328 -0.973633 -0.486328 -0.973633 -0.486328v0.486328c-19.9541 4.86719 -129.946 84.1973 -180.562 157.201c-3.40723 4.38086 -6.32715 8.76074 -8.76074 13.1406h-61.8096c-4.37988 0 -7.78711 3.40723 -7.78711 7.78711
|
||||
c0 4.38086 3.40723 7.78711 7.78711 7.78711h52.5625c-22.874 45.2627 -20.4404 81.2773 -13.627 105.126c11.6807 39.9082 51.1025 83.2236 109.506 83.2236c15.0869 0 31.1475 -2.91992 47.209 -8.75977c28.2275 -10.2207 46.2354 -21.415 54.5088 -27.2549
|
||||
c8.27441 5.83984 26.7686 17.0342 54.5098 27.2549c16.0615 5.83984 31.6348 8.75977 47.209 8.75977c58.4033 0 97.8252 -43.3154 109.506 -83.2236c6.81348 -22.3877 8.76074 -55.4834 -9.24707 -96.3652h43.3154zM425.369 171.072
|
||||
c2.91992 4.37988 5.83984 8.76074 8.75977 13.627h-43.8018c-2.91992 0 -5.35352 1.46094 -6.81348 3.89355l-16.0615 27.2549l-18.9805 -27.7412c-1.94727 -2.43359 -4.86719 -3.89355 -7.78711 -3.40723c-2.91992 0.487305 -5.35352 2.43359 -6.32715 5.35449
|
||||
l-23.8477 77.3838l-44.7764 -153.309c-0.972656 -3.40625 -3.89355 -5.83984 -7.2998 -5.83984h-0.487305c-2.91992 0 -6.32617 1.94629 -7.2998 4.86719l-51.1025 130.92l-32.6084 -64.2432c-1.45996 -2.9209 -4.38086 -4.38086 -7.30078 -4.38086h-71.5439
|
||||
l2.9209 -4.37988c52.0762 -74.9502 146.494 -136.273 167.422 -149.414c20.4414 13.1406 115.346 73.9766 166.936 149.414zM442.89 199.787c15.5742 32.6084 19.9541 63.7568 11.6807 91.9844c-10.2207 34.5557 -44.2891 71.5439 -94.418 71.5439
|
||||
c-13.6279 0 -27.7412 -2.43359 -41.8555 -7.78711c-36.0156 -13.1406 -54.9961 -28.2275 -54.9961 -28.2275c-2.9209 -2.43359 -6.81445 -2.43359 -9.73438 0c-0.486328 0 -19.4678 15.0869 -54.9961 28.2275c-14.1143 4.86719 -28.2285 7.78711 -41.8555 7.78711
|
||||
c-50.6162 0 -84.1973 -36.9883 -94.418 -71.5439c-8.76074 -30.6611 -3.40723 -64.7295 16.0605 -100.258h77.3838l38.4492 75.4365c1.45996 2.9209 3.89355 4.38086 7.2998 4.38086c2.9209 0 5.84082 -1.94727 6.81348 -4.86719l49.1562 -125.566l45.2627 156.228
|
||||
c0.973633 3.40723 4.37988 5.84082 7.78711 5.84082c3.40625 -0.486328 6.81348 -2.43359 7.78711 -5.84082l26.7676 -87.1172l16.5479 24.334c1.45996 2.43359 3.89355 3.40723 6.81348 3.40723s5.35352 -1.45996 6.81348 -3.89355l19.9551 -34.0684h47.6953z" />
|
||||
<glyph glyph-name="uniF101" unicode=""
|
||||
d="M328.55 448c25.9209 0 46.9326 -21.0127 46.9326 -46.9336v-17.0664c-0.0273438 -25.9092 -21.0234 -46.9053 -46.9326 -46.9336c-25.9102 0.0283203 -46.9062 21.0244 -46.9336 46.9336v17.0664c0 25.9209 21.0117 46.9336 46.9336 46.9336zM358.416 384v17.0664
|
||||
c0 16.4951 -13.3721 29.8672 -29.8662 29.8672c-16.4951 0 -29.8672 -13.3721 -29.8672 -29.8672v-17.0664c0 -16.4951 13.3721 -29.8662 29.8672 -29.8662c16.4941 0 29.8662 13.3711 29.8662 29.8662zM508.187 344.199c3.91992 -2.61523 4.97754 -7.91406 2.36133 -11.834
|
||||
l-69.2305 -103.852c-11.5674 -17.459 -34.126 -23.8936 -53.1631 -15.1631l-60.5859 27.5537l-34.4922 -55.1846l69.9736 -50.8926c13.2832 -9.73145 19.8164 -26.2129 16.8105 -42.4023l-20.5908 -109.79l16.0254 -10.6328
|
||||
c5.52539 -3.65039 8.83594 -9.84082 8.80762 -16.4629c-0.0478516 -10.8389 -8.87402 -19.5869 -19.7129 -19.5391h-65.707c-0.352539 0 -0.706055 0.0224609 -1.05566 0.0664062c-4.67676 0.583984 -7.99414 4.84863 -7.40918 9.52539l16.4775 131.507l-82.457 59.9551
|
||||
l-43.9219 -69.0264c-8.4209 -13.2148 -23.4102 -20.749 -39.04 -19.626l-93.4736 6.68164l-11.6396 -23.2021c-3.2168 -6.47852 -9.83301 -10.5674 -17.0664 -10.5479c-10.5342 0.00976562 -19.0713 8.54688 -19.0811 19.0811v66.2529
|
||||
c0 4.71191 3.82129 8.5332 8.53418 8.5332h106.061l100.83 170.666h-49.4941l-74.2393 -82.5088c-2.83789 -3.1582 -7.56543 -3.75098 -11.0938 -1.39062l-25.5996 17.0664c-3.87598 2.58496 -4.96094 7.7998 -2.44043 11.7168l66.7217 103.757
|
||||
c7.81934 12.249 21.3574 19.6533 35.8916 19.627h93.2002c6.27344 0.0078125 12.4707 -1.3584 18.1592 -4.00293l132.736 -62.4639l72.5332 72.5332c2.87695 2.87793 7.38477 3.32422 10.7695 1.06738l25.5996 -17.0674
|
||||
c0.000976562 0 0.000976562 -0.000976562 0.00195312 -0.000976562zM34.1494 66.0137v32.1201h-17.0664v-57.7197c0.0830078 -0.599609 0.421875 -1.13379 0.929688 -1.46484c0.967773 -0.629883 2.2627 -0.356445 2.89258 0.611328zM196.282 302.934v34.1328h-41.0957
|
||||
c-8.71777 0.0205078 -16.8408 -4.41504 -21.5381 -11.7588l-62.1826 -96.7256l12.4756 -8.31934l71.8672 79.8457c1.61816 1.79785 3.92285 2.82422 6.34082 2.8252h34.1328zM165.887 77.2178l10.7695 16.9219l-42.1973 21.0605l-7.62891 -12.877
|
||||
c-1.53613 -2.59766 -4.33008 -4.19141 -7.34766 -4.18945h-68.2666v-26.1895l91.2471 -6.51953c9.37793 -0.65332 18.3643 3.87109 23.4238 11.793zM365.797 -42.1973l-18.4746 12.3311h-36.8379l-2.13379 -17.0674h56.0391
|
||||
c0.907227 -0.0214844 1.75879 0.439453 2.23633 1.21191c0.745117 1.20215 0.373047 2.78027 -0.829102 3.52441zM353.015 120.994l-19.4219 14.123l-25.3525 -38.0332l12.5605 -9.11426c2.50098 -1.83496 3.80762 -4.88379 3.41406 -7.96094l-11.5977 -92.8086h30.1826
|
||||
l20.3184 108.373c1.79102 9.71094 -2.13574 19.5898 -10.1035 25.4209zM319.777 145.169l-42.4619 30.874l-84.2588 38.2969l-49.8682 -84.3857l42.666 -21.333l28.8174 45.2949c0.0957031 0.149414 0.195312 0.295898 0.299805 0.439453
|
||||
c2.77246 3.81055 8.1084 4.65332 11.9199 1.88086l67.5244 -49.1084zM327.815 259.499l20.3604 -9.24219l17.1865 34.458l-106.078 49.9111c-3.41016 1.60254 -7.12988 2.43555 -10.8975 2.44043h-35.0371v-34.1328h17.0664
|
||||
c3.05859 0.00976562 5.88672 -1.61816 7.41504 -4.2666c1.5332 -2.67188 1.50781 -5.96289 -0.0673828 -8.61035l-36.0029 -60.9199l76.5781 -34.8066l38.708 61.9258c2.26855 3.62793 6.87402 5.01465 10.7686 3.24316zM427.152 237.952l64.4941 96.751l-12.6797 8.44824
|
||||
l-71.8506 -71.8516c-2.54688 -2.54199 -6.41406 -3.21484 -9.66895 -1.68066l-16.6309 7.83398l-17.127 -34.2529l31.5654 -14.3535c11.4238 -5.22949 24.9551 -1.36719 31.8975 9.10547z" />
|
||||
<glyph glyph-name="uniF104" unicode=""
|
||||
d="M292.555 55.4902c3.99512 0 7.54688 -3.55176 7.54688 -7.54688c0 -3.99609 -3.10742 -7.10352 -7.10352 -7.10352h-48.833c-3.99512 0 -7.10254 3.10742 -7.10254 7.10352c0 3.99512 3.10742 7.10254 7.10254 7.10254h5.32715l-15.0938 10.2109
|
||||
c-12.874 -14.6504 -31.5195 -24.417 -52.8281 -24.417c-37.7344 0 -68.8105 31.0762 -68.8105 68.8105s31.0762 68.8105 68.8105 68.8105s68.8096 -31.0762 68.8096 -68.8105c0 -11.542 -3.10742 -22.1973 -7.99023 -31.9639l32.8516 -22.1963h17.3135zM229.959 85.6777
|
||||
c3.55176 7.10254 5.77148 15.5381 5.77148 23.9727c0 29.7441 -24.417 54.1602 -54.1602 54.1602c-29.7441 0 -54.1602 -24.416 -54.1602 -54.1602s24.416 -54.1602 54.1602 -54.1602c15.9814 0 30.6318 7.10254 39.9541 18.2012l-44.3936 29.7441
|
||||
c-3.10742 2.21973 -3.99512 6.6582 -1.77539 10.21c2.21875 3.10742 6.6582 3.99609 10.21 1.77637zM511.859 399.541c0.443359 -2.21973 0.887695 -5.77148 -16.4258 -34.627c-19.0898 -31.5195 -43.5059 -31.0762 -47.9453 -30.6318h-39.0664l-32.8516 -126.966
|
||||
c39.9541 -12.4307 68.8105 -51.4971 68.8105 -97.666c0 -55.9365 -42.6182 -101.661 -95.4463 -101.661h-187.785c-52.3848 0 -95.4473 45.2812 -95.4473 101.661c0 55.9355 42.6182 101.661 95.4473 101.661h14.2061l-36.4033 88.7881h-34.1826
|
||||
c-14.2061 0 -25.749 11.542 -25.749 25.748s11.543 25.748 25.749 25.748h86.5674c14.2061 0 25.748 -11.542 25.748 -25.748s-11.542 -25.748 -25.748 -25.748h-36.4033l36.4033 -88.7881h157.598c3.99512 0 8.43457 -0.443359 12.4297 -0.887695l34.1836 133.181
|
||||
c0.887695 3.1084 3.99512 5.32812 7.10254 5.32812h45.2822h0.887695c0.443359 0 18.6455 -1.33203 34.1826 23.9717c5.32715 8.43555 8.43457 14.6504 10.6543 18.6455h-150.05c-3.99609 0 -7.10352 3.10742 -7.10352 7.10352c0 3.99512 3.10742 7.10254 7.10352 7.10254
|
||||
h160.705c3.55078 0 6.6582 -2.21973 7.54688 -6.21484zM104.77 314.749h86.123c6.21484 0 11.0986 4.88379 11.0986 11.0986s-4.88379 11.0986 -11.0986 11.0986h-86.123c-6.21582 0 -11.0986 -4.88379 -11.0986 -11.0986s4.88281 -11.0986 11.0986 -11.0986zM429.73 109.65
|
||||
c0 47.9453 -36.4023 87.4551 -80.7959 87.4551h-187.785c-44.3945 0 -80.7969 -39.5098 -80.7969 -87.4551c0 -48.3896 35.959 -87.4561 80.7969 -87.4561h187.785c44.3936 0 80.7959 39.5107 80.7959 87.4561zM504.312 -7.54883
|
||||
c3.99512 0 7.54688 -3.55176 7.10254 -7.10352c0 -3.99512 -3.10742 -7.10254 -7.10254 -7.10254h-497.21c-3.99512 0 -7.10254 3.10742 -7.10254 7.10254c0 3.99609 3.10742 7.10352 7.10254 7.10352h497.21zM353.817 178.017c3.99609 0 7.10352 -3.10742 7.10352 -7.10352
|
||||
c0 -3.99512 -3.10742 -7.10254 -7.10352 -7.10254h-67.4785c-3.99512 0 -7.10254 3.10742 -7.10254 7.10254c0 3.99609 3.10742 7.54785 7.10254 7.10352h67.4785z" />
|
||||
</font>
|
||||
</defs></svg>
|
||||
|
After Width: | Height: | Size: 44 KiB |
BIN
customer/template/bodyfit/fonts/flaticon/font/Flaticon.ttf
Normal file
BIN
customer/template/bodyfit/fonts/flaticon/font/Flaticon.woff
Normal file
59
customer/template/bodyfit/fonts/flaticon/font/_flaticon.scss
Normal file
@ -0,0 +1,59 @@
|
||||
/*
|
||||
Flaticon icon font: Flaticon
|
||||
Creation date: 16/10/2018 07:46
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: "Flaticon";
|
||||
src: url("./Flaticon.eot");
|
||||
src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
|
||||
url("./Flaticon.woff") format("woff"),
|
||||
url("./Flaticon.ttf") format("truetype"),
|
||||
url("./Flaticon.svg#Flaticon") format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||
@font-face {
|
||||
font-family: "Flaticon";
|
||||
src: url("./Flaticon.svg#Flaticon") format("svg");
|
||||
}
|
||||
}
|
||||
|
||||
.fi:before{
|
||||
display: inline-block;
|
||||
font-family: "Flaticon";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
line-height: 1;
|
||||
text-decoration: inherit;
|
||||
text-rendering: optimizeLegibility;
|
||||
text-transform: none;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.flaticon-gym:before { content: "\f100"; }
|
||||
.flaticon-running:before { content: "\f101"; }
|
||||
.flaticon-workout:before { content: "\f102"; }
|
||||
.flaticon-woman:before { content: "\f103"; }
|
||||
.flaticon-stationary-bike:before { content: "\f104"; }
|
||||
.flaticon-heart:before { content: "\f105"; }
|
||||
.flaticon-meditation:before { content: "\f106"; }
|
||||
.flaticon-ruler:before { content: "\f107"; }
|
||||
.flaticon-abs:before { content: "\f108"; }
|
||||
.flaticon-tools-and-utensils:before { content: "\f109"; }
|
||||
|
||||
$font-Flaticon-gym: "\f100";
|
||||
$font-Flaticon-running: "\f101";
|
||||
$font-Flaticon-workout: "\f102";
|
||||
$font-Flaticon-woman: "\f103";
|
||||
$font-Flaticon-stationary-bike: "\f104";
|
||||
$font-Flaticon-heart: "\f105";
|
||||
$font-Flaticon-meditation: "\f106";
|
||||
$font-Flaticon-ruler: "\f107";
|
||||
$font-Flaticon-abs: "\f108";
|
||||
$font-Flaticon-tools-and-utensils: "\f109";
|
||||
41
customer/template/bodyfit/fonts/flaticon/font/flaticon.css
Normal file
@ -0,0 +1,41 @@
|
||||
/*
|
||||
Flaticon icon font: Flaticon
|
||||
Creation date: 16/10/2018 07:46
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: "Flaticon";
|
||||
src: url("./Flaticon.eot");
|
||||
src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
|
||||
url("./Flaticon.woff") format("woff"),
|
||||
url("./Flaticon.ttf") format("truetype"),
|
||||
url("./Flaticon.svg#Flaticon") format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||
@font-face {
|
||||
font-family: "Flaticon";
|
||||
src: url("./Flaticon.svg#Flaticon") format("svg");
|
||||
}
|
||||
}
|
||||
|
||||
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
|
||||
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
|
||||
font-family: Flaticon;
|
||||
font-size: 20px;
|
||||
font-style: normal;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.flaticon-gym:before { content: "\f100"; }
|
||||
.flaticon-running:before { content: "\f101"; }
|
||||
.flaticon-workout:before { content: "\f102"; }
|
||||
.flaticon-woman:before { content: "\f103"; }
|
||||
.flaticon-stationary-bike:before { content: "\f104"; }
|
||||
.flaticon-heart:before { content: "\f105"; }
|
||||
.flaticon-meditation:before { content: "\f106"; }
|
||||
.flaticon-ruler:before { content: "\f107"; }
|
||||
.flaticon-abs:before { content: "\f108"; }
|
||||
.flaticon-tools-and-utensils:before { content: "\f109"; }
|
||||
505
customer/template/bodyfit/fonts/flaticon/font/flaticon.html
Normal file
@ -0,0 +1,505 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Flaticon icon font: Flaticon
|
||||
Creation date: 16/10/2018 07:46
|
||||
-->
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Flaticon WebFont</title>
|
||||
<link href="http://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="flaticon.css">
|
||||
<meta charset="UTF-8">
|
||||
<style>
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||
article, aside, canvas, details, embed,
|
||||
figure, figcaption, footer, header, hgroup,
|
||||
menu, nav, output, ruby, section, summary,
|
||||
time, mark, audio, video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article, aside, details, figcaption, figure,
|
||||
footer, header, hgroup, menu, nav, section {
|
||||
display: block;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
body {
|
||||
font-family: 'Varela Round', Helvetica, Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
color: #222;
|
||||
}
|
||||
a {
|
||||
color: #333;
|
||||
border-bottom: 1px solid #a9fd00;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
* {
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
|
||||
font-family: Flaticon;
|
||||
font-size: 30px;
|
||||
font-style: normal;
|
||||
margin-left: 20px;
|
||||
color: #333;
|
||||
}
|
||||
.wrapper {
|
||||
max-width: 600px;
|
||||
margin: auto;
|
||||
padding: 0 1em;
|
||||
}
|
||||
.title {
|
||||
font-size: 1.25em;
|
||||
text-align: center;
|
||||
margin-bottom: 1em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
background-color: #222;
|
||||
color: #fff;
|
||||
padding: 1em;
|
||||
}
|
||||
header .logo {
|
||||
width: 210px;
|
||||
height: 38px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin-right: 1em;
|
||||
border: none;
|
||||
}
|
||||
header strong {
|
||||
font-size: 1.95em;
|
||||
font-weight: bold;
|
||||
vertical-align: middle;
|
||||
margin-top: 5px;
|
||||
display: inline-block;
|
||||
}
|
||||
.demo {
|
||||
margin: 2em auto;
|
||||
line-height: 1.25em;
|
||||
}
|
||||
.demo ul li {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.demo ul li .num {
|
||||
color: #222;
|
||||
border-radius: 20px;
|
||||
display: inline-block;
|
||||
width: 26px;
|
||||
padding: 3px;
|
||||
height: 26px;
|
||||
text-align: center;
|
||||
margin-right: 0.5em;
|
||||
border: 1px solid #222;
|
||||
}
|
||||
.demo ul li code {
|
||||
background-color: #222;
|
||||
border-radius: 4px;
|
||||
padding: 0.25em 0.5em;
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
|
||||
font-weight: lighter;
|
||||
margin-top: 1em;
|
||||
font-size: 0.8em;
|
||||
word-break: break-all;
|
||||
}
|
||||
.demo ul li code.big {
|
||||
padding: 1em;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
.demo ul li code .red {
|
||||
color: #EF3159;
|
||||
}
|
||||
.demo ul li code .green {
|
||||
color: #ACFF65;
|
||||
}
|
||||
.demo ul li code .yellow {
|
||||
color: #FFFF99;
|
||||
}
|
||||
.demo ul li code .blue {
|
||||
color: #99D3FF;
|
||||
}
|
||||
.demo ul li code .purple {
|
||||
color: #A295FF;
|
||||
}
|
||||
.demo ul li code .dots {
|
||||
margin-top: 0.5em;
|
||||
display: block;
|
||||
}
|
||||
#glyphs {
|
||||
border-bottom: 1px solid #ccc;
|
||||
padding: 2em 0;
|
||||
text-align: center;
|
||||
}
|
||||
.glyph {
|
||||
display: inline-block;
|
||||
width: 9em;
|
||||
margin: 1em;
|
||||
text-align: center;
|
||||
vertical-align: top;
|
||||
background: #FFF;
|
||||
}
|
||||
.glyph .glyph-icon {
|
||||
padding: 10px;
|
||||
display: block;
|
||||
font-family:"Flaticon";
|
||||
font-size: 64px;
|
||||
line-height: 1;
|
||||
}
|
||||
.glyph .glyph-icon:before {
|
||||
font-size: 64px;
|
||||
color: #222;
|
||||
margin-left: 0;
|
||||
}
|
||||
.class-name {
|
||||
font-size: 0.65em;
|
||||
background-color: #222;
|
||||
color: #fff;
|
||||
border-radius: 4px 4px 0 0;
|
||||
padding: 0.5em;
|
||||
color: #FFFF99;
|
||||
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
|
||||
}
|
||||
.author-name {
|
||||
font-size: 0.6em;
|
||||
background-color: #fcfcfd;
|
||||
border: 1px solid #DEDEE4;
|
||||
border-top: 0;
|
||||
border-radius: 0 0 4px 4px;
|
||||
padding: 0.5em;
|
||||
}
|
||||
.class-name:last-child {
|
||||
font-size: 10px;
|
||||
color:#888;
|
||||
}
|
||||
.class-name:last-child a {
|
||||
font-size: 10px;
|
||||
color:#555;
|
||||
}
|
||||
.class-name:last-child a:hover {
|
||||
color:#a9fd00;
|
||||
}
|
||||
.glyph > input {
|
||||
display: block;
|
||||
width: 100px;
|
||||
margin: 5px auto;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
cursor: text;
|
||||
}
|
||||
.glyph > input.icon-input {
|
||||
font-family:"Flaticon";
|
||||
font-size: 16px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.attribution .title {
|
||||
margin-top: 2em;
|
||||
}
|
||||
.attribution textarea {
|
||||
background-color: #fcfcfd;
|
||||
padding: 1em;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
border: 1px solid #DEDEE4;
|
||||
border-radius: 4px;
|
||||
resize: none;
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
font-size: 0.8em;
|
||||
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
.iconsuse {
|
||||
margin: 2em auto;
|
||||
text-align: center;
|
||||
max-width: 1200px;
|
||||
}
|
||||
.iconsuse:after {
|
||||
content: '';
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
.iconsuse .image {
|
||||
float: left;
|
||||
width: 25%;
|
||||
padding: 0 1em;
|
||||
}
|
||||
.iconsuse .image p {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.iconsuse .image span {
|
||||
display: block;
|
||||
font-size: 0.65em;
|
||||
background-color: #222;
|
||||
color: #fff;
|
||||
border-radius: 4px;
|
||||
padding: 0.5em;
|
||||
color: #FFFF99;
|
||||
margin-top: 1em;
|
||||
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
|
||||
}
|
||||
#footer {
|
||||
text-align: center;
|
||||
background-color: #4C5B5C;
|
||||
color: #7c9192;
|
||||
padding: 1em;
|
||||
}
|
||||
#footer a {
|
||||
border: none;
|
||||
color: #a9fd00;
|
||||
font-weight: normal;
|
||||
}
|
||||
@media (max-width: 960px) {
|
||||
.iconsuse .image {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 560px) {
|
||||
.iconsuse .image {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body class="characters-off">
|
||||
|
||||
<header>
|
||||
<a href="https://www.flaticon.com" target="_blank" class="logo">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" viewBox="0 0 560.875 102.036" enable-background="new 0 0 560.875 102.036" xml:space="preserve">
|
||||
<defs>
|
||||
</defs>
|
||||
<g>
|
||||
<g class="letters">
|
||||
<path fill="#ffffff" d="M141.596,29.675c0-3.777,2.985-6.767,6.764-6.767h34.438c3.426,0,6.15,2.728,6.15,6.15
|
||||
c0,3.43-2.724,6.149-6.15,6.149h-27.674v13.091h23.719c3.429,0,6.151,2.724,6.151,6.15c0,3.43-2.723,6.149-6.151,6.149h-23.719
|
||||
v17.574c0,3.773-2.986,6.761-6.764,6.761c-3.779,0-6.764-2.989-6.764-6.761V29.675z"></path>
|
||||
<path fill="#ffffff" d="M193.844,29.149c0-3.781,2.985-6.767,6.764-6.767c3.776,0,6.763,2.985,6.763,6.767v42.957h25.039
|
||||
c3.426,0,6.149,2.726,6.149,6.153c0,3.425-2.723,6.15-6.149,6.15h-31.802c-3.779,0-6.764-2.986-6.764-6.768V29.149z"></path>
|
||||
<path fill="#ffffff" d="M241.891,75.71l21.438-48.407c1.492-3.341,4.215-5.357,7.906-5.357h0.792
|
||||
c3.686,0,6.323,2.017,7.815,5.357l21.439,48.407c0.436,0.967,0.701,1.845,0.701,2.723c0,3.602-2.809,6.501-6.414,6.501
|
||||
c-3.161,0-5.269-1.845-6.499-4.655l-4.132-9.661h-27.059l-4.301,10.102c-1.144,2.631-3.426,4.214-6.237,4.214
|
||||
c-3.517,0-6.24-2.81-6.24-6.325C241.1,77.64,241.451,76.677,241.891,75.71z M279.932,58.666l-8.521-20.297l-8.526,20.297H279.932
|
||||
z"></path>
|
||||
<path fill="#ffffff" d="M314.864,35.387H301.86c-3.429,0-6.239-2.813-6.239-6.238c0-3.429,2.811-6.24,6.239-6.24h39.533
|
||||
c3.426,0,6.237,2.811,6.237,6.24c0,3.425-2.811,6.238-6.237,6.238h-13.001v42.785c0,3.773-2.99,6.761-6.764,6.761
|
||||
c-3.779,0-6.764-2.989-6.764-6.761V35.387z"></path>
|
||||
<path fill="#A9FD00" d="M352.615,29.149c0-3.781,2.985-6.767,6.767-6.767c3.774,0,6.761,2.985,6.761,6.767v49.024
|
||||
c0,3.773-2.987,6.761-6.761,6.761c-3.781,0-6.767-2.989-6.767-6.761V29.149z"></path>
|
||||
<path fill="#A9FD00" d="M374.132,53.836v-0.179c0-17.481,13.178-31.801,32.065-31.801c9.22,0,15.459,2.458,20.557,6.238
|
||||
c1.402,1.054,2.637,2.985,2.637,5.357c0,3.692-2.985,6.59-6.681,6.59c-1.845,0-3.071-0.702-4.044-1.319
|
||||
c-3.776-2.813-7.729-4.393-12.562-4.393c-10.364,0-17.831,8.611-17.831,19.154v0.173c0,10.542,7.291,19.329,17.831,19.329
|
||||
c5.715,0,9.492-1.756,13.359-4.834c1.049-0.874,2.458-1.491,4.039-1.491c3.429,0,6.325,2.813,6.325,6.236
|
||||
c0,2.106-1.056,3.78-2.282,4.834c-5.539,4.834-12.036,7.733-21.878,7.733C387.572,85.464,374.132,71.493,374.132,53.836z"></path>
|
||||
<path fill="#A9FD00" d="M433.009,53.836v-0.179c0-17.481,13.79-31.801,32.766-31.801c18.981,0,32.592,14.143,32.592,31.628v0.173
|
||||
c0,17.483-13.785,31.807-32.769,31.807C446.625,85.464,433.009,71.32,433.009,53.836z M484.224,53.836v-0.179
|
||||
c0-10.539-7.725-19.326-18.626-19.326c-10.893,0-18.449,8.611-18.449,19.154v0.173c0,10.542,7.73,19.329,18.626,19.329
|
||||
C476.676,72.986,484.224,64.378,484.224,53.836z"></path>
|
||||
<path fill="#A9FD00" d="M506.233,29.321c0-3.774,2.99-6.763,6.767-6.763h1.401c3.252,0,5.183,1.583,7.029,3.953l26.093,34.265
|
||||
V29.059c0-3.692,2.99-6.677,6.681-6.677c3.683,0,6.671,2.985,6.671,6.677v48.934c0,3.78-2.987,6.765-6.764,6.765h-0.436
|
||||
c-3.257,0-5.188-1.581-7.034-3.953l-27.056-35.492v32.944c0,3.687-2.985,6.676-6.678,6.676c-3.683,0-6.673-2.989-6.673-6.676
|
||||
V29.321z"></path>
|
||||
</g>
|
||||
<g class="insignia">
|
||||
<path fill="#ffffff" d="M48.372,56.137h12.517l11.156-18.537H37.186L25.688,18.539h57.825L94.668,0H9.271
|
||||
C5.925,0,2.842,1.801,1.198,4.716c-1.644,2.907-1.593,6.482,0.134,9.343l50.38,83.501c1.678,2.781,4.689,4.476,7.938,4.476
|
||||
c3.246,0,6.257-1.695,7.935-4.476l2.898-4.804L48.372,56.137z"></path>
|
||||
<g class="i">
|
||||
<path fill="#A9FD00" d="M93.575,18.539h0.031v0.004l21.652,0.004l2.705-4.488c1.727-2.861,1.778-6.436,0.133-9.343
|
||||
C116.454,1.801,113.371,0,110.026,0h-5.294L93.575,18.539z"></path>
|
||||
<polygon fill="#A9FD00" points="88.291,27.356 64.725,66.486 75.519,84.404 109.942,27.356"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
</a>
|
||||
<strong>Font Demo</strong>
|
||||
</header>
|
||||
|
||||
|
||||
<section class="demo wrapper">
|
||||
|
||||
<p class="title">Instructions</p>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<span class="num">1</span>Copy the "Fonts" files and CSS files to your website CSS folder.
|
||||
</li>
|
||||
<li>
|
||||
<span class="num">2</span>Add the CSS link to your website source code on header.
|
||||
<code class="big">
|
||||
<<span class="red">head</span>>
|
||||
<br/><span class="dots">...</span>
|
||||
<br/><<span class="red">link</span> <span class="green">rel</span>=<span class="yellow">"stylesheet"</span> <span class="green">type</span>=<span class="yellow">"text/css"</span> <span class="green">href</span>=<span class="yellow">"your_website_domain/css_root/flaticon.css"</span>>
|
||||
<br/><span class="dots">...</span>
|
||||
<br/></<span class="red">head</span>>
|
||||
</code>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<p>
|
||||
<span class="num">3</span>Use the icon class on <code>"<span class="blue">display</span>:<span class="purple"> inline</span>"</code> elements:
|
||||
<br />
|
||||
Use example: <code><<span class="red">i</span> <span class="green">class</span>=<span class="yellow">"flaticon-airplane49"</span>></<span class="red">i</span>></code> or <code><<span class="red">span</span> <span class="green">class</span>=<span class="yellow">"flaticon-airplane49"</span>></<span class="red">span</span>></code>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
<section id="glyphs">
|
||||
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-gym"></div>
|
||||
<div class="class-name">.flaticon-gym</div>
|
||||
<div class="author-name">Author: <a data-file="001-gym" href="https://www.flaticon.com/authors/becris">Becris</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-running"></div>
|
||||
<div class="class-name">.flaticon-running</div>
|
||||
<div class="author-name">Author: <a data-file="002-running" href="https://www.flaticon.com/authors/monkik">monkik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-workout"></div>
|
||||
<div class="class-name">.flaticon-workout</div>
|
||||
<div class="author-name">Author: <a data-file="003-workout" href="https://www.flaticon.com/authors/monkik">monkik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-woman"></div>
|
||||
<div class="class-name">.flaticon-woman</div>
|
||||
<div class="author-name">Author: <a data-file="004-woman" href="https://www.flaticon.com/authors/ddara">dDara</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-stationary-bike"></div>
|
||||
<div class="class-name">.flaticon-stationary-bike</div>
|
||||
<div class="author-name">Author: <a data-file="005-stationary-bike" href="https://www.flaticon.com/authors/good-ware">Good Ware</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-heart"></div>
|
||||
<div class="class-name">.flaticon-heart</div>
|
||||
<div class="author-name">Author: <a data-file="006-heart" href="https://www.flaticon.com/authors/good-ware">Good Ware</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-meditation"></div>
|
||||
<div class="class-name">.flaticon-meditation</div>
|
||||
<div class="author-name">Author: <a data-file="007-meditation" href="https://www.flaticon.com/authors/eucalyp">Eucalyp</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-ruler"></div>
|
||||
<div class="class-name">.flaticon-ruler</div>
|
||||
<div class="author-name">Author: <a data-file="008-ruler" href="https://www.flaticon.com/authors/good-ware">Good Ware</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-abs"></div>
|
||||
<div class="class-name">.flaticon-abs</div>
|
||||
<div class="author-name">Author: <a data-file="009-abs" href="https://www.flaticon.com/authors/darius-dan">Darius Dan</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-tools-and-utensils"></div>
|
||||
<div class="class-name">.flaticon-tools-and-utensils</div>
|
||||
<div class="author-name">Author: <a data-file="010-tools-and-utensils" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
<section class="attribution wrapper" style="text-align:center;">
|
||||
|
||||
<div class="title">License and attribution:</div><div class="attrDiv">Font generated by <a href="https://www.flaticon.com">flaticon.com</a>. <div><p>Under <a href="http://creativecommons.org/licenses/by/3.0/">CC</a>: <a data-file="001-gym" href="https://www.flaticon.com/authors/becris">Becris</a>, <a data-file="002-running" href="https://www.flaticon.com/authors/monkik">monkik</a>, <a data-file="004-woman" href="https://www.flaticon.com/authors/ddara">dDara</a>, <a data-file="008-ruler" href="https://www.flaticon.com/authors/good-ware">Good Ware</a>, <a data-file="007-meditation" href="https://www.flaticon.com/authors/eucalyp">Eucalyp</a>, <a data-file="010-tools-and-utensils" href="http://www.freepik.com">Freepik</a>, <a data-file="009-abs" href="https://www.flaticon.com/authors/darius-dan">Darius Dan</a></p> </div>
|
||||
</div>
|
||||
<div class="title">Copy the Attribution License:</div>
|
||||
|
||||
<textarea onclick="this.focus();this.select();">Font generated by <a href="https://www.flaticon.com">flaticon.com</a>. <p>Under <a href="http://creativecommons.org/licenses/by/3.0/">CC</a>: <a data-file="001-gym" href="https://www.flaticon.com/authors/becris">Becris</a>, <a data-file="002-running" href="https://www.flaticon.com/authors/monkik">monkik</a>, <a data-file="004-woman" href="https://www.flaticon.com/authors/ddara">dDara</a>, <a data-file="008-ruler" href="https://www.flaticon.com/authors/good-ware">Good Ware</a>, <a data-file="007-meditation" href="https://www.flaticon.com/authors/eucalyp">Eucalyp</a>, <a data-file="010-tools-and-utensils" href="http://www.freepik.com">Freepik</a>, <a data-file="009-abs" href="https://www.flaticon.com/authors/darius-dan">Darius Dan</a></p>
|
||||
</textarea>
|
||||
|
||||
</section>
|
||||
|
||||
<section class="iconsuse">
|
||||
|
||||
<div class="title">Examples:</div>
|
||||
|
||||
<div class="image">
|
||||
<p>
|
||||
<i class="glyph-icon flaticon-gym"></i>
|
||||
<span><i class="flaticon-gym"></i></span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="image">
|
||||
<p>
|
||||
<i class="glyph-icon flaticon-running"></i>
|
||||
<span><i class="flaticon-running"></i></span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="image">
|
||||
<p>
|
||||
<i class="glyph-icon flaticon-workout"></i>
|
||||
<span><i class="flaticon-workout"></i></span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="image">
|
||||
<p>
|
||||
<i class="glyph-icon flaticon-woman"></i>
|
||||
<span><i class="flaticon-woman"></i></span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<div id="footer">
|
||||
<div>Generated by <a href="https://www.flaticon.com">flaticon.com</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
BIN
customer/template/bodyfit/fonts/flaticon/license/license.pdf
Normal file
BIN
customer/template/bodyfit/fonts/icomoon/icomoon.eot
Normal file
1530
customer/template/bodyfit/fonts/icomoon/icomoon.svg
Normal file
|
After Width: | Height: | Size: 913 KiB |
BIN
customer/template/bodyfit/fonts/icomoon/icomoon.ttf
Normal file
BIN
customer/template/bodyfit/fonts/icomoon/icomoon.woff
Normal file
1480
customer/template/bodyfit/fonts/ionicons/css/_ionicons.scss
Normal file
11
customer/template/bodyfit/fonts/ionicons/css/ionicons.min.css
vendored
Normal file
BIN
customer/template/bodyfit/fonts/ionicons/fonts/ionicons.eot
Normal file
2094
customer/template/bodyfit/fonts/ionicons/fonts/ionicons.svg
Normal file
|
After Width: | Height: | Size: 306 KiB |
BIN
customer/template/bodyfit/fonts/ionicons/fonts/ionicons.ttf
Normal file
BIN
customer/template/bodyfit/fonts/ionicons/fonts/ionicons.woff
Normal file
BIN
customer/template/bodyfit/fonts/ionicons/fonts/ionicons.woff2
Normal file
BIN
customer/template/bodyfit/fonts/open-iconic/open-iconic.eot
Normal file
BIN
customer/template/bodyfit/fonts/open-iconic/open-iconic.otf
Normal file
543
customer/template/bodyfit/fonts/open-iconic/open-iconic.svg
Normal file
@ -0,0 +1,543 @@
|
||||
<?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" >
|
||||
<!--
|
||||
2014-7-1: Created.
|
||||
-->
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>
|
||||
Created by FontForge 20120731 at Tue Jul 1 20:39:22 2014
|
||||
By P.J. Onori
|
||||
Created by P.J. Onori with FontForge 2.0 (http://fontforge.sf.net)
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="open-iconic" horiz-adv-x="800" >
|
||||
<font-face
|
||||
font-family="Icons"
|
||||
font-weight="400"
|
||||
font-stretch="normal"
|
||||
units-per-em="800"
|
||||
panose-1="2 0 5 3 0 0 0 0 0 0"
|
||||
ascent="800"
|
||||
descent="0"
|
||||
bbox="-0.5 -101 802 800.126"
|
||||
underline-thickness="50"
|
||||
underline-position="-100"
|
||||
unicode-range="U+E000-E0DE"
|
||||
/>
|
||||
<missing-glyph />
|
||||
<glyph glyph-name="" unicode=""
|
||||
d="M300 700h500v-700h-500v100h400v500h-400v100zM400 500l200 -150l-200 -150v100h-400v100h400v100z" />
|
||||
<glyph glyph-name="1" unicode=""
|
||||
d="M300 700h500v-700h-500v100h400v500h-400v100zM200 500v-100h400v-100h-400v-100l-200 150z" />
|
||||
<glyph glyph-name="2" unicode=""
|
||||
d="M350 700c193 0 350 -157 350 -350v-50h100l-200 -200l-200 200h100v50c0 138 -112 250 -250 250s-250 -112 -250 -250c0 193 157 350 350 350z" />
|
||||
<glyph glyph-name="3" unicode=""
|
||||
d="M450 700c193 0 350 -157 350 -350c0 138 -112 250 -250 250s-250 -112 -250 -250v-50h100l-200 -200l-200 200h100v50c0 193 157 350 350 350z" />
|
||||
<glyph glyph-name="4" unicode=""
|
||||
d="M0 700h800v-100h-800v100zM100 500h600v-100h-600v100zM0 300h800v-100h-800v100zM100 100h600v-100h-600v100z" />
|
||||
<glyph glyph-name="5" unicode=""
|
||||
d="M0 700h800v-100h-800v100zM0 500h600v-100h-600v100zM0 300h800v-100h-800v100zM0 100h600v-100h-600v100z" />
|
||||
<glyph glyph-name="6" unicode=""
|
||||
d="M0 700h800v-100h-800v100zM200 500h600v-100h-600v100zM0 300h800v-100h-800v100zM200 100h600v-100h-600v100z" />
|
||||
<glyph glyph-name="7" unicode=""
|
||||
d="M400 700c75 0 146 -23 206 -59l-75 -225l-322 234c57 31 122 50 191 50zM125 588l191 -138l-310 -222c-4 24 -6 47 -6 72c0 114 49 215 125 288zM688 575c69 -72 112 -168 112 -275c0 -35 -8 -68 -16 -100h-218zM216 253l112 -347c-128 23 -232 109 -287 222zM372 100
|
||||
h372c-64 -109 -177 -185 -310 -197z" />
|
||||
<glyph glyph-name="8" unicode="" horiz-adv-x="600"
|
||||
d="M200 800h100v-500h200l-247 -300l-253 300h200v500z" />
|
||||
<glyph glyph-name="9" unicode=""
|
||||
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM300 700v-300h-200l300 -300l300 300h-200v300h-200z" />
|
||||
<glyph glyph-name="a" unicode=""
|
||||
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700l-300 -300l300 -300v200h300v200h-300v200z" />
|
||||
<glyph glyph-name="b" unicode=""
|
||||
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700v-200h-300v-200h300v-200l300 300z" />
|
||||
<glyph glyph-name="c" unicode=""
|
||||
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700l-300 -300h200v-300h200v300h200z" />
|
||||
<glyph glyph-name="d" unicode=""
|
||||
d="M300 600v-200h500v-100h-500v-200l-300 247z" />
|
||||
<glyph glyph-name="e" unicode=""
|
||||
d="M500 600l300 -247l-300 -253v200h-500v100h500v200z" />
|
||||
<glyph glyph-name="f" unicode="" horiz-adv-x="600"
|
||||
d="M200 800h200v-500h200l-297 -300l-303 300h200v500z" />
|
||||
<glyph glyph-name="10" unicode=""
|
||||
d="M300 700v-200h500v-200h-500v-200l-300 297z" />
|
||||
<glyph glyph-name="11" unicode=""
|
||||
d="M500 700l300 -297l-300 -303v200h-500v200h500v200z" />
|
||||
<glyph glyph-name="12" unicode="" horiz-adv-x="600"
|
||||
d="M297 800l303 -300h-200v-500h-200v500h-200z" />
|
||||
<glyph glyph-name="13" unicode="" horiz-adv-x="600"
|
||||
d="M247 800l253 -300h-200v-500h-100v500h-200z" />
|
||||
<glyph glyph-name="14" unicode=""
|
||||
d="M400 800h100v-800h-100v800zM200 700h100v-600h-100v600zM600 600h100v-400h-100v400zM0 500h100v-200h-100v200z" />
|
||||
<glyph glyph-name="15" unicode=""
|
||||
d="M116 600l72 -72c-54 -54 -88 -126 -88 -209s34 -159 88 -213l-72 -72c-72 72 -116 175 -116 285s44 209 116 281zM684 600c72 -72 116 -171 116 -281s-44 -213 -116 -285l-72 72c54 54 88 130 88 213s-34 155 -88 209zM259 460l69 -72c-18 -18 -28 -41 -28 -69
|
||||
s10 -54 28 -72l-69 -72c-36 36 -59 89 -59 144s23 105 59 141zM541 459c36 -36 59 -85 59 -140s-23 -108 -59 -144l-69 72c18 18 28 44 28 72s-10 51 -28 69z" />
|
||||
<glyph glyph-name="16" unicode="" horiz-adv-x="400"
|
||||
d="M200 800c110 0 200 -90 200 -200s-90 -200 -200 -200s-200 90 -200 200s90 200 200 200zM100 319c31 -11 65 -19 100 -19s68 8 100 19v-319l-100 100l-100 -100v319z" />
|
||||
<glyph glyph-name="17" unicode=""
|
||||
d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300c0 -66 21 -126 56 -175l419 419c-49 35 -109 56 -175 56zM644 575l-419 -419c49 -35 109 -56 175 -56c166 0 300 134 300 300
|
||||
c0 66 -21 126 -56 175z" />
|
||||
<glyph glyph-name="18" unicode=""
|
||||
d="M0 700h100v-600h700v-100h-800v700zM500 700h200v-500h-200v500zM200 500h200v-300h-200v300z" />
|
||||
<glyph glyph-name="19" unicode=""
|
||||
d="M397 800c13 1 23 -4 34 -13c2 -2 214 -254 241 -287h128v-100h-100v-366c0 -18 -16 -34 -34 -34h-532c-18 0 -34 16 -34 34v366h-100v100h128l234 281c9 11 22 18 35 19zM400 672l-144 -172h288zM250 300c-28 0 -50 -22 -50 -50v-100c0 -28 22 -50 50 -50s50 22 50 50
|
||||
v100c0 28 -22 50 -50 50zM550 300c-28 0 -50 -22 -50 -50v-100c0 -28 22 -50 50 -50s50 22 50 50v100c0 28 -22 50 -50 50z" />
|
||||
<glyph glyph-name="1a" unicode=""
|
||||
d="M9 700h682c6 0 9 -4 9 -10v-190h100v-200h-100v-191c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v582c0 6 3 9 9 9zM100 600v-400h500v400h-500z" />
|
||||
<glyph glyph-name="1b" unicode=""
|
||||
d="M9 700h682c6 0 9 -4 9 -10v-190h100v-200h-100v-191c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v582c0 6 3 9 9 9z" />
|
||||
<glyph glyph-name="1c" unicode=""
|
||||
d="M92 650c0 23 19 50 45 50h3h5h5h500c28 0 50 -22 50 -50s-22 -50 -50 -50h-50v-141c9 -17 120 -231 166 -309c16 -26 34 -61 34 -106c0 -39 -15 -77 -41 -103h-3c-26 -25 -62 -41 -100 -41h-512c-39 0 -77 15 -103 41s-41 64 -41 103c0 46 18 80 34 106
|
||||
c46 78 157 292 166 309v141h-50c-2 0 -6 -1 -8 -1c-28 0 -50 23 -50 51zM500 600h-200v-162l-6 -10s-63 -123 -119 -228h450c-56 105 -119 228 -119 228l-6 10v162z" />
|
||||
<glyph glyph-name="1d" unicode=""
|
||||
d="M400 800c110 0 200 -90 200 -200c0 -104 52 -198 134 -266c41 -34 66 -82 66 -134h-800c0 52 25 100 66 134c82 68 134 162 134 266c0 110 90 200 200 200zM300 100h200c0 -55 -45 -100 -100 -100s-100 45 -100 100z" />
|
||||
<glyph glyph-name="1e" unicode="" horiz-adv-x="600"
|
||||
d="M150 800h50l350 -250l-225 -147l225 -153l-350 -250h-50v250l-75 -75l-75 75l150 150l-150 150l75 75l75 -75v250zM250 650v-200l150 100zM250 350v-200l150 100z" />
|
||||
<glyph glyph-name="1f" unicode=""
|
||||
d="M0 800h500c110 0 200 -90 200 -200c0 -47 -17 -91 -44 -125c85 -40 144 -125 144 -225c0 -138 -112 -250 -250 -250h-550v100c55 0 100 45 100 100v400c0 55 -45 100 -100 100v100zM300 700v-200h100c55 0 100 45 100 100s-45 100 -100 100h-100zM300 400v-300h150
|
||||
c83 0 150 67 150 150s-67 150 -150 150h-150z" />
|
||||
<glyph glyph-name="20" unicode="" horiz-adv-x="600"
|
||||
d="M300 800v-300h200l-300 -500v300h-200z" />
|
||||
<glyph glyph-name="21" unicode=""
|
||||
d="M100 800h300v-300l100 100l100 -100v300h50c28 0 50 -22 50 -50v-550h-550c-28 0 -50 -22 -50 -50s22 -50 50 -50h550v-100h-550c-83 0 -150 67 -150 150v550l3 19c8 39 39 70 78 78z" />
|
||||
<glyph glyph-name="22" unicode="" horiz-adv-x="400"
|
||||
d="M0 800h400v-800l-200 200l-200 -200v800z" />
|
||||
<glyph glyph-name="23" unicode=""
|
||||
d="M0 800h800v-100h-800v100zM0 600h300v-103h203v103h297v-591c0 -6 -3 -9 -9 -9h-782c-6 0 -9 3 -9 9v591z" />
|
||||
<glyph glyph-name="24" unicode=""
|
||||
d="M300 800h200c55 0 100 -45 100 -100v-100h191c6 0 9 -3 9 -9v-241c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v241c0 6 3 9 9 9h191v100c0 55 45 100 100 100zM300 700v-100h200v100h-200zM0 209c16 -6 32 -9 50 -9h700c18 0 34 3 50 9v-200c0 -6 -3 -9 -9 -9h-782
|
||||
c-6 0 -9 3 -9 9v200z" />
|
||||
<glyph glyph-name="25" unicode="" horiz-adv-x="600"
|
||||
d="M300 800c58 0 110 -16 147 -53s53 -89 53 -147h-100c0 39 -11 61 -25 75s-36 25 -75 25c-35 0 -55 -10 -72 -31s-28 -55 -28 -94c0 -51 20 -107 28 -175h172v-100h-178c-14 -60 -49 -127 -113 -200h491v-100h-600v122l16 12c69 69 95 121 106 166h-122v100h125
|
||||
c-8 50 -25 106 -25 175c0 58 16 114 50 156c34 43 88 69 150 69z" />
|
||||
<glyph glyph-name="26" unicode=""
|
||||
d="M34 700h4h3h4h5h700c28 0 50 -22 50 -50v-700c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v700v2c0 20 15 42 34 48zM150 600c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50zM350 600c-28 0 -50 -22 -50 -50s22 -50 50 -50h300c28 0 50 22 50 50
|
||||
s-22 50 -50 50h-300zM100 400v-400h600v400h-600z" />
|
||||
<glyph glyph-name="27" unicode=""
|
||||
d="M744 797l6 -3l44 -44c4 -4 3 -8 0 -12l-266 -375l-15 -13l-25 -12c-23 72 -78 127 -150 150l12 25l13 15l375 266zM266 400c74 0 134 -60 134 -134c0 -147 -119 -266 -266 -266c-48 0 -95 12 -134 34c80 46 134 133 134 232c0 74 58 134 132 134z" />
|
||||
<glyph glyph-name="28" unicode=""
|
||||
d="M9 451c0 23 19 50 46 50c8 0 19 -3 26 -7l131 -66l29 22c-79 81 -1 250 118 250s197 -167 119 -250l28 -22l131 66c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-115 -56c9 -16 19 -33 25 -50h68c28 0 50 -22 50 -50s-22 -50 -50 -50h-50
|
||||
c0 -23 -2 -45 -6 -66l78 -40c21 -5 37 -28 37 -49c0 -28 -22 -50 -50 -50c-10 0 -23 5 -31 11l-65 35c-24 -46 -62 -86 -103 -110c-35 19 -60 45 -60 72v135v4v5v6v5v5v87c0 28 -22 50 -50 50c-24 0 -45 -17 -50 -40c1 -3 1 -8 1 -11s0 -8 -1 -11v-82v-4v-5v-144
|
||||
c0 -28 -24 -53 -59 -72c-41 25 -79 64 -103 110l-66 -35c-8 -6 -21 -11 -31 -11c-28 0 -50 22 -50 50c0 21 16 44 37 49l78 40c-4 21 -6 43 -6 66h-50h-5c-28 0 -50 22 -50 50c0 26 22 50 50 50h5h69c6 17 16 34 25 50l-116 56c-16 7 -28 27 -28 45z" />
|
||||
<glyph glyph-name="29" unicode=""
|
||||
d="M600 700h91c6 0 9 -3 9 -9v-582c0 -6 -3 -9 -9 -9h-91v600zM210 503l290 147v-500l-250 125v-3c-15 0 -25 -8 -28 -22l75 -178c11 -25 0 -58 -25 -69s-58 0 -69 25l-103 272h-91c-6 0 -9 3 -9 9v182c0 6 3 9 9 9h182z" />
|
||||
<glyph glyph-name="2a" unicode=""
|
||||
d="M9 800h682c6 0 9 -3 9 -9v-782c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v782c0 6 3 9 9 9zM100 700v-200h500v200h-500zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400v-300h100v300h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100z" />
|
||||
<glyph glyph-name="2b" unicode=""
|
||||
d="M0 800h700v-200h-700v200zM0 500h700v-491c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v491zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100z" />
|
||||
<glyph glyph-name="2c" unicode=""
|
||||
d="M409 800h182c6 0 10 -4 12 -9l94 -182c2 -5 6 -9 12 -9h82c6 0 9 -3 9 -9v-582c0 -6 -3 -9 -9 -9h-782c-6 0 -9 3 -9 9v441c0 83 67 150 150 150h141c6 0 10 4 12 9l94 182c2 5 6 9 12 9zM150 500c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z
|
||||
M500 500c-110 0 -200 -90 -200 -200s90 -200 200 -200s200 90 200 200s-90 200 -200 200zM500 400c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100s45 100 100 100z" />
|
||||
<glyph glyph-name="2d" unicode=""
|
||||
d="M0 600h800l-400 -400z" />
|
||||
<glyph glyph-name="2e" unicode="" horiz-adv-x="400"
|
||||
d="M400 800v-800l-400 400z" />
|
||||
<glyph glyph-name="2f" unicode="" horiz-adv-x="400"
|
||||
d="M0 800l400 -400l-400 -400v800z" />
|
||||
<glyph glyph-name="30" unicode=""
|
||||
d="M400 600l400 -400h-800z" />
|
||||
<glyph glyph-name="31" unicode=""
|
||||
d="M0 550c0 23 20 50 46 50h3h5h4h200c17 0 37 -13 44 -28l38 -72h444c14 0 19 -12 15 -25l-81 -250c-4 -13 -21 -25 -35 -25h-350c-14 0 -30 12 -34 25c-27 83 -54 167 -81 250l-10 25h-150c-2 0 -5 -1 -7 -1c-28 0 -51 23 -51 51zM358 100c28 0 50 -22 50 -50
|
||||
s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM658 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" />
|
||||
<glyph glyph-name="32" unicode=""
|
||||
d="M0 700h500v-100h-300v-300h-100l-100 -100v500zM300 500h500v-500l-100 100h-400v400z" />
|
||||
<glyph glyph-name="33" unicode=""
|
||||
d="M641 700l143 -141l-493 -493c-71 76 -146 148 -219 222l-72 71l141 141c50 -51 101 -101 153 -150c116 117 234 231 347 350z" />
|
||||
<glyph glyph-name="34" unicode=""
|
||||
d="M150 600l250 -250l250 250l150 -150l-400 -400l-400 400z" />
|
||||
<glyph glyph-name="35" unicode="" horiz-adv-x="600"
|
||||
d="M400 800l150 -150l-250 -250l250 -250l-150 -150l-400 400z" />
|
||||
<glyph glyph-name="36" unicode="" horiz-adv-x="600"
|
||||
d="M150 800l400 -400l-400 -400l-150 150l250 250l-250 250z" />
|
||||
<glyph glyph-name="37" unicode=""
|
||||
d="M400 600l400 -400l-150 -150l-250 250l-250 -250l-150 150z" />
|
||||
<glyph glyph-name="38" unicode=""
|
||||
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM600 622l-250 -250l-100 100l-72 -72l172 -172l322 322z" />
|
||||
<glyph glyph-name="39" unicode=""
|
||||
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM250 622l-72 -72l150 -150l-150 -150l72 -72l150 150l150 -150l72 72l-150 150l150 150l-72 72l-150 -150z" />
|
||||
<glyph glyph-name="3a" unicode=""
|
||||
d="M350 800c28 0 50 -22 50 -50v-50h75c14 0 25 -11 25 -25v-75h-300v75c0 14 11 25 25 25h75v50c0 28 22 50 50 50zM25 700h75v-200h500v200h75c14 0 25 -11 25 -25v-650c0 -14 -11 -25 -25 -25h-650c-14 0 -25 11 -25 25v650c0 14 11 25 25 25z" />
|
||||
<glyph glyph-name="3b" unicode=""
|
||||
d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM350 600h100v-181c23 -24 47 -47 72 -69l-72 -72c-27 30 -55 59 -84 88l-16 12
|
||||
v222z" />
|
||||
<glyph glyph-name="3c" unicode=""
|
||||
d="M450 800c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -18 -3 -34 -9 -50h-191v50c0 83 -67 150 -150 150s-150 -67 -150 -150v-50h-272c-17 30 -28 63 -28 100c0 110 90 200 200 200c23 114 129 200 250 200zM434 400h3h4c3 0 6 1 9 1c28 0 50 -22 50 -50v-1
|
||||
v-150h150l-200 -200l-200 200h150v150v2c0 20 15 42 34 48z" />
|
||||
<glyph glyph-name="3d" unicode=""
|
||||
d="M450 800c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -18 -3 -34 -9 -50h-141l-200 200l-200 -200h-222c-17 30 -28 63 -28 100c0 110 90 200 200 200c23 114 129 200 250 200zM450 350l250 -250h-200v-50c0 -28 -22 -50 -50 -50s-50 22 -50 50v50h-200z" />
|
||||
<glyph glyph-name="3e" unicode=""
|
||||
d="M450 700c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -83 -67 -150 -150 -150h-450c-110 0 -200 90 -200 200s90 200 200 200c23 114 129 200 250 200z" />
|
||||
<glyph glyph-name="3f" unicode=""
|
||||
d="M250 800c82 0 154 -40 200 -100c-143 0 -270 -85 -325 -209c-36 -10 -70 -25 -100 -47c-16 33 -25 67 -25 106c0 138 112 250 250 250zM450 600c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -83 -67 -150 -150 -150h-450c-110 0 -200 90 -200 200
|
||||
s90 200 200 200c23 114 129 200 250 200z" />
|
||||
<glyph glyph-name="40" unicode=""
|
||||
d="M500 700h100l-300 -600h-100zM100 600h100l-100 -200l100 -200h-100l-100 200zM600 600h100l100 -200l-100 -200h-100l100 200z" />
|
||||
<glyph glyph-name="41" unicode=""
|
||||
d="M350 800h100l50 -119l28 -12l119 50l72 -72l-50 -119l12 -28l119 -50v-100l-119 -50l-12 -28l50 -119l-72 -72l-119 50l-28 -12l-50 -119h-100l-50 119l-28 12l-119 -50l-72 72l50 119l-12 28l-119 50v100l119 50l12 28l-50 119l72 72l119 -50l28 12zM400 550
|
||||
c-83 0 -150 -67 -150 -150s67 -150 150 -150s150 67 150 150s-67 150 -150 150z" />
|
||||
<glyph glyph-name="42" unicode=""
|
||||
d="M0 800h800v-200h-800v200zM200 500h400l-200 -200zM0 100h800v-100h-800v100z" />
|
||||
<glyph glyph-name="43" unicode=""
|
||||
d="M0 800h100v-800h-100v800zM600 800h200v-800h-200v800zM500 600v-400l-200 200z" />
|
||||
<glyph glyph-name="44" unicode=""
|
||||
d="M0 800h200v-800h-200v800zM700 800h100v-800h-100v800zM300 600l200 -200l-200 -200v400z" />
|
||||
<glyph glyph-name="45" unicode=""
|
||||
d="M0 800h800v-100h-800v100zM400 500l200 -200h-400zM0 200h800v-200h-800v200z" />
|
||||
<glyph glyph-name="46" unicode=""
|
||||
d="M150 700c83 0 150 -67 150 -150v-50h100v50c0 83 67 150 150 150s150 -67 150 -150s-67 -150 -150 -150h-50v-100h50c83 0 150 -67 150 -150s-67 -150 -150 -150s-150 67 -150 150v50h-100v-50c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150h50v100h-50
|
||||
c-83 0 -150 67 -150 150s67 150 150 150zM150 600c-28 0 -50 -22 -50 -50s22 -50 50 -50h50v50c0 28 -22 50 -50 50zM550 600c-28 0 -50 -22 -50 -50v-50h50c28 0 50 22 50 50s-22 50 -50 50zM300 400v-100h100v100h-100zM150 200c-28 0 -50 -22 -50 -50s22 -50 50 -50
|
||||
s50 22 50 50v50h-50zM500 200v-50c0 -28 22 -50 50 -50s50 22 50 50s-22 50 -50 50h-50z" />
|
||||
<glyph glyph-name="47" unicode=""
|
||||
d="M0 791c0 5 4 9 9 9h782c6 0 9 -4 9 -10v-790l-200 200h-591c-6 0 -9 3 -9 9v582z" />
|
||||
<glyph glyph-name="48" unicode=""
|
||||
d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM600 600l-100 -300l-300 -100l100 300zM400 450c-28 0 -50 -22 -50 -50
|
||||
s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" />
|
||||
<glyph glyph-name="49" unicode=""
|
||||
d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700v-600c166 0 300 134 300 300s-134 300 -300 300z" />
|
||||
<glyph glyph-name="4a" unicode=""
|
||||
d="M0 800h800v-100h-800v100zM0 600h500v-100h-500v100zM0 300h800v-100h-800v100zM0 100h600v-100h-600v100zM750 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" />
|
||||
<glyph glyph-name="4b" unicode=""
|
||||
d="M25 700h750c14 0 25 -11 25 -25v-75h-800v75c0 14 11 25 25 25zM0 500h800v-375c0 -14 -11 -25 -25 -25h-750c-14 0 -25 11 -25 25v375zM100 300v-100h100v100h-100zM300 300v-100h100v100h-100z" />
|
||||
<glyph glyph-name="4c" unicode=""
|
||||
d="M100 800h100v-100h450l100 100l50 -50l-100 -100v-450h100v-100h-100v-100h-100v100h-500v500h-100v100h100v100zM200 600v-350l350 350h-350zM600 550l-350 -350h350v350z" />
|
||||
<glyph glyph-name="4d" unicode=""
|
||||
d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM400 600c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z
|
||||
M200 452c0 20 15 42 34 48h3h3h8c12 0 28 -7 36 -16l91 -90l25 6c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100l6 25l-90 91c-9 8 -16 24 -16 36zM550 500c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" />
|
||||
<glyph glyph-name="4e" unicode=""
|
||||
d="M300 800h200v-300h200l-300 -300l-300 300h200v300zM0 100h800v-100h-800v100z" />
|
||||
<glyph glyph-name="4f" unicode=""
|
||||
d="M0 800h800v-100h-800v100zM400 600l300 -300h-200v-300h-200v300h-200z" />
|
||||
<glyph glyph-name="50" unicode=""
|
||||
d="M200 700h600v-600h-600l-200 300zM350 622l-72 -72l150 -150l-150 -150l72 -72l150 150l150 -150l72 72l-150 150l150 150l-72 72l-150 -150z" />
|
||||
<glyph glyph-name="51" unicode=""
|
||||
d="M400 700c220 0 400 -180 400 -400h-100c0 166 -134 300 -300 300s-300 -134 -300 -300h-100c0 220 180 400 400 400zM341 491l59 -88l59 88c81 -25 141 -101 141 -191c0 -110 -90 -200 -200 -200s-200 90 -200 200c0 90 60 166 141 191z" />
|
||||
<glyph glyph-name="52" unicode=""
|
||||
d="M0 800h300v-400h400v-400h-700v800zM400 800l300 -300h-300v300zM100 600v-100h100v100h-100zM100 400v-100h100v100h-100zM100 200v-100h400v100h-400z" />
|
||||
<glyph glyph-name="53" unicode="" horiz-adv-x="600"
|
||||
d="M200 700h100v-100h75c30 0 58 -6 81 -22s44 -44 44 -78v-100h-100v94c-4 3 -13 6 -25 6h-250c-14 0 -25 -11 -25 -25v-50c0 -15 20 -40 34 -44l257 -65c66 -16 109 -73 109 -141v-50c0 -68 -57 -125 -125 -125h-75v-100h-100v100h-75c-30 0 -58 6 -81 22s-44 44 -44 78
|
||||
v100h100v-94c4 -3 13 -6 25 -6h250c14 0 25 11 25 25v50c0 15 -20 40 -34 44l-257 65c-66 16 -109 73 -109 141v50c0 68 57 125 125 125h75v100z" />
|
||||
<glyph glyph-name="54" unicode=""
|
||||
d="M0 700h300v-300l-300 -300v600zM500 700h300v-300l-300 -300v600z" />
|
||||
<glyph glyph-name="55" unicode=""
|
||||
d="M300 700v-600h-300v300zM800 700v-600h-300v300z" />
|
||||
<glyph glyph-name="56" unicode=""
|
||||
d="M300 700v-100c-111 0 -200 -89 -200 -200h200v-300h-300v300c0 165 135 300 300 300zM800 700v-100c-111 0 -200 -89 -200 -200h200v-300h-300v300c0 165 135 300 300 300z" />
|
||||
<glyph glyph-name="57" unicode=""
|
||||
d="M0 700h300v-300c0 -165 -135 -300 -300 -300v100c111 0 200 89 200 200h-200v300zM500 700h300v-300c0 -165 -135 -300 -300 -300v100c111 0 200 89 200 200h-200v300z" />
|
||||
<glyph glyph-name="58" unicode="" horiz-adv-x="600"
|
||||
d="M300 800l34 -34c11 -11 266 -270 266 -488c0 -165 -135 -300 -300 -300s-300 135 -300 300c0 218 255 477 266 488zM150 328c-28 0 -50 -22 -50 -50c0 -110 90 -200 200 -200c28 0 50 22 50 50s-22 50 -50 50c-55 0 -100 45 -100 100c0 28 -22 50 -50 50z" />
|
||||
<glyph glyph-name="59" unicode=""
|
||||
d="M400 800l400 -500h-800zM0 200h800v-200h-800v200z" />
|
||||
<glyph glyph-name="5a" unicode="" horiz-adv-x="600"
|
||||
d="M300 800l300 -300h-600zM0 300h600l-300 -300z" />
|
||||
<glyph glyph-name="5b" unicode=""
|
||||
d="M0 500h200v-200h-200v200zM300 500h200v-200h-200v200zM600 500h200v-200h-200v200z" />
|
||||
<glyph glyph-name="5c" unicode=""
|
||||
d="M0 700h800v-100l-400 -200l-400 200v100zM0 500l400 -200l400 200v-400h-800v400z" />
|
||||
<glyph glyph-name="5d" unicode=""
|
||||
d="M400 800l400 -200v-600h-800v600zM400 688l-300 -150v-188l300 -150l300 150v188zM200 500h400v-100l-200 -100l-200 100v100z" />
|
||||
<glyph glyph-name="5e" unicode=""
|
||||
d="M600 700c69 0 134 -19 191 -50l-16 -106c-49 35 -109 56 -175 56c-131 0 -240 -84 -281 -200h331l-16 -100h-334c0 -36 8 -68 19 -100h297l-16 -100h-222c55 -61 133 -100 222 -100c78 0 147 30 200 78v-122c-59 -35 -127 -56 -200 -56c-147 0 -274 82 -344 200h-256
|
||||
l19 100h197c-8 32 -16 66 -16 100h-200l25 100h191c45 172 198 300 384 300z" />
|
||||
<glyph glyph-name="5f" unicode=""
|
||||
d="M0 700h700v-100h-700v100zM0 500h500v-100h-500v100zM0 300h800v-100h-800v100zM0 100h100v-100h-100v100zM200 100h100v-100h-100v100zM400 100h100v-100h-100v100z" />
|
||||
<glyph glyph-name="60" unicode=""
|
||||
d="M0 800h800v-100h-800v100zM200 600h400l-200 -200zM0 200h800v-200h-800v200z" />
|
||||
<glyph glyph-name="61" unicode=""
|
||||
d="M0 800h100v-800h-100v800zM600 800h200v-800h-200v800zM200 600l200 -200l-200 -200v400z" />
|
||||
<glyph glyph-name="62" unicode=""
|
||||
d="M0 800h200v-800h-200v800zM700 800h100v-800h-100v800zM600 600v-400l-200 200z" />
|
||||
<glyph glyph-name="63" unicode=""
|
||||
d="M0 800h800v-200h-800v200zM400 400l200 -200h-400zM0 100h800v-100h-800v100z" />
|
||||
<glyph glyph-name="64" unicode=""
|
||||
d="M0 800h200v-100h-100v-600h600v100h100v-200h-800v800zM400 800h400v-400l-150 150l-250 -250l-100 100l250 250z" />
|
||||
<glyph glyph-name="65" unicode=""
|
||||
d="M403 700c247 0 397 -300 397 -300s-150 -300 -397 -300c-253 0 -403 300 -403 300s150 300 403 300zM400 600c-110 0 -200 -90 -200 -200s90 -200 200 -200s200 90 200 200s-90 200 -200 200zM400 500c10 0 19 -3 28 -6c-16 -8 -28 -24 -28 -44c0 -28 22 -50 50 -50
|
||||
c20 0 36 12 44 28c3 -9 6 -18 6 -28c0 -55 -45 -100 -100 -100s-100 45 -100 100s45 100 100 100z" />
|
||||
<glyph glyph-name="66" unicode="" horiz-adv-x="900"
|
||||
d="M331 700h3h3c3 1 7 1 10 1c12 0 29 -8 37 -17l94 -93l66 65c57 57 155 57 212 0c58 -58 58 -154 0 -212l-65 -66l93 -94c10 -8 18 -25 18 -38c0 -28 -22 -50 -50 -50c-13 0 -32 9 -40 20l-62 65l-381 -381h-269v272l375 381l-63 63c-9 8 -16 24 -16 36c0 20 16 42 35 48z
|
||||
M447 481l-313 -315l128 -132l316 316z" />
|
||||
<glyph glyph-name="67" unicode=""
|
||||
d="M0 800h300v-400h400v-400h-700v800zM400 800l300 -300h-300v300z" />
|
||||
<glyph glyph-name="68" unicode=""
|
||||
d="M200 800c0 0 200 -100 200 -300s-298 -302 -200 -500c0 0 -200 100 -200 300s300 300 200 500zM500 500c0 0 200 -100 200 -300c0 -150 -60 -200 -100 -200h-300c0 200 300 300 200 500z" />
|
||||
<glyph glyph-name="69" unicode=""
|
||||
d="M0 800h100v-800h-100v800zM200 800h300v-100h300l-200 -203l200 -197h-400v100h-200v400z" />
|
||||
<glyph glyph-name="6a" unicode="" horiz-adv-x="400"
|
||||
d="M150 800h150l-100 -200h200l-150 -300h150l-300 -300l-100 300h134l66 200h-200z" />
|
||||
<glyph glyph-name="6b" unicode=""
|
||||
d="M0 800h300v-100h500v-100h-800v200zM0 500h800v-450c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v450z" />
|
||||
<glyph glyph-name="6c" unicode=""
|
||||
d="M150 800c83 0 150 -67 150 -150c0 -66 -41 -121 -100 -141v-118c15 5 33 9 50 9h200c28 0 50 22 50 50v59c-59 20 -100 75 -100 141c0 83 67 150 150 150s150 -67 150 -150c0 -66 -41 -121 -100 -141v-59c0 -82 -68 -150 -150 -150h-200c-14 0 -25 -7 -34 -16
|
||||
c50 -24 84 -74 84 -134c0 -83 -67 -150 -150 -150s-150 67 -150 150c0 66 41 121 100 141v218c-59 20 -100 75 -100 141c0 83 67 150 150 150z" />
|
||||
<glyph glyph-name="6d" unicode=""
|
||||
d="M0 800h400l-150 -150l150 -150l-100 -100l-150 150l-150 -150v400zM500 400l150 -150l150 150v-400h-400l150 150l-150 150z" />
|
||||
<glyph glyph-name="6e" unicode=""
|
||||
d="M100 800l150 -150l150 150v-400h-400l150 150l-150 150zM400 400h400l-150 -150l150 -150l-100 -100l-150 150l-150 -150v400z" />
|
||||
<glyph glyph-name="6f" unicode=""
|
||||
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700c-56 0 -108 -17 -153 -44l22 -19c33 -18 13 -48 -13 -59c-30 -13 -77 10 -65 -41c13 -55 -27 -3 -47 -15c-42 -26 49 -152 31 -156l-59 34c-8 0 -13 -5 -16 -10
|
||||
c1 -30 10 -57 19 -84c28 -11 77 -2 100 -25c47 -28 97 -115 75 -159c34 -13 68 -22 106 -22c101 0 193 48 247 125c3 24 -8 44 -50 44c-69 0 -156 13 -153 97c2 46 101 108 66 143c-30 30 12 39 12 66c0 37 -65 32 -69 50s20 36 41 56c-30 10 -60 19 -94 19zM631 591
|
||||
c-38 -11 -94 -35 -87 -53c6 -15 52 -1 65 -13c11 -10 16 -59 44 -31l22 22v3c-11 26 -26 50 -44 72z" />
|
||||
<glyph glyph-name="70" unicode=""
|
||||
d="M703 800l97 -100l-400 -400l-100 100l-200 -203l-100 100l300 303l100 -100zM0 100h800v-100h-800v100z" />
|
||||
<glyph glyph-name="71" unicode=""
|
||||
d="M0 700h100v-100h-100v100zM200 700h100v-100h-100v100zM400 700h100v-100h-100v100zM600 700h100v-100h-100v100zM0 500h100v-100h-100v100zM200 500h100v-100h-100v100zM400 500h100v-100h-100v100zM600 500h100v-100h-100v100zM0 300h100v-100h-100v100zM200 300h100
|
||||
v-100h-100v100zM400 300h100v-100h-100v100zM600 300h100v-100h-100v100zM0 100h100v-100h-100v100zM200 100h100v-100h-100v100zM400 100h100v-100h-100v100zM600 100h100v-100h-100v100z" />
|
||||
<glyph glyph-name="72" unicode=""
|
||||
d="M0 800h200v-200h-200v200zM300 800h200v-200h-200v200zM600 800h200v-200h-200v200zM0 500h200v-200h-200v200zM300 500h200v-200h-200v200zM600 500h200v-200h-200v200zM0 200h200v-200h-200v200zM300 200h200v-200h-200v200zM600 200h200v-200h-200v200z" />
|
||||
<glyph glyph-name="73" unicode=""
|
||||
d="M0 800h300v-300h-300v300zM500 800h300v-300h-300v300zM0 300h300v-300h-300v300zM500 300h300v-300h-300v300z" />
|
||||
<glyph glyph-name="74" unicode=""
|
||||
d="M19 800h662c11 0 19 -8 19 -19v-331c0 -28 -22 -50 -50 -50h-600c-28 0 -50 22 -50 50v331c0 11 8 19 19 19zM0 309c16 -6 32 -9 50 -9h600c18 0 34 3 50 9v-290c0 -11 -8 -19 -19 -19h-662c-11 0 -19 8 -19 19v290zM550 200c-28 0 -50 -22 -50 -50s22 -50 50 -50
|
||||
s50 22 50 50s-22 50 -50 50z" />
|
||||
<glyph glyph-name="75" unicode=""
|
||||
d="M0 700h300v-100h-50c-28 0 -50 -22 -50 -50v-150h300v150c0 28 -22 50 -50 50h-50v100h300v-100h-50c-28 0 -50 -22 -50 -50v-400c0 -28 22 -50 50 -50h50v-100h-300v100h50c28 0 50 22 50 50v150h-300v-150c0 -28 22 -50 50 -50h50v-100h-300v100h50c28 0 50 22 50 50
|
||||
v400c0 28 -22 50 -50 50h-50v100z" />
|
||||
<glyph glyph-name="76" unicode=""
|
||||
d="M400 700c165 0 300 -135 300 -300v-100h50c28 0 50 -22 50 -50v-200c0 -28 -22 -50 -50 -50h-100c-28 0 -50 22 -50 50v350c0 111 -89 200 -200 200s-200 -89 -200 -200v-350c0 -28 -22 -50 -50 -50h-100c-28 0 -50 22 -50 50v200c0 28 22 50 50 50h50v100
|
||||
c0 165 135 300 300 300z" />
|
||||
<glyph glyph-name="77" unicode=""
|
||||
d="M0 500c0 109 91 200 200 200s200 -91 200 -200c0 109 91 200 200 200s200 -91 200 -200c0 -55 -23 -105 -59 -141l-341 -340l-341 340c-36 36 -59 86 -59 141z" />
|
||||
<glyph glyph-name="78" unicode=""
|
||||
d="M400 700l400 -300l-100 3v-403h-200v200h-200v-200h-200v400h-100z" />
|
||||
<glyph glyph-name="79" unicode=""
|
||||
d="M0 800h800v-800h-800v800zM100 700v-300l100 100l400 -400h100v100l-200 200l100 100l100 -100v300h-600z" />
|
||||
<glyph glyph-name="7a" unicode=""
|
||||
d="M19 800h762c11 0 19 -8 19 -19v-762c0 -11 -8 -19 -19 -19h-762c-11 0 -19 8 -19 19v762c0 11 8 19 19 19zM100 600v-300h100l100 -100h200l100 100h100v300h-600z" />
|
||||
<glyph glyph-name="7b" unicode=""
|
||||
d="M200 600c80 0 142 -56 200 -122c58 66 119 122 200 122c131 0 200 -101 200 -200s-69 -200 -200 -200c-81 0 -142 56 -200 122c-58 -66 -121 -122 -200 -122c-131 0 -200 101 -200 200s69 200 200 200zM200 500c-74 0 -100 -54 -100 -100s26 -100 100 -100
|
||||
c42 0 88 47 134 100c-46 53 -92 100 -134 100zM600 500c-43 0 -88 -47 -134 -100c46 -53 91 -100 134 -100c74 0 100 54 100 100s-26 100 -100 100z" />
|
||||
<glyph glyph-name="7c" unicode="" horiz-adv-x="400"
|
||||
d="M300 800c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100s45 100 100 100zM150 550c83 0 150 -69 150 -150c0 -66 -100 -214 -100 -250c0 -28 22 -50 50 -50s50 22 50 50h100c0 -83 -67 -150 -150 -150s-150 64 -150 150s100 222 100 250s-22 50 -50 50
|
||||
s-50 -22 -50 -50h-100c0 83 67 150 150 150z" />
|
||||
<glyph glyph-name="7d" unicode=""
|
||||
d="M200 800h500v-100h-122c-77 -197 -156 -392 -234 -588l-6 -12h162v-100h-500v100h122c77 197 156 392 234 588l7 12h-163v100z" />
|
||||
<glyph glyph-name="7e" unicode=""
|
||||
d="M0 700h800v-100h-800v100zM0 500h800v-100h-800v100zM0 300h800v-100h-800v100zM100 100h600v-100h-600v100z" />
|
||||
<glyph glyph-name="7f" unicode=""
|
||||
d="M0 700h800v-100h-800v100zM0 500h800v-100h-800v100zM0 300h800v-100h-800v100zM0 100h600v-100h-600v100z" />
|
||||
<glyph glyph-name="80" unicode=""
|
||||
d="M0 700h800v-100h-800v100zM0 500h800v-100h-800v100zM0 300h800v-100h-800v100zM200 100h600v-100h-600v100z" />
|
||||
<glyph glyph-name="81" unicode=""
|
||||
d="M550 800c138 0 250 -112 250 -250s-112 -250 -250 -250c-16 0 -32 0 -47 3l-3 -3v-100h-200v-200h-300v200l303 303c-3 15 -3 31 -3 47c0 138 112 250 250 250zM600 700c-55 0 -100 -45 -100 -100s45 -100 100 -100s100 45 100 100s-45 100 -100 100z" />
|
||||
<glyph glyph-name="82" unicode=""
|
||||
d="M134 600h3h4h4h5h500c28 0 50 -22 50 -50v-350h100v-150c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v150h100v350v2c0 20 15 42 34 48zM200 500v-300h100v-100h200v100h100v300h-400z" />
|
||||
<glyph glyph-name="83" unicode=""
|
||||
d="M0 800h400v-400h-400v400zM500 600h100v-400h-400v100h300v300zM700 400h100v-400h-400v100h300v300z" />
|
||||
<glyph glyph-name="84" unicode="" horiz-adv-x="600"
|
||||
d="M337 694c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-300 -150c-8 -6 -21 -11 -31 -11c-28 0 -50 22 -50 50c0 21 16 44 37 49zM437 544c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-400 -200c-8 -6 -21 -11 -31 -11c-28 0 -50 22 -50 50
|
||||
c0 21 16 44 37 49zM437 344c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-106 -56c24 -4 43 -26 43 -50c0 -28 -23 -51 -51 -51c-2 0 -6 1 -8 1h-200c-26 1 -48 24 -48 50c0 16 12 36 26 44zM151 -50c0 23 20 50 46 50h3h4h5h100c28 0 50 -22 50 -50
|
||||
s-22 -50 -50 -50h-100c-2 0 -6 -1 -8 -1c-28 0 -50 23 -50 51z" />
|
||||
<glyph glyph-name="85" unicode=""
|
||||
d="M199 800h100v-200h-200v100h100v100zM586 797h1c18 1 38 1 56 -3c36 -8 69 -26 97 -54c78 -78 78 -203 0 -281l-150 -150c-8 -13 -28 -24 -43 -24c-28 0 -50 22 -50 50c0 15 11 35 24 43l150 150c40 40 39 105 0 144c-41 41 -110 34 -144 0l-44 -44
|
||||
c-8 -13 -27 -24 -42 -24c-28 0 -50 22 -50 50c0 15 11 35 24 43l43 44c32 33 72 53 128 56zM208 490c4 5 14 16 22 16h3c2 0 6 1 8 1c28 0 50 -22 50 -50c0 -11 -6 -27 -14 -35l-150 -150c-40 -40 -39 -105 0 -144c41 -41 110 -34 144 0l44 44c8 13 27 24 42 24
|
||||
c28 0 50 -22 50 -50c0 -15 -11 -35 -24 -43l-43 -44c-22 -22 -48 -37 -75 -47c-70 -25 -151 -9 -207 47c-78 78 -78 203 0 281zM499 200h200v-100h-100v-100h-100v200z" />
|
||||
<glyph glyph-name="86" unicode=""
|
||||
d="M586 797c18 1 39 1 57 -3c36 -8 69 -26 97 -54c78 -78 78 -203 0 -281l-150 -150c-62 -62 -132 -81 -182 -78s-69 17 -84 25s-26 27 -26 44c0 28 22 51 50 51c8 0 19 -3 26 -7c0 0 15 -11 41 -13s62 3 106 47l150 150c40 40 39 105 0 144c-41 41 -110 34 -144 0
|
||||
c-8 -13 -28 -24 -43 -24c-28 0 -50 22 -50 50c0 15 11 35 24 43c32 33 72 53 128 56zM386 566c50 -2 64 -17 85 -22s37 -28 37 -49c0 -28 -22 -50 -50 -50c-10 0 -23 5 -31 11c0 0 -19 9 -47 10s-63 -4 -103 -44l-150 -150c-40 -40 -39 -105 0 -144c41 -41 110 -34 144 0
|
||||
c8 13 27 24 42 24c28 0 50 -22 50 -50c0 -15 -10 -35 -23 -43c-22 -22 -48 -37 -75 -47c-70 -25 -151 -9 -207 47c-78 78 -78 203 0 281l150 150c60 60 128 78 178 76z" />
|
||||
<glyph glyph-name="87" unicode=""
|
||||
d="M0 700h300v-300h-300v300zM400 700h400v-100h-400v100zM400 500h300v-100h-300v100zM0 300h300v-300h-300v300zM400 300h400v-100h-400v100zM400 100h300v-100h-300v100z" />
|
||||
<glyph glyph-name="88" unicode=""
|
||||
d="M50 700c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM200 700h600v-100h-600v100zM50 500c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM200 500h600v-100h-600v100zM50 300c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50
|
||||
s22 50 50 50zM200 300h600v-100h-600v100zM50 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM200 100h600v-100h-600v100z" />
|
||||
<glyph glyph-name="89" unicode=""
|
||||
d="M800 800l-400 -800l-100 300l-300 100z" />
|
||||
<glyph glyph-name="8a" unicode="" horiz-adv-x="600"
|
||||
d="M300 700c110 0 200 -90 200 -200v-100h100v-400h-600v400h100v100c0 110 90 200 200 200zM300 600c-56 0 -100 -44 -100 -100v-100h200v100c0 56 -44 100 -100 100z" />
|
||||
<glyph glyph-name="8b" unicode="" horiz-adv-x="600"
|
||||
d="M300 800c110 0 200 -90 200 -200v-200h100v-400h-600v400h400v200c0 56 -44 100 -100 100s-100 -44 -100 -100h-100c0 110 90 200 200 200z" />
|
||||
<glyph glyph-name="8c" unicode=""
|
||||
d="M400 700v-100c-111 0 -200 -89 -200 -200h100l-150 -200l-150 200h100c0 165 135 300 300 300zM650 600l150 -200h-100c0 -165 -135 -300 -300 -300v100c111 0 200 89 200 200h-100z" />
|
||||
<glyph glyph-name="8d" unicode=""
|
||||
d="M100 800h600v-300h100l-150 -250l-150 250h100v200h-400v-100h-100v200zM150 550l150 -250h-100v-200h400v100h100v-200h-600v300h-100z" />
|
||||
<glyph glyph-name="8e" unicode=""
|
||||
d="M600 700l200 -150l-200 -150v100h-500v-100h-100v100c0 55 45 100 100 100h500v100zM200 300v-100h500v100h100v-100c0 -55 -45 -100 -100 -100h-500v-100l-200 150z" />
|
||||
<glyph glyph-name="8f" unicode="" horiz-adv-x="900"
|
||||
d="M350 800c193 0 350 -157 350 -350c0 -60 -17 -117 -44 -166c5 -3 12 -8 16 -12l100 -100c16 -16 30 -49 30 -72c0 -56 -46 -102 -102 -102c-23 0 -56 14 -72 30l-100 100c-4 3 -9 9 -12 13c-49 -26 -107 -41 -166 -41c-193 0 -350 157 -350 350s157 350 350 350zM350 200
|
||||
c142 0 250 108 250 250c0 139 -111 250 -250 250s-250 -111 -250 -250s111 -250 250 -250z" />
|
||||
<glyph glyph-name="90" unicode="" horiz-adv-x="600"
|
||||
d="M300 800c166 0 300 -134 300 -300c0 -200 -300 -500 -300 -500s-300 300 -300 500c0 166 134 300 300 300zM300 700c-110 0 -200 -90 -200 -200s90 -200 200 -200s200 90 200 200s-90 200 -200 200z" />
|
||||
<glyph glyph-name="91" unicode="" horiz-adv-x="900"
|
||||
d="M0 800h800v-541c1 -3 1 -8 1 -11s0 -7 -1 -10v-238h-800v800zM495 250c0 26 22 50 50 50h5h150v400h-600v-600h600v100h-150h-5c-28 0 -50 22 -50 50zM350 600c83 0 150 -67 150 -150c0 -100 -150 -250 -150 -250s-150 150 -150 250c0 83 67 150 150 150zM350 500
|
||||
c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" />
|
||||
<glyph glyph-name="92" unicode="" horiz-adv-x="600"
|
||||
d="M0 700h200v-600h-200v600zM400 700h200v-600h-200v600z" />
|
||||
<glyph glyph-name="93" unicode="" horiz-adv-x="600"
|
||||
d="M0 700l600 -300l-600 -300v600z" />
|
||||
<glyph glyph-name="94" unicode="" horiz-adv-x="600"
|
||||
d="M300 700c166 0 300 -134 300 -300s-134 -300 -300 -300s-300 134 -300 300s134 300 300 300z" />
|
||||
<glyph glyph-name="95" unicode=""
|
||||
d="M400 700v-600l-400 300zM400 400l400 300v-600z" />
|
||||
<glyph glyph-name="96" unicode=""
|
||||
d="M0 700l400 -300l-400 -300v600zM400 100v600l400 -300z" />
|
||||
<glyph glyph-name="97" unicode=""
|
||||
d="M0 700h200v-600h-200v600zM200 400l500 300v-600z" />
|
||||
<glyph glyph-name="98" unicode=""
|
||||
d="M0 700l500 -300l-500 -300v600zM500 100v600h200v-600h-200z" />
|
||||
<glyph glyph-name="99" unicode="" horiz-adv-x="600"
|
||||
d="M0 700h600v-600h-600v600z" />
|
||||
<glyph glyph-name="9a" unicode=""
|
||||
d="M200 800h400v-200h200v-400h-200v-200h-400v200h-200v400h200v200z" />
|
||||
<glyph glyph-name="9b" unicode=""
|
||||
d="M0 700h800v-100h-800v100zM0 403h800v-100h-800v100zM0 103h800v-100h-800v100z" />
|
||||
<glyph glyph-name="9c" unicode="" horiz-adv-x="600"
|
||||
d="M278 700c7 2 13 4 22 4c55 0 100 -45 100 -100v-4v-200c0 -55 -45 -100 -100 -100s-100 45 -100 100v200v2c0 44 35 88 78 98zM34 500h4h3c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-50c0 -111 89 -200 200 -200s200 89 200 200v50c0 28 22 50 50 50s50 -22 50 -50v-50
|
||||
c0 -148 -109 -270 -250 -294v-106h50c55 0 100 -45 100 -100h-400c0 55 45 100 100 100h50v106c-141 24 -250 146 -250 294v50v2c0 20 15 42 34 48z" />
|
||||
<glyph glyph-name="9d" unicode=""
|
||||
d="M0 500h800v-200h-800v200z" />
|
||||
<glyph glyph-name="9e" unicode=""
|
||||
d="M34 700h4h3h4h5h700c28 0 50 -22 50 -50v-500c0 -28 -22 -50 -50 -50h-250v-100h100c55 0 100 -45 100 -100h-600c0 55 45 100 100 100h100v100h-250c-28 0 -50 22 -50 50v500v2c0 20 15 42 34 48zM100 600v-400h600v400h-600z" />
|
||||
<glyph glyph-name="9f" unicode=""
|
||||
d="M272 700c-14 -40 -22 -83 -22 -128c0 -221 179 -400 400 -400c45 0 88 8 128 22c-53 -158 -202 -272 -378 -272c-221 0 -400 179 -400 400c0 176 114 325 272 378z" />
|
||||
<glyph glyph-name="a0" unicode=""
|
||||
d="M350 700l150 -150h-100v-150h150v100l150 -150l-150 -150v100h-150v-150h100l-150 -150l-150 150h100v150h-150v-100l-150 150l150 150v-100h150v150h-100z" />
|
||||
<glyph glyph-name="a1" unicode=""
|
||||
d="M800 800v-550c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150c17 0 35 -4 50 -9v206c-201 -6 -327 -27 -400 -50v-397c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150c17 0 35 -4 50 -9v409s100 100 600 100z" />
|
||||
<glyph glyph-name="a2" unicode="" horiz-adv-x="700"
|
||||
d="M499 700c51 0 102 -20 141 -59c78 -78 78 -203 0 -281l-250 -244c-48 -48 -127 -48 -175 0s-48 127 0 175l96 97l69 -69l-90 -94l-7 -3c-10 -10 -10 -28 0 -38s28 -10 38 0l250 247c37 40 39 102 0 141s-104 40 -144 0l-278 -275c-66 -69 -68 -179 0 -247
|
||||
c69 -69 181 -69 250 0l9 12l116 113l69 -69l-125 -125c-107 -107 -281 -107 -388 0s-107 281 0 388l278 272c39 39 90 59 141 59z" />
|
||||
<glyph glyph-name="a3" unicode=""
|
||||
d="M600 800l200 -200l-100 -100l-200 200zM400 600l200 -200l-400 -400h-200v200z" />
|
||||
<glyph glyph-name="a4" unicode=""
|
||||
d="M550 800c83 0 150 -90 150 -200s-67 -200 -150 -200c-22 0 -40 8 -59 19c6 26 9 52 9 81c0 84 -27 158 -72 212c27 52 71 88 122 88zM250 700c83 0 150 -90 150 -200s-67 -200 -150 -200s-150 90 -150 200s67 200 150 200zM725 384c44 -22 75 -66 75 -118v-166h-200v66
|
||||
c0 50 -17 96 -44 134c66 2 126 33 169 84zM75 284c45 -53 106 -84 175 -84s130 31 175 84c44 -22 75 -66 75 -118v-166h-500v166c0 52 31 96 75 118z" />
|
||||
<glyph glyph-name="a5" unicode=""
|
||||
d="M400 800c110 0 200 -112 200 -250s-90 -250 -200 -250s-200 112 -200 250s90 250 200 250zM191 300c54 -61 128 -100 209 -100s155 39 209 100c106 -5 191 -92 191 -200v-100h-800v100c0 108 85 195 191 200z" />
|
||||
<glyph glyph-name="a6" unicode="" horiz-adv-x="600"
|
||||
d="M19 800h462c11 0 19 -8 19 -19v-762c0 -11 -8 -19 -19 -19h-462c-11 0 -19 8 -19 19v762c0 11 8 19 19 19zM100 700v-500h300v500h-300zM250 150c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" />
|
||||
<glyph glyph-name="a7" unicode=""
|
||||
d="M350 800c17 0 34 -1 50 -3v-397l-297 297c63 64 150 103 247 103zM500 694c169 -25 300 -168 300 -344c0 -193 -157 -350 -350 -350c-85 0 -161 31 -222 81l272 272v341zM91 562l237 -234l-212 -212c-70 55 -116 138 -116 234c0 84 35 158 91 212z" />
|
||||
<glyph glyph-name="a8" unicode=""
|
||||
d="M92 650c0 23 20 50 46 50h3h4h5h400c28 0 50 -22 50 -50s-22 -50 -50 -50h-50v-200h100c55 0 100 -45 100 -100h-300v-300l-56 -100l-44 100v300h-300c0 55 45 100 100 100h100v200h-50c-2 0 -6 -1 -8 -1c-28 0 -50 23 -50 51z" />
|
||||
<glyph glyph-name="a9" unicode=""
|
||||
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM300 600v-400l300 200z" />
|
||||
<glyph glyph-name="aa" unicode=""
|
||||
d="M300 800h200v-300h300v-200h-300v-300h-200v300h-300v200h300v300z" />
|
||||
<glyph glyph-name="ab" unicode=""
|
||||
d="M300 800h100v-400h-100v400zM172 656l62 -78l-40 -31c-58 -46 -94 -117 -94 -197c0 -139 111 -250 250 -250s250 111 250 250c0 80 -39 151 -97 197l-37 31l62 78l38 -31c82 -64 134 -164 134 -275c0 -193 -157 -350 -350 -350s-350 157 -350 350c0 111 53 211 134 275z
|
||||
" />
|
||||
<glyph glyph-name="ac" unicode=""
|
||||
d="M200 800h400v-200h-400v200zM9 500h782c6 0 9 -3 9 -9v-282c0 -6 -3 -9 -9 -9h-91v200h-600v-200h-91c-6 0 -9 3 -9 9v282c0 6 3 9 9 9zM200 300h400v-300h-400v300z" />
|
||||
<glyph glyph-name="ad" unicode=""
|
||||
d="M0 700h100v-700h-100v700zM700 700h100v-700h-100v700zM200 600h200v-100h-200v100zM300 400h200v-100h-200v100zM400 200h200v-100h-200v100z" />
|
||||
<glyph glyph-name="ae" unicode=""
|
||||
d="M325 700c42 -141 87 -280 131 -419c29 74 59 148 88 222c30 -57 58 -114 87 -172h169v-100h-231l-13 28c-37 -92 -74 -184 -112 -275c-38 129 -79 257 -119 385c-42 -133 -83 -267 -125 -400c-28 88 -56 175 -84 262h-116v100h188l9 -34l3 -6c42 137 83 273 125 409z" />
|
||||
<glyph glyph-name="af" unicode=""
|
||||
d="M200 600c0 57 43 100 100 100s100 -43 100 -100c0 -28 -18 -48 -28 -72c-3 -6 -3 -16 -3 -28h231v-231c12 0 22 0 28 3c24 10 44 28 72 28c57 0 100 -43 100 -100s-43 -100 -100 -100c-28 0 -48 18 -72 28c-6 3 -16 3 -28 3v-231h-231c0 12 0 22 3 28c10 24 28 44 28 72
|
||||
c0 57 -43 100 -100 100s-100 -43 -100 -100c0 -28 18 -48 28 -72c3 -6 3 -16 3 -28h-231v600h231c0 12 0 22 -3 28c-10 24 -28 44 -28 72z" />
|
||||
<glyph glyph-name="b0" unicode="" horiz-adv-x="500"
|
||||
d="M247 700c84 0 148 -20 191 -59s59 -93 59 -141c0 -117 -69 -181 -119 -225s-81 -67 -81 -150v-25h-100v25c0 117 65 181 115 225s85 67 85 150c0 25 -8 48 -28 66s-56 34 -122 34s-97 -18 -116 -37s-27 -43 -31 -69l-100 12c5 38 19 88 59 128s103 66 188 66zM197 0h100
|
||||
v-100h-100v100z" />
|
||||
<glyph glyph-name="b1" unicode=""
|
||||
d="M450 800c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -69 -48 -127 -112 -144c-22 55 -75 94 -138 94c-20 0 -39 -5 -56 -12c-17 64 -75 112 -144 112s-127 -48 -144 -112c-17 7 -36 12 -56 12c-37 0 -71 -12 -97 -34c-33 36 -53 82 -53 134
|
||||
c0 110 90 200 200 200c23 114 129 200 250 200zM334 300h4h3c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-200c0 -28 -22 -50 -50 -50s-50 22 -50 50v200v2c0 20 15 42 34 48zM134 200h4h3c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-100c0 -28 -22 -50 -50 -50s-50 22 -50 50v100v2
|
||||
c0 20 15 42 34 48zM534 200h3h4c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-100c0 -28 -22 -50 -50 -50s-50 22 -50 50v100v2c0 20 15 42 34 48z" />
|
||||
<glyph glyph-name="b2" unicode=""
|
||||
d="M600 800l200 -150l-200 -150v100h-50l-153 -191l175 -206l6 -3h22v100l200 -150l-200 -150v100h-25c-35 0 -56 12 -78 38l-166 190l-153 -190c-22 -27 -43 -38 -78 -38h-100v100h100l166 206l-163 191l-3 3h-100v100h100c34 0 56 -12 78 -38l153 -178l141 178
|
||||
c22 27 43 38 78 38h50v100z" />
|
||||
<glyph glyph-name="b3" unicode=""
|
||||
d="M400 800c110 0 209 -47 281 -119l119 119v-300h-300l109 109c-54 55 -126 91 -209 91c-166 0 -300 -134 -300 -300s134 -300 300 -300c83 0 158 34 212 88l72 -72c-72 -72 -174 -116 -284 -116c-220 0 -400 180 -400 400s180 400 400 400z" />
|
||||
<glyph glyph-name="b4" unicode=""
|
||||
d="M400 800h400v-400l-166 166l-400 -400l166 -166h-400v400l166 -166l400 400z" />
|
||||
<glyph glyph-name="b5" unicode="" horiz-adv-x="600"
|
||||
d="M250 800l250 -300h-200v-200h200l-250 -300l-250 300h200v200h-200z" />
|
||||
<glyph glyph-name="b6" unicode=""
|
||||
d="M300 600v-200h200v200l300 -250l-300 -250v200h-200v-200l-300 250z" />
|
||||
<glyph glyph-name="b7" unicode=""
|
||||
d="M0 800c441 0 800 -359 800 -800h-200c0 333 -267 600 -600 600v200zM0 500c275 0 500 -225 500 -500h-200c0 167 -133 300 -300 300v200zM0 200c110 0 200 -90 200 -200h-200v200z" />
|
||||
<glyph glyph-name="b8" unicode=""
|
||||
d="M100 800c386 0 700 -314 700 -700h-100c0 332 -268 600 -600 600v100zM100 600c276 0 500 -224 500 -500h-100c0 222 -178 400 -400 400v100zM100 400c165 0 300 -135 300 -300h-100c0 111 -89 200 -200 200v100zM100 200c55 0 100 -45 100 -100s-45 -100 -100 -100
|
||||
s-100 45 -100 100s45 100 100 100z" />
|
||||
<glyph glyph-name="b9" unicode=""
|
||||
d="M300 800h400c55 0 100 -45 100 -100v-200h-400v150c0 28 -22 50 -50 50s-50 -22 -50 -50v-250h400v-300c0 -55 -45 -100 -100 -100h-500c-55 0 -100 45 -100 100v200h100v-150c0 -28 22 -50 50 -50s50 22 50 50v550c0 55 45 100 100 100z" />
|
||||
<glyph glyph-name="ba" unicode=""
|
||||
d="M75 700h225v-100h-200v-500h400v100h100v-125c0 -41 -34 -75 -75 -75h-450c-41 0 -75 34 -75 75v550c0 41 34 75 75 75zM600 700l200 -200l-200 -200v100h-200c-94 0 -173 -65 -194 -153c23 199 189 353 394 353v100z" />
|
||||
<glyph glyph-name="bb" unicode=""
|
||||
d="M500 700l300 -284l-300 -316v200h-100c-200 0 -348 -102 -400 -300c0 295 100 500 500 500v200z" />
|
||||
<glyph glyph-name="bc" unicode=""
|
||||
d="M381 791l19 9l19 -9c127 -53 253 -108 381 -160v-31c0 -166 -67 -313 -147 -419c-40 -53 -83 -97 -125 -128s-82 -53 -128 -53s-86 22 -128 53s-85 75 -125 128c-80 107 -147 253 -147 419v31c128 52 254 107 381 160zM400 100v591l-294 -122c8 -126 58 -243 122 -328
|
||||
c35 -46 73 -86 106 -110s62 -31 66 -31z" />
|
||||
<glyph glyph-name="bd" unicode=""
|
||||
d="M600 800h100v-800h-100v800zM400 700h100v-700h-100v700zM200 500h100v-500h-100v500zM0 300h100v-300h-100v300z" />
|
||||
<glyph glyph-name="be" unicode=""
|
||||
d="M300 800h100v-200h200l100 -100l-100 -100h-200v-400h-100v500h-200l-100 100l100 100h200v100z" />
|
||||
<glyph glyph-name="bf" unicode=""
|
||||
d="M200 800h100v-600h200l-250 -200l-250 200h200v600zM400 800h200v-100h-200v100zM400 600h300v-100h-300v100zM400 400h400v-100h-400v100z" />
|
||||
<glyph glyph-name="c0" unicode=""
|
||||
d="M200 800h100v-600h200l-250 -200l-250 200h200v600zM400 800h400v-100h-400v100zM400 600h300v-100h-300v100zM400 400h200v-100h-200v100z" />
|
||||
<glyph glyph-name="c1" unicode=""
|
||||
d="M75 700h650c41 0 75 -34 75 -75v-550c0 -41 -34 -75 -75 -75h-650c-41 0 -75 34 -75 75v550c0 41 34 75 75 75zM100 600v-100h100v100h-100zM300 600v-100h400v100h-400zM100 400v-100h100v100h-100zM300 400v-100h400v100h-400zM100 200v-100h100v100h-100zM300 200
|
||||
v-100h400v100h-400z" />
|
||||
<glyph glyph-name="c2" unicode=""
|
||||
d="M400 800l100 -300h300l-250 -200l100 -300l-250 200l-250 -200l100 300l-250 200h300z" />
|
||||
<glyph glyph-name="c3" unicode=""
|
||||
d="M400 800c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM150 700c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM650 700c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM400 600c110 0 200 -90 200 -200
|
||||
s-90 -200 -200 -200s-200 90 -200 200s90 200 200 200zM50 450c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM750 450c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM150 200c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50
|
||||
s22 50 50 50zM650 200c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM400 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" />
|
||||
<glyph glyph-name="c4" unicode=""
|
||||
d="M34 800h632c18 0 34 -16 34 -34v-732c0 -18 -16 -34 -34 -34h-632c-18 0 -34 16 -34 34v732c0 18 16 34 34 34zM100 700v-500h500v500h-500zM350 150c-38 0 -63 -42 -44 -75s69 -33 88 0s-6 75 -44 75z" />
|
||||
<glyph glyph-name="c5" unicode=""
|
||||
d="M0 800h300l500 -500l-300 -300l-500 500v300zM200 700c-55 0 -100 -45 -100 -100s45 -100 100 -100s100 45 100 100s-45 100 -100 100z" />
|
||||
<glyph glyph-name="c6" unicode=""
|
||||
d="M0 600h200l300 -300l-200 -200l-300 300v200zM340 600h160l300 -300l-200 -200l-78 78l119 122zM150 500c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" />
|
||||
<glyph glyph-name="c7" unicode=""
|
||||
d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM400 600c110 0 200 -90 200 -200s-90 -200 -200 -200s-200 90 -200 200
|
||||
s90 200 200 200zM400 500c-56 0 -100 -44 -100 -100s44 -100 100 -100s100 44 100 100s-44 100 -100 100z" />
|
||||
<glyph glyph-name="c8" unicode=""
|
||||
d="M0 700h559l-100 -100h-359v-500h500v159l100 100v-359h-700v700zM700 700l100 -100l-400 -400l-200 200l100 100l100 -100z" />
|
||||
<glyph glyph-name="c9" unicode=""
|
||||
d="M9 800h782c6 0 9 -3 9 -9v-782c0 -6 -3 -9 -9 -9h-782c-6 0 -9 3 -9 9v782c0 6 3 9 9 9zM150 722l-72 -72l100 -100l-100 -100l72 -72l172 172zM400 500v-100h300v100h-300z" />
|
||||
<glyph glyph-name="ca" unicode=""
|
||||
d="M0 800h800v-200h-50c0 55 -45 100 -100 100h-150v-550c0 -28 22 -50 50 -50h50v-100h-400v100h50c28 0 50 22 50 50v550h-150c-55 0 -100 -45 -100 -100h-50v200z" />
|
||||
<glyph glyph-name="cb" unicode=""
|
||||
d="M0 700h100v-400h-100v400zM200 700h350c21 0 39 -13 47 -31c0 0 103 -291 103 -319s-22 -50 -50 -50h-150c-28 0 -50 -25 -50 -50s39 -158 47 -184s-5 -55 -31 -63s-52 5 -66 31s-109 219 -128 238s-44 28 -72 28v400z" />
|
||||
<glyph glyph-name="cc" unicode=""
|
||||
d="M400 666c10 19 28 32 47 34l19 -3c26 -8 39 -37 31 -63s-47 -159 -47 -184s22 -50 50 -50h150c28 0 50 -22 50 -50s-103 -319 -103 -319c-8 -18 -26 -31 -47 -31h-350v400c28 0 53 9 72 28s114 212 128 238zM0 400h100v-400h-100v400z" />
|
||||
<glyph glyph-name="cd" unicode=""
|
||||
d="M200 700h300v-100h-100v-6c25 -4 50 -8 72 -16l-34 -94c-28 11 -58 16 -88 16c-139 0 -250 -111 -250 -250s111 -250 250 -250s250 111 250 250c0 31 -5 60 -16 88l91 37c14 -38 25 -81 25 -125c0 -193 -157 -350 -350 -350s-350 157 -350 350c0 176 130 323 300 347v3
|
||||
h-100v100zM700 584c0 0 -296 -348 -316 -368s-48 -20 -68 0s-20 48 0 68s384 300 384 300z" />
|
||||
<glyph glyph-name="ce" unicode=""
|
||||
d="M600 700l200 -150l-200 -150v100h-600v100h600v100zM200 300v-100h600v-100h-600v-100l-200 150z" />
|
||||
<glyph glyph-name="cf" unicode=""
|
||||
d="M300 800h100c55 0 100 -45 100 -100h100c55 0 100 -45 100 -100h-700c0 55 45 100 100 100h100c0 55 45 100 100 100zM100 500h100v-350c0 -28 22 -50 50 -50s50 22 50 50v350h100v-350c0 -28 22 -50 50 -50s50 22 50 50v350h100v-481c0 -11 -8 -19 -19 -19h-462
|
||||
c-11 0 -19 8 -19 19v481z" />
|
||||
<glyph glyph-name="d0" unicode=""
|
||||
d="M100 800h200v-400c0 -55 45 -100 100 -100s100 45 100 100v400h100v-400c0 -110 -90 -200 -200 -200h-50c-138 0 -250 90 -250 200v400zM0 100h700v-100h-700v100z" />
|
||||
<glyph glyph-name="d1" unicode=""
|
||||
d="M9 700h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v482c0 6 3 9 9 9zM609 700h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v482c0 6 3 9 9 9zM309 500h182c6 0 9 -3 9 -9v-282c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v282
|
||||
c0 6 3 9 9 9zM0 100h800v-100h-800v100z" />
|
||||
<glyph glyph-name="d2" unicode=""
|
||||
d="M10 700h181c6 0 9 -3 9 -9v-191h-200v191c0 6 4 9 10 9zM610 700h181c6 0 9 -3 9 -9v-191h-200v191c0 6 5 9 10 9zM310 600h181c6 0 9 -3 9 -9v-91h-200v91c0 6 4 9 10 9zM0 400h800v-100h-800v100zM0 200h200v-191c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v191zM300 200
|
||||
h200v-91c0 -6 -3 -9 -9 -9h-181c-6 0 -10 3 -10 9v91zM600 200h200v-191c0 -6 -3 -9 -9 -9h-181c-6 0 -10 3 -10 9v191z" />
|
||||
<glyph glyph-name="d3" unicode=""
|
||||
d="M0 700h800v-100h-800v100zM9 500h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v482c0 6 3 9 9 9zM309 500h182c6 0 9 -3 9 -9v-282c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v282c0 6 3 9 9 9zM609 500h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182
|
||||
c-6 0 -9 3 -9 9v482c0 6 3 9 9 9z" />
|
||||
<glyph glyph-name="d4" unicode=""
|
||||
d="M50 600h500c28 0 50 -22 50 -50v-150l100 100h100v-300h-100l-100 100v-150c0 -28 -22 -50 -50 -50h-500c-28 0 -50 22 -50 50v400c0 28 22 50 50 50z" />
|
||||
<glyph glyph-name="d5" unicode=""
|
||||
d="M334 800h66v-800h-66l-134 200h-200v400h200zM500 600v100c26 0 52 -4 75 -10c130 -33 225 -150 225 -290s-95 -258 -225 -291h-3c-23 -6 -47 -9 -72 -9v100c17 0 34 2 50 6c86 22 150 100 150 194s-64 172 -150 194c-16 4 -33 6 -50 6zM500 500l25 -3
|
||||
c44 -11 75 -51 75 -97s-32 -86 -75 -97l-25 -3v200z" />
|
||||
<glyph glyph-name="d6" unicode="" horiz-adv-x="600"
|
||||
d="M334 800h66v-800h-66l-134 200h-200v400h200zM500 500l25 -3c44 -11 75 -51 75 -97s-32 -86 -75 -97l-25 -3v200z" />
|
||||
<glyph glyph-name="d7" unicode="" horiz-adv-x="400"
|
||||
d="M334 800h66v-800h-66l-134 200h-200v400h200z" />
|
||||
<glyph glyph-name="d8" unicode=""
|
||||
d="M309 800h82c6 0 10 -4 12 -9l294 -682l3 -19v-81c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v81l3 19l294 682c2 5 6 9 12 9zM300 500v-200h100v200h-100zM300 200v-100h100v100h-100z" />
|
||||
<glyph glyph-name="d9" unicode=""
|
||||
d="M375 800c138 0 269 -39 378 -109l-53 -82c-93 60 -205 91 -325 91c-119 0 -229 -32 -322 -91l-53 82c109 70 237 109 375 109zM375 500c78 0 154 -23 216 -62l-53 -85c-46 30 -104 47 -163 47c-60 0 -112 -17 -159 -47l-54 85c62 40 134 62 213 62zM375 200
|
||||
c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100s45 100 100 100z" />
|
||||
<glyph glyph-name="da" unicode="" horiz-adv-x="900"
|
||||
d="M551 800c16 0 32 0 47 -3l-97 -97v-200h200l97 97c3 -15 3 -31 3 -47c0 -138 -112 -250 -250 -250c-32 0 -62 8 -90 19l-288 -291c-20 -20 -46 -28 -72 -28s-52 8 -72 28c-39 39 -39 105 0 144l291 287c-11 28 -19 59 -19 91c0 138 112 250 250 250zM101 150
|
||||
c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" />
|
||||
<glyph glyph-name="db" unicode=""
|
||||
d="M141 700c84 -84 169 -167 253 -250c82 83 167 165 247 250l143 -141l-253 -253c84 -82 167 -166 253 -247l-143 -143c-81 86 -165 169 -247 253l-253 -253l-141 143c85 80 167 164 250 247c-83 84 -166 169 -250 253z" />
|
||||
<glyph glyph-name="dc" unicode=""
|
||||
d="M0 800h100l231 -300h38l231 300h100l-225 -300h225v-100h-300v-100h300v-100h-300v-200h-100v200h-300v100h300v100h-300v100h225z" />
|
||||
<glyph glyph-name="dd" unicode="" horiz-adv-x="900"
|
||||
d="M350 800c193 0 350 -157 350 -350c0 -61 -17 -119 -44 -169c4 -2 10 -6 13 -9l103 -100c16 -16 30 -49 30 -72c0 -56 -46 -102 -102 -102c-23 0 -56 14 -72 30l-100 103c-3 3 -7 9 -9 13c-50 -28 -108 -44 -169 -44c-193 0 -350 157 -350 350s157 350 350 350zM350 700
|
||||
c-139 0 -250 -111 -250 -250s111 -250 250 -250c62 0 119 23 163 60c7 11 19 25 31 31l3 3c34 43 53 97 53 156c0 139 -111 250 -250 250zM300 600h100v-100h100v-100h-100v-100h-100v100h-100v100h100v100z" />
|
||||
<glyph glyph-name="de" unicode="" horiz-adv-x="900"
|
||||
d="M350 800c193 0 350 -157 350 -350c0 -61 -17 -119 -44 -169c4 -2 10 -6 13 -9l103 -100c16 -16 30 -49 30 -72c0 -56 -46 -102 -102 -102c-23 0 -56 14 -72 30l-100 103c-3 3 -7 9 -9 13c-50 -28 -108 -44 -169 -44c-193 0 -350 157 -350 350s157 350 350 350zM350 700
|
||||
c-139 0 -250 -111 -250 -250s111 -250 250 -250c62 0 119 23 163 60c7 11 19 25 31 31l3 3c34 43 53 97 53 156c0 139 -111 250 -250 250zM200 500h300v-100h-300v100z" />
|
||||
</font>
|
||||
</defs></svg>
|
||||
|
After Width: | Height: | Size: 54 KiB |
BIN
customer/template/bodyfit/fonts/open-iconic/open-iconic.ttf
Normal file
BIN
customer/template/bodyfit/fonts/open-iconic/open-iconic.woff
Normal file
BIN
customer/template/bodyfit/images/about.jpg
Normal file
|
After Width: | Height: | Size: 88 KiB |
BIN
customer/template/bodyfit/images/bg_1.jpg
Normal file
|
After Width: | Height: | Size: 455 KiB |
BIN
customer/template/bodyfit/images/bg_2.jpg
Normal file
|
After Width: | Height: | Size: 203 KiB |
BIN
customer/template/bodyfit/images/bg_3.jpg
Normal file
|
After Width: | Height: | Size: 316 KiB |
BIN
customer/template/bodyfit/images/bg_4.jpg
Normal file
|
After Width: | Height: | Size: 245 KiB |
BIN
customer/template/bodyfit/images/bg_5.jpg
Normal file
|
After Width: | Height: | Size: 221 KiB |
BIN
customer/template/bodyfit/images/gallery-1.jpg
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
customer/template/bodyfit/images/gallery-2.jpg
Normal file
|
After Width: | Height: | Size: 120 KiB |
BIN
customer/template/bodyfit/images/gallery-3.jpg
Normal file
|
After Width: | Height: | Size: 194 KiB |
BIN
customer/template/bodyfit/images/gallery-4.jpg
Normal file
|
After Width: | Height: | Size: 110 KiB |
BIN
customer/template/bodyfit/images/image_1.jpg
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
customer/template/bodyfit/images/image_2.jpg
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
customer/template/bodyfit/images/image_3.jpg
Normal file
|
After Width: | Height: | Size: 88 KiB |
BIN
customer/template/bodyfit/images/image_4.jpg
Normal file
|
After Width: | Height: | Size: 149 KiB |
BIN
customer/template/bodyfit/images/image_5.jpg
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
customer/template/bodyfit/images/image_6.jpg
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
customer/template/bodyfit/images/loc.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
customer/template/bodyfit/images/person_1.jpg
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
customer/template/bodyfit/images/person_2.jpg
Normal file
|
After Width: | Height: | Size: 47 KiB |