ngx-mimic 0.0.7 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/circle-button/circle-button.component.mjs +22 -0
- package/esm2020/lib/description-box/description-box.component.mjs +14 -0
- package/esm2020/lib/feature-card/feature-card.component.mjs +3 -3
- package/esm2020/lib/mobile-bar/mobile-bar.component.mjs +14 -0
- package/esm2020/lib/ngx-mimic.module.mjs +33 -8
- package/esm2020/lib/state-menu/state-menu.component.mjs +25 -0
- package/esm2020/lib/tag/tag.component.mjs +21 -0
- package/esm2020/public-api.mjs +6 -2
- package/fesm2015/ngx-mimic.mjs +109 -15
- package/fesm2015/ngx-mimic.mjs.map +1 -1
- package/fesm2020/ngx-mimic.mjs +109 -15
- package/fesm2020/ngx-mimic.mjs.map +1 -1
- package/lib/circle-button/circle-button.component.d.ts +10 -0
- package/lib/description-box/description-box.component.d.ts +8 -0
- package/lib/feature-card/feature-card.component.d.ts +1 -1
- package/lib/mobile-bar/mobile-bar.component.d.ts +8 -0
- package/lib/ngx-mimic.module.d.ts +7 -2
- package/lib/state-menu/state-menu.component.d.ts +11 -0
- package/lib/tag/tag.component.d.ts +10 -0
- package/package.json +1 -1
- package/public-api.d.ts +5 -1
- package/src/assets/icon/Read Me.txt +7 -0
- package/src/assets/icon/demo-files/demo.css +152 -0
- package/src/assets/icon/demo-files/demo.js +30 -0
- package/src/assets/icon/demo.html +262 -0
- package/src/assets/icon/fonts/icomoon.eot +0 -0
- package/src/assets/icon/fonts/icomoon.svg +26 -0
- package/src/assets/icon/fonts/icomoon.ttf +0 -0
- package/src/assets/icon/fonts/icomoon.woff +0 -0
- package/src/assets/icon/selection.json +1 -0
- package/src/assets/icon/style.css +76 -0
- package/src/assets/styles/_icon.scss +78 -0
- package/src/assets/styles/_tokens.scss +18 -0
- package/src/assets/styles/_typography.scss +64 -0
- package/src/assets/styles/_utilities.scss +9 -0
- package/src/assets/styles.scss +4 -0
- package/esm2020/lib/button/button.component.mjs +0 -14
- package/lib/button/button.component.d.ts +0 -8
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ngx-mimic.mjs","sources":["../../../projects/ngx-mimic/src/lib/ngx-mimic.service.ts","../../../projects/ngx-mimic/src/lib/ngx-mimic.component.ts","../../../projects/ngx-mimic/src/lib/feature-card/feature-card.component.ts","../../../projects/ngx-mimic/src/lib/feature-card/feature-card.component.html","../../../projects/ngx-mimic/src/lib/button/button.component.ts","../../../projects/ngx-mimic/src/lib/button/button.component.html","../../../projects/ngx-mimic/src/lib/ngx-mimic.module.ts","../../../projects/ngx-mimic/src/public-api.ts","../../../projects/ngx-mimic/src/ngx-mimic.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\n\nexport class NgxMimicService {\n visualIdentity: VisualIdentity | undefined;\n\n constructor() { }\n\n getVisualIdentity(): VisualIdentity | undefined {\n return this.visualIdentity;\n }\n\n setVisualIdentity(visualIdentity: VisualIdentity): void {\n this.visualIdentity = visualIdentity;\n }\n}\n\nexport class VisualIdentity {\n id: number | undefined;\n theme: number | undefined;\n baseColor: string | undefined;\n primaryColor: string | undefined;\n callToActionColor: string | undefined;\n textColor: string | undefined;\n logoFile: string | undefined;\n logo: any | undefined;\n}","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-ngx-mimic',\n template: `\n <p>\n ngx-mimic works!\n </p>\n `,\n styles: [\n ]\n})\nexport class NgxMimicComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {}\n\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'mimic-feature-card',\n templateUrl: './feature-card.component.html',\n styleUrls: ['./feature-card.component.scss']\n})\nexport class FeatureCardComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","<div class=\"feature-card-body flex flex--between\">\n <ng-content></ng-content>\n</div>\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-button',\n templateUrl: './button.component.html',\n styleUrls: ['./button.component.scss']\n})\nexport class ButtonComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","<button type=\"button\">CLICK</button>\n","import { CUSTOM_ELEMENTS_SCHEMA, ModuleWithProviders, NgModule } from '@angular/core';\nimport { FeatureCardComponent } from './feature-card/feature-card.component';\nimport { NgxMimicComponent } from './ngx-mimic.component';\nimport { ButtonComponent } from './button/button.component';\n\n@NgModule({\n declarations: [\n NgxMimicComponent,\n FeatureCardComponent,\n ButtonComponent\n ],\n imports: [\n ],\n exports: [\n NgxMimicComponent,\n FeatureCardComponent,\n ButtonComponent\n ],\n schemas: [ CUSTOM_ELEMENTS_SCHEMA ]\n})\nexport class NgxMimicModule {\n static forRoot(): ModuleWithProviders<NgxMimicModule> {\n return {\n ngModule: NgxMimicModule\n }\n }\n}\n","/*\n * Public API Surface of ngx-mimic\n */\n\nexport * from './lib/ngx-mimic.service';\nexport * from './lib/ngx-mimic.component';\nexport * from './lib/ngx-mimic.module';\n\nexport * from './lib/feature-card/feature-card.component'\nexport * from './lib/button/button.component'\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"ngx-mimic.mjs","sources":["../../../projects/ngx-mimic/src/lib/ngx-mimic.service.ts","../../../projects/ngx-mimic/src/lib/ngx-mimic.component.ts","../../../projects/ngx-mimic/src/lib/feature-card/feature-card.component.ts","../../../projects/ngx-mimic/src/lib/feature-card/feature-card.component.html","../../../projects/ngx-mimic/src/lib/mobile-bar/mobile-bar.component.ts","../../../projects/ngx-mimic/src/lib/mobile-bar/mobile-bar.component.html","../../../projects/ngx-mimic/src/lib/state-menu/state-menu.component.ts","../../../projects/ngx-mimic/src/lib/state-menu/state-menu.component.html","../../../projects/ngx-mimic/src/lib/description-box/description-box.component.ts","../../../projects/ngx-mimic/src/lib/description-box/description-box.component.html","../../../projects/ngx-mimic/src/lib/circle-button/circle-button.component.ts","../../../projects/ngx-mimic/src/lib/circle-button/circle-button.component.html","../../../projects/ngx-mimic/src/lib/tag/tag.component.ts","../../../projects/ngx-mimic/src/lib/tag/tag.component.html","../../../projects/ngx-mimic/src/lib/ngx-mimic.module.ts","../../../projects/ngx-mimic/src/public-api.ts","../../../projects/ngx-mimic/src/ngx-mimic.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\n\nexport class NgxMimicService {\n visualIdentity: VisualIdentity | undefined;\n\n constructor() { }\n\n getVisualIdentity(): VisualIdentity | undefined {\n return this.visualIdentity;\n }\n\n setVisualIdentity(visualIdentity: VisualIdentity): void {\n this.visualIdentity = visualIdentity;\n }\n}\n\nexport class VisualIdentity {\n id: number | undefined;\n theme: number | undefined;\n baseColor: string | undefined;\n primaryColor: string | undefined;\n callToActionColor: string | undefined;\n textColor: string | undefined;\n logoFile: string | undefined;\n logo: any | undefined;\n}","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-ngx-mimic',\n template: `\n <p>\n ngx-mimic works!\n </p>\n `,\n styles: [\n ]\n})\nexport class NgxMimicComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {}\n\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'mimic-feature-card',\n templateUrl: './feature-card.component.html',\n styleUrls: ['./feature-card.component.scss']\n})\nexport class FeatureCardComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","\n<footer>\n <div class=\"card-icon flex\">\n\n <div class=\"box-icon-1 flex\">\n <div class=\"icon-1\"></div>\n </div>\n\n <div class=\"box-icon-2 flex\">\n <div class=\"icon-2\"></div>\n </div>\n\n <div class=\"box-icon-3 flex\">\n <div class=\"icon-3\"></div>\n </div>\n\n <div class=\"box-icon-4 flex\">\n <div class=\"icon-4\"></div>\n </div>\n\n </div>\n</footer>\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'mobile-bar',\n templateUrl: './mobile-bar.component.html',\n styleUrls: ['./mobile-bar.component.scss']\n})\nexport class MobileBarComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","<div class=\"mobile-bar-body flex\">\n <div class=\"mobile-bar-itens flex\">\n <ng-content></ng-content>\n </div>\n</div>\n","import { Component, Input, OnInit } from '@angular/core';\n\n@Component({\n selector: 'state-menu',\n templateUrl: './state-menu.component.html',\n styleUrls: ['./state-menu.component.scss']\n})\nexport class StateMenuComponent implements OnInit {\n @Input() active: boolean = false;\n @Input() icon: string = '';\n @Input() text: string = '';\n\n constructor() {}\n\n ngOnInit() {\n \n }\n}\n","<div class=\"state-menu-body flex\" [ngClass]=\"active ? 'active' : 'notActive'\">\n <span class=\"state-menu-label {{icon}}\"></span>\n <span *ngIf=\"active\" class=\"state-menu-label state-menu-label-text\">{{ text }}</span>\n</div>","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'description-box',\n templateUrl: './description-box.component.html',\n styleUrls: ['./description-box.component.scss']\n})\nexport class DescriptionBoxComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","<div class=\"description-box-body\">\n <div class=\"description-box-itens\">\n <ng-content></ng-content>\n </div>\n</div>\n\n","import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\n\n@Component({\n selector: 'circle-button',\n templateUrl: './circle-button.component.html',\n styleUrls: ['./circle-button.component.scss']\n})\nexport class CircleButtonComponent implements OnInit {\n @Input() active: boolean = false;\n @Input() icon: string = '';\n\n constructor() { }\n\n ngOnInit() {\n }\n}\n","<div class=\"flex circle-button\" [ngClass]=\"active ? 'active' : 'notActive'\">\n <span class=\"circle-button-icon {{ icon }}\"></span>\n</div>","import { Component, Input, OnInit } from '@angular/core';\n\n@Component({\n selector: 'app-tag',\n templateUrl: './tag.component.html',\n styleUrls: ['./tag.component.scss']\n})\nexport class TagComponent implements OnInit {\n @Input() color: string = '#46D0D9';\n @Input() text: string = '';\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","<span class=\"flex tag text\" style=\"background-color: {{ color }};\">{{ text }}</span>\n\n<div class=\"body\">\n\n<div class=\"flex login\">\n <p>LOGIN</p>\n</div>\n\n<div class=\"flex option\">\n <p>Tenho interesse!</p>\n</div>\n\n<div class=\"flex campo-text\">\n <p class=\"text\">Email</p>\n</div>\n\n\n<div class=\"flex campo\">\n <h1>1</h1>\n</div>\n\n","import { CUSTOM_ELEMENTS_SCHEMA, ModuleWithProviders, NgModule } from '@angular/core';\nimport { FeatureCardComponent } from './feature-card/feature-card.component';\nimport { NgxMimicComponent } from './ngx-mimic.component';\nimport { MobileBarComponent } from './mobile-bar/mobile-bar.component';\nimport { StateMenuComponent } from './state-menu/state-menu.component';\nimport { DescriptionBoxComponent } from './description-box/description-box.component';\nimport { CircleButtonComponent } from './circle-button/circle-button.component';\nimport { TagComponent } from './tag/tag.component';\nimport { CommonModule } from '@angular/common';\n\n@NgModule({\n declarations: [\n NgxMimicComponent,\n FeatureCardComponent,\n MobileBarComponent,\n TagComponent,\n CircleButtonComponent,\n StateMenuComponent,\n DescriptionBoxComponent\n ],\n imports: [\n CommonModule\n ],\n exports: [\n NgxMimicComponent,\n FeatureCardComponent,\n MobileBarComponent,\n TagComponent,\n CircleButtonComponent,\n StateMenuComponent,\n DescriptionBoxComponent\n ],\n schemas: [ CUSTOM_ELEMENTS_SCHEMA ]\n})\nexport class NgxMimicModule {\n static forRoot(): ModuleWithProviders<NgxMimicModule> {\n return {\n ngModule: NgxMimicModule\n }\n }\n}\n","/*\n * Public API Surface of ngx-mimic\n */\n\nexport * from './lib/ngx-mimic.service';\nexport * from './lib/ngx-mimic.component';\nexport * from './lib/ngx-mimic.module';\n\nexport * from './lib/feature-card/feature-card.component';\nexport * from './lib/mobile-bar/mobile-bar.component';\nexport * from './lib/state-menu/state-menu.component';\nexport * from './lib/circle-button/circle-button.component';\nexport * from './lib/tag/tag.component';\nexport * from './lib/description-box/description-box.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class CircleButtonComponent implements OnInit {
|
4
|
+
active: boolean;
|
5
|
+
icon: string;
|
6
|
+
constructor();
|
7
|
+
ngOnInit(): void;
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CircleButtonComponent, never>;
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CircleButtonComponent, "circle-button", never, { "active": "active"; "icon": "icon"; }, {}, never, never>;
|
10
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class DescriptionBoxComponent implements OnInit {
|
4
|
+
constructor();
|
5
|
+
ngOnInit(): void;
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DescriptionBoxComponent, never>;
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DescriptionBoxComponent, "description-box", never, {}, {}, never, ["*"]>;
|
8
|
+
}
|
@@ -4,5 +4,5 @@ export declare class FeatureCardComponent implements OnInit {
|
|
4
4
|
constructor();
|
5
5
|
ngOnInit(): void;
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<FeatureCardComponent, never>;
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FeatureCardComponent, "mimic-feature-card", never, {}, {}, never,
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeatureCardComponent, "mimic-feature-card", never, {}, {}, never, never>;
|
8
8
|
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class MobileBarComponent implements OnInit {
|
4
|
+
constructor();
|
5
|
+
ngOnInit(): void;
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MobileBarComponent, never>;
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MobileBarComponent, "mobile-bar", never, {}, {}, never, ["*"]>;
|
8
|
+
}
|
@@ -2,10 +2,15 @@ import { ModuleWithProviders } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
3
3
|
import * as i1 from "./ngx-mimic.component";
|
4
4
|
import * as i2 from "./feature-card/feature-card.component";
|
5
|
-
import * as i3 from "./
|
5
|
+
import * as i3 from "./mobile-bar/mobile-bar.component";
|
6
|
+
import * as i4 from "./tag/tag.component";
|
7
|
+
import * as i5 from "./circle-button/circle-button.component";
|
8
|
+
import * as i6 from "./state-menu/state-menu.component";
|
9
|
+
import * as i7 from "./description-box/description-box.component";
|
10
|
+
import * as i8 from "@angular/common";
|
6
11
|
export declare class NgxMimicModule {
|
7
12
|
static forRoot(): ModuleWithProviders<NgxMimicModule>;
|
8
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxMimicModule, never>;
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NgxMimicModule, [typeof i1.NgxMimicComponent, typeof i2.FeatureCardComponent, typeof i3.
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NgxMimicModule, [typeof i1.NgxMimicComponent, typeof i2.FeatureCardComponent, typeof i3.MobileBarComponent, typeof i4.TagComponent, typeof i5.CircleButtonComponent, typeof i6.StateMenuComponent, typeof i7.DescriptionBoxComponent], [typeof i8.CommonModule], [typeof i1.NgxMimicComponent, typeof i2.FeatureCardComponent, typeof i3.MobileBarComponent, typeof i4.TagComponent, typeof i5.CircleButtonComponent, typeof i6.StateMenuComponent, typeof i7.DescriptionBoxComponent]>;
|
10
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<NgxMimicModule>;
|
11
16
|
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class StateMenuComponent implements OnInit {
|
4
|
+
active: boolean;
|
5
|
+
icon: string;
|
6
|
+
text: string;
|
7
|
+
constructor();
|
8
|
+
ngOnInit(): void;
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StateMenuComponent, never>;
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StateMenuComponent, "state-menu", never, { "active": "active"; "icon": "icon"; "text": "text"; }, {}, never, never>;
|
11
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class TagComponent implements OnInit {
|
4
|
+
color: string;
|
5
|
+
text: string;
|
6
|
+
constructor();
|
7
|
+
ngOnInit(): void;
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "app-tag", never, { "color": "color"; "text": "text"; }, {}, never, never>;
|
10
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -2,4 +2,8 @@ export * from './lib/ngx-mimic.service';
|
|
2
2
|
export * from './lib/ngx-mimic.component';
|
3
3
|
export * from './lib/ngx-mimic.module';
|
4
4
|
export * from './lib/feature-card/feature-card.component';
|
5
|
-
export * from './lib/
|
5
|
+
export * from './lib/mobile-bar/mobile-bar.component';
|
6
|
+
export * from './lib/state-menu/state-menu.component';
|
7
|
+
export * from './lib/circle-button/circle-button.component';
|
8
|
+
export * from './lib/tag/tag.component';
|
9
|
+
export * from './lib/description-box/description-box.component';
|
@@ -0,0 +1,7 @@
|
|
1
|
+
Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures.
|
2
|
+
|
3
|
+
To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts
|
4
|
+
|
5
|
+
You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects.
|
6
|
+
|
7
|
+
You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection.
|
@@ -0,0 +1,152 @@
|
|
1
|
+
body {
|
2
|
+
padding: 0;
|
3
|
+
margin: 0;
|
4
|
+
font-family: sans-serif;
|
5
|
+
font-size: 1em;
|
6
|
+
line-height: 1.5;
|
7
|
+
color: #555;
|
8
|
+
background: #fff;
|
9
|
+
}
|
10
|
+
h1 {
|
11
|
+
font-size: 1.5em;
|
12
|
+
font-weight: normal;
|
13
|
+
}
|
14
|
+
small {
|
15
|
+
font-size: .66666667em;
|
16
|
+
}
|
17
|
+
a {
|
18
|
+
color: #e74c3c;
|
19
|
+
text-decoration: none;
|
20
|
+
}
|
21
|
+
a:hover, a:focus {
|
22
|
+
box-shadow: 0 1px #e74c3c;
|
23
|
+
}
|
24
|
+
.bshadow0, input {
|
25
|
+
box-shadow: inset 0 -2px #e7e7e7;
|
26
|
+
}
|
27
|
+
input:hover {
|
28
|
+
box-shadow: inset 0 -2px #ccc;
|
29
|
+
}
|
30
|
+
input, fieldset {
|
31
|
+
font-family: sans-serif;
|
32
|
+
font-size: 1em;
|
33
|
+
margin: 0;
|
34
|
+
padding: 0;
|
35
|
+
border: 0;
|
36
|
+
}
|
37
|
+
input {
|
38
|
+
color: inherit;
|
39
|
+
line-height: 1.5;
|
40
|
+
height: 1.5em;
|
41
|
+
padding: .25em 0;
|
42
|
+
}
|
43
|
+
input:focus {
|
44
|
+
outline: none;
|
45
|
+
box-shadow: inset 0 -2px #449fdb;
|
46
|
+
}
|
47
|
+
.glyph {
|
48
|
+
font-size: 16px;
|
49
|
+
width: 15em;
|
50
|
+
padding-bottom: 1em;
|
51
|
+
margin-right: 4em;
|
52
|
+
margin-bottom: 1em;
|
53
|
+
float: left;
|
54
|
+
overflow: hidden;
|
55
|
+
}
|
56
|
+
.liga {
|
57
|
+
width: 80%;
|
58
|
+
width: calc(100% - 2.5em);
|
59
|
+
}
|
60
|
+
.talign-right {
|
61
|
+
text-align: right;
|
62
|
+
}
|
63
|
+
.talign-center {
|
64
|
+
text-align: center;
|
65
|
+
}
|
66
|
+
.bgc1 {
|
67
|
+
background: #f1f1f1;
|
68
|
+
}
|
69
|
+
.fgc1 {
|
70
|
+
color: #999;
|
71
|
+
}
|
72
|
+
.fgc0 {
|
73
|
+
color: #000;
|
74
|
+
}
|
75
|
+
p {
|
76
|
+
margin-top: 1em;
|
77
|
+
margin-bottom: 1em;
|
78
|
+
}
|
79
|
+
.mvm {
|
80
|
+
margin-top: .75em;
|
81
|
+
margin-bottom: .75em;
|
82
|
+
}
|
83
|
+
.mtn {
|
84
|
+
margin-top: 0;
|
85
|
+
}
|
86
|
+
.mtl, .mal {
|
87
|
+
margin-top: 1.5em;
|
88
|
+
}
|
89
|
+
.mbl, .mal {
|
90
|
+
margin-bottom: 1.5em;
|
91
|
+
}
|
92
|
+
.mal, .mhl {
|
93
|
+
margin-left: 1.5em;
|
94
|
+
margin-right: 1.5em;
|
95
|
+
}
|
96
|
+
.mhmm {
|
97
|
+
margin-left: 1em;
|
98
|
+
margin-right: 1em;
|
99
|
+
}
|
100
|
+
.mls {
|
101
|
+
margin-left: .25em;
|
102
|
+
}
|
103
|
+
.ptl {
|
104
|
+
padding-top: 1.5em;
|
105
|
+
}
|
106
|
+
.pbs, .pvs {
|
107
|
+
padding-bottom: .25em;
|
108
|
+
}
|
109
|
+
.pvs, .pts {
|
110
|
+
padding-top: .25em;
|
111
|
+
}
|
112
|
+
.unit {
|
113
|
+
float: left;
|
114
|
+
}
|
115
|
+
.unitRight {
|
116
|
+
float: right;
|
117
|
+
}
|
118
|
+
.size1of2 {
|
119
|
+
width: 50%;
|
120
|
+
}
|
121
|
+
.size1of1 {
|
122
|
+
width: 100%;
|
123
|
+
}
|
124
|
+
.clearfix:before, .clearfix:after {
|
125
|
+
content: " ";
|
126
|
+
display: table;
|
127
|
+
}
|
128
|
+
.clearfix:after {
|
129
|
+
clear: both;
|
130
|
+
}
|
131
|
+
.hidden-true {
|
132
|
+
display: none;
|
133
|
+
}
|
134
|
+
.textbox0 {
|
135
|
+
width: 3em;
|
136
|
+
background: #f1f1f1;
|
137
|
+
padding: .25em .5em;
|
138
|
+
line-height: 1.5;
|
139
|
+
height: 1.5em;
|
140
|
+
}
|
141
|
+
#testDrive {
|
142
|
+
display: block;
|
143
|
+
padding-top: 24px;
|
144
|
+
line-height: 1.5;
|
145
|
+
}
|
146
|
+
.fs0 {
|
147
|
+
font-size: 16px;
|
148
|
+
}
|
149
|
+
.fs1 {
|
150
|
+
font-size: 32px;
|
151
|
+
}
|
152
|
+
|
@@ -0,0 +1,30 @@
|
|
1
|
+
if (!('boxShadow' in document.body.style)) {
|
2
|
+
document.body.setAttribute('class', 'noBoxShadow');
|
3
|
+
}
|
4
|
+
|
5
|
+
document.body.addEventListener("click", function(e) {
|
6
|
+
var target = e.target;
|
7
|
+
if (target.tagName === "INPUT" &&
|
8
|
+
target.getAttribute('class').indexOf('liga') === -1) {
|
9
|
+
target.select();
|
10
|
+
}
|
11
|
+
});
|
12
|
+
|
13
|
+
(function() {
|
14
|
+
var fontSize = document.getElementById('fontSize'),
|
15
|
+
testDrive = document.getElementById('testDrive'),
|
16
|
+
testText = document.getElementById('testText');
|
17
|
+
function updateTest() {
|
18
|
+
testDrive.innerHTML = testText.value || String.fromCharCode(160);
|
19
|
+
if (window.icomoonLiga) {
|
20
|
+
window.icomoonLiga(testDrive);
|
21
|
+
}
|
22
|
+
}
|
23
|
+
function updateSize() {
|
24
|
+
testDrive.style.fontSize = fontSize.value + 'px';
|
25
|
+
}
|
26
|
+
fontSize.addEventListener('change', updateSize, false);
|
27
|
+
testText.addEventListener('input', updateTest, false);
|
28
|
+
testText.addEventListener('change', updateTest, false);
|
29
|
+
updateSize();
|
30
|
+
}());
|
@@ -0,0 +1,262 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>IcoMoon Demo</title>
|
6
|
+
<meta name="description" content="An Icon Font Generated By IcoMoon.io">
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
8
|
+
<link rel="stylesheet" href="demo-files/demo.css">
|
9
|
+
<link rel="stylesheet" href="style.css"></head>
|
10
|
+
<body>
|
11
|
+
<div class="bgc1 clearfix">
|
12
|
+
<h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> icomoon <small class="fgc1">(Glyphs: 16)</small></h1>
|
13
|
+
</div>
|
14
|
+
<div class="clearfix mhl ptl">
|
15
|
+
<h1 class="mvm mtn fgc1">Grid Size: 16</h1>
|
16
|
+
<div class="glyph fs1">
|
17
|
+
<div class="clearfix bshadow0 pbs">
|
18
|
+
<span class="icon-location"></span>
|
19
|
+
<span class="mls"> icon-location</span>
|
20
|
+
</div>
|
21
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
22
|
+
<input type="text" readonly value="e902" class="unit size1of2" />
|
23
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
24
|
+
</fieldset>
|
25
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
26
|
+
<span class="unit pvs fgc1">liga: </span>
|
27
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
<div class="glyph fs1">
|
31
|
+
<div class="clearfix bshadow0 pbs">
|
32
|
+
<span class="icon-chat"></span>
|
33
|
+
<span class="mls"> icon-chat</span>
|
34
|
+
</div>
|
35
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
36
|
+
<input type="text" readonly value="e903" class="unit size1of2" />
|
37
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
38
|
+
</fieldset>
|
39
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
40
|
+
<span class="unit pvs fgc1">liga: </span>
|
41
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
42
|
+
</div>
|
43
|
+
</div>
|
44
|
+
<div class="glyph fs1">
|
45
|
+
<div class="clearfix bshadow0 pbs">
|
46
|
+
<span class="icon-messenger"></span>
|
47
|
+
<span class="mls"> icon-messenger</span>
|
48
|
+
</div>
|
49
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
50
|
+
<input type="text" readonly value="e904" class="unit size1of2" />
|
51
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
52
|
+
</fieldset>
|
53
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
54
|
+
<span class="unit pvs fgc1">liga: </span>
|
55
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
56
|
+
</div>
|
57
|
+
</div>
|
58
|
+
<div class="glyph fs1">
|
59
|
+
<div class="clearfix bshadow0 pbs">
|
60
|
+
<span class="icon-home"></span>
|
61
|
+
<span class="mls"> icon-home</span>
|
62
|
+
</div>
|
63
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
64
|
+
<input type="text" readonly value="e905" class="unit size1of2" />
|
65
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
66
|
+
</fieldset>
|
67
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
68
|
+
<span class="unit pvs fgc1">liga: </span>
|
69
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
70
|
+
</div>
|
71
|
+
</div>
|
72
|
+
<div class="glyph fs1">
|
73
|
+
<div class="clearfix bshadow0 pbs">
|
74
|
+
<span class="icon-building"></span>
|
75
|
+
<span class="mls"> icon-building</span>
|
76
|
+
</div>
|
77
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
78
|
+
<input type="text" readonly value="e906" class="unit size1of2" />
|
79
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
80
|
+
</fieldset>
|
81
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
82
|
+
<span class="unit pvs fgc1">liga: </span>
|
83
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
84
|
+
</div>
|
85
|
+
</div>
|
86
|
+
<div class="glyph fs1">
|
87
|
+
<div class="clearfix bshadow0 pbs">
|
88
|
+
<span class="icon-farm"></span>
|
89
|
+
<span class="mls"> icon-farm</span>
|
90
|
+
</div>
|
91
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
92
|
+
<input type="text" readonly value="e907" class="unit size1of2" />
|
93
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
94
|
+
</fieldset>
|
95
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
96
|
+
<span class="unit pvs fgc1">liga: </span>
|
97
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
98
|
+
</div>
|
99
|
+
</div>
|
100
|
+
<div class="glyph fs1">
|
101
|
+
<div class="clearfix bshadow0 pbs">
|
102
|
+
<span class="icon-land"></span>
|
103
|
+
<span class="mls"> icon-land</span>
|
104
|
+
</div>
|
105
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
106
|
+
<input type="text" readonly value="e908" class="unit size1of2" />
|
107
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
108
|
+
</fieldset>
|
109
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
110
|
+
<span class="unit pvs fgc1">liga: </span>
|
111
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
112
|
+
</div>
|
113
|
+
</div>
|
114
|
+
<div class="glyph fs1">
|
115
|
+
<div class="clearfix bshadow0 pbs">
|
116
|
+
<span class="icon-bedroom"></span>
|
117
|
+
<span class="mls"> icon-bedroom</span>
|
118
|
+
</div>
|
119
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
120
|
+
<input type="text" readonly value="e909" class="unit size1of2" />
|
121
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
122
|
+
</fieldset>
|
123
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
124
|
+
<span class="unit pvs fgc1">liga: </span>
|
125
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
126
|
+
</div>
|
127
|
+
</div>
|
128
|
+
<div class="glyph fs1">
|
129
|
+
<div class="clearfix bshadow0 pbs">
|
130
|
+
<span class="icon-shower"></span>
|
131
|
+
<span class="mls"> icon-shower</span>
|
132
|
+
</div>
|
133
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
134
|
+
<input type="text" readonly value="e90a" class="unit size1of2" />
|
135
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
136
|
+
</fieldset>
|
137
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
138
|
+
<span class="unit pvs fgc1">liga: </span>
|
139
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
140
|
+
</div>
|
141
|
+
</div>
|
142
|
+
<div class="glyph fs1">
|
143
|
+
<div class="clearfix bshadow0 pbs">
|
144
|
+
<span class="icon-garage"></span>
|
145
|
+
<span class="mls"> icon-garage</span>
|
146
|
+
</div>
|
147
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
148
|
+
<input type="text" readonly value="e90b" class="unit size1of2" />
|
149
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
150
|
+
</fieldset>
|
151
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
152
|
+
<span class="unit pvs fgc1">liga: </span>
|
153
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
154
|
+
</div>
|
155
|
+
</div>
|
156
|
+
<div class="glyph fs1">
|
157
|
+
<div class="clearfix bshadow0 pbs">
|
158
|
+
<span class="icon-area"></span>
|
159
|
+
<span class="mls"> icon-area</span>
|
160
|
+
</div>
|
161
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
162
|
+
<input type="text" readonly value="e90c" class="unit size1of2" />
|
163
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
164
|
+
</fieldset>
|
165
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
166
|
+
<span class="unit pvs fgc1">liga: </span>
|
167
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
168
|
+
</div>
|
169
|
+
</div>
|
170
|
+
<div class="glyph fs1">
|
171
|
+
<div class="clearfix bshadow0 pbs">
|
172
|
+
<span class="icon-furnitured"></span>
|
173
|
+
<span class="mls"> icon-furnitured</span>
|
174
|
+
</div>
|
175
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
176
|
+
<input type="text" readonly value="e90d" class="unit size1of2" />
|
177
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
178
|
+
</fieldset>
|
179
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
180
|
+
<span class="unit pvs fgc1">liga: </span>
|
181
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
182
|
+
</div>
|
183
|
+
</div>
|
184
|
+
<div class="glyph fs1">
|
185
|
+
<div class="clearfix bshadow0 pbs">
|
186
|
+
<span class="icon-grill"></span>
|
187
|
+
<span class="mls"> icon-grill</span>
|
188
|
+
</div>
|
189
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
190
|
+
<input type="text" readonly value="e90e" class="unit size1of2" />
|
191
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
192
|
+
</fieldset>
|
193
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
194
|
+
<span class="unit pvs fgc1">liga: </span>
|
195
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
196
|
+
</div>
|
197
|
+
</div>
|
198
|
+
<div class="glyph fs1">
|
199
|
+
<div class="clearfix bshadow0 pbs">
|
200
|
+
<span class="icon-find-house"></span>
|
201
|
+
<span class="mls"> icon-find-house</span>
|
202
|
+
</div>
|
203
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
204
|
+
<input type="text" readonly value="e901" class="unit size1of2" />
|
205
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
206
|
+
</fieldset>
|
207
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
208
|
+
<span class="unit pvs fgc1">liga: </span>
|
209
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
210
|
+
</div>
|
211
|
+
</div>
|
212
|
+
<div class="glyph fs1">
|
213
|
+
<div class="clearfix bshadow0 pbs">
|
214
|
+
<span class="icon-heart"></span>
|
215
|
+
<span class="mls"> icon-heart</span>
|
216
|
+
</div>
|
217
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
218
|
+
<input type="text" readonly value="e9da" class="unit size1of2" />
|
219
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
220
|
+
</fieldset>
|
221
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
222
|
+
<span class="unit pvs fgc1">liga: </span>
|
223
|
+
<input type="text" readonly value="heart, like" class="liga unitRight" />
|
224
|
+
</div>
|
225
|
+
</div>
|
226
|
+
<div class="glyph fs1">
|
227
|
+
<div class="clearfix bshadow0 pbs">
|
228
|
+
<span class="icon-share"></span>
|
229
|
+
<span class="mls"> icon-share</span>
|
230
|
+
</div>
|
231
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
232
|
+
<input type="text" readonly value="ea7d" class="unit size1of2" />
|
233
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
234
|
+
</fieldset>
|
235
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
236
|
+
<span class="unit pvs fgc1">liga: </span>
|
237
|
+
<input type="text" readonly value="share, out" class="liga unitRight" />
|
238
|
+
</div>
|
239
|
+
</div>
|
240
|
+
</div>
|
241
|
+
|
242
|
+
<!--[if gt IE 8]><!-->
|
243
|
+
<div class="mhl clearfix mbl">
|
244
|
+
<h1>Font Test Drive</h1>
|
245
|
+
<label>
|
246
|
+
Font Size: <input id="fontSize" type="number" class="textbox0 mbm"
|
247
|
+
min="8" value="48" />
|
248
|
+
px
|
249
|
+
</label>
|
250
|
+
<input id="testText" type="text" class="phl size1of1 mvl"
|
251
|
+
placeholder="Type some text to test..." value=""/>
|
252
|
+
<div id="testDrive" class="icon-" style="font-family: icomoon">
|
253
|
+
</div>
|
254
|
+
</div>
|
255
|
+
<!--<![endif]-->
|
256
|
+
<div class="bgc1 clearfix">
|
257
|
+
<p class="mhl">Generated by <a href="https://icomoon.io/app">IcoMoon</a></p>
|
258
|
+
</div>
|
259
|
+
|
260
|
+
<script src="demo-files/demo.js"></script>
|
261
|
+
</body>
|
262
|
+
</html>
|
Binary file
|