@xaypay/tui 0.0.2 → 0.0.4

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.
Files changed (72) hide show
  1. package/.idea/misc.xml +6 -0
  2. package/.idea/modules.xml +8 -0
  3. package/.idea/tui.iml +12 -0
  4. package/.idea/vcs.xml +6 -0
  5. package/.idea/workspace.xml +1755 -0
  6. package/.storybook/main.js +1 -1
  7. package/dist/index.es.js +905 -9
  8. package/dist/index.js +945 -8
  9. package/package.json +8 -4
  10. package/src/assets/heart-filled.svg +17 -0
  11. package/src/assets/heart-outline.svg +14 -0
  12. package/src/assets/like-filled.svg +21 -0
  13. package/src/assets/like-outline.svg +21 -0
  14. package/src/assets/star-filled.svg +21 -0
  15. package/src/assets/star-outline.svg +5 -0
  16. package/src/assets_old/icons/Read Me.txt +7 -0
  17. package/src/assets_old/icons/demo-files/demo.css +152 -0
  18. package/src/assets_old/icons/demo-files/demo.js +30 -0
  19. package/src/assets_old/icons/demo.html +150 -0
  20. package/src/assets_old/icons/fonts/icomoon.eot +0 -0
  21. package/src/assets_old/icons/fonts/icomoon.svg +18 -0
  22. package/src/assets_old/icons/fonts/icomoon.ttf +0 -0
  23. package/src/assets_old/icons/fonts/icomoon.woff +0 -0
  24. package/src/assets_old/icons/selection.json +1 -0
  25. package/src/assets_old/icons/style.css +51 -0
  26. package/src/components/autocomplate/autocomplate.module.css +74 -0
  27. package/src/components/autocomplate/autocomplate.stories.js +11 -0
  28. package/src/components/autocomplate/index.js +117 -0
  29. package/src/components/button/button.module.css +63 -1
  30. package/src/components/button/button.stories.js +10 -10
  31. package/src/components/button/index.js +12 -9
  32. package/src/components/captcha/blue.png +0 -0
  33. package/src/components/captcha/captcha.module.css +66 -0
  34. package/src/components/captcha/captcha.stories.js +17 -0
  35. package/src/components/captcha/green.png +0 -0
  36. package/src/components/captcha/index.js +63 -0
  37. package/src/components/captcha/red.png +0 -0
  38. package/src/components/checkbox/checkbox.module.css +57 -0
  39. package/src/components/checkbox/checkbox.stories.js +10 -0
  40. package/src/components/checkbox/index.js +87 -0
  41. package/src/components/icon/HeartFilled.js +26 -0
  42. package/src/components/icon/HeartOutline.js +25 -0
  43. package/src/components/icon/Icon.js +6 -0
  44. package/src/components/icon/LikeFilled.js +24 -0
  45. package/src/components/icon/LikeOutline.js +24 -0
  46. package/src/components/icon/StarFilled.js +24 -0
  47. package/src/components/icon/StarOutline.js +24 -0
  48. package/src/components/icon/index.js +6 -0
  49. package/src/components/input/index.js +90 -0
  50. package/src/components/input/input.module.css +89 -0
  51. package/src/components/input/input.stories.js +38 -0
  52. package/src/components/modal/index.js +24 -0
  53. package/src/components/modal/modal.module.css +35 -0
  54. package/src/components/modal/modal.stories.js +29 -0
  55. package/src/components/multiselect/index.js +76 -0
  56. package/src/components/multiselect/multiselect.module.css +137 -0
  57. package/src/components/multiselect/multiselect.stories.js +19 -0
  58. package/src/components/pagination/index.js +119 -0
  59. package/src/components/pagination/pagination.module.css +80 -0
  60. package/src/components/pagination/pagination.stories.js +371 -0
  61. package/src/components/pagination/paginationRange.js +70 -0
  62. package/src/components/radio/index.js +68 -0
  63. package/src/components/radio/radio.module.css +59 -0
  64. package/src/components/radio/radio.stories.js +10 -0
  65. package/src/components/select/index.js +130 -0
  66. package/src/components/select/select.module.css +100 -0
  67. package/src/components/select/select.stories.js +21 -0
  68. package/src/components/typography/index.js +53 -0
  69. package/src/components/typography/typography.module.css +60 -0
  70. package/src/components/typography/typography.stories.js +29 -0
  71. package/src/index.js +10 -1
  72. package/storybook-static/favicon.ico +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xaypay/tui",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -8,7 +8,8 @@
8
8
  "test": "echo \"Error: no test specified\" && exit 1",
9
9
  "storybook": "start-storybook -p 6006",
10
10
  "build-storybook": "build-storybook",
11
- "build-lib": "rollup -c"
11
+ "build-lib": "rollup -c",
12
+ "svgr": "svgr --icon --title-prop --replace-attr-values '#1D1D1D=currentColor' -d src/components/icon -- src/assets"
12
13
  },
13
14
  "author": "",
14
15
  "license": "MIT",
@@ -25,6 +26,7 @@
25
26
  "@storybook/preset-scss": "^1.0.3",
26
27
  "@storybook/react": "^6.5.10",
27
28
  "@storybook/testing-library": "^0.0.13",
29
+ "@svgr/cli": "^6.4.0",
28
30
  "babel-loader": "^8.2.5",
29
31
  "classnames": "^2.3.1",
30
32
  "css-loader": "^6.7.1",
@@ -40,11 +42,13 @@
40
42
  "rollup-plugin-postcss": "^4.0.2",
41
43
  "sass": "^1.54.9",
42
44
  "sass-loader": "^13.0.2",
43
- "style-loader": "^3.3.1"
45
+ "style-loader": "^3.3.1",
46
+ "styled-components": "^5.3.5"
44
47
  },
45
48
  "peerDependencies": {
46
49
  "react": "^17.0.2",
47
- "react-dom": "^17.0.2"
50
+ "react-dom": "^17.0.2",
51
+ "styled-components": "^5.3.5"
48
52
  },
49
53
  "publishConfig": {
50
54
  "access": "public"
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
5
+ y="0px" width="511.626px" height="511.627px" viewBox="0 0 511.626 511.627"
6
+ style="enable-background:new 0 0 511.626 511.627;" xml:space="preserve">
7
+ <g>
8
+ <path d="M475.366,71.951c-24.175-23.606-57.575-35.404-100.215-35.404c-11.8,0-23.843,2.046-36.117,6.136
9
+ c-12.279,4.093-23.702,9.615-34.256,16.562c-10.568,6.945-19.65,13.467-27.269,19.556c-7.61,6.091-14.845,12.564-21.696,19.414
10
+ c-6.854-6.85-14.087-13.323-21.698-19.414c-7.616-6.089-16.702-12.607-27.268-19.556c-10.564-6.95-21.985-12.468-34.261-16.562
11
+ c-12.275-4.089-24.316-6.136-36.116-6.136c-42.637,0-76.039,11.801-100.211,35.404C12.087,95.552,0,128.288,0,170.162
12
+ c0,12.753,2.24,25.889,6.711,39.398c4.471,13.514,9.566,25.031,15.275,34.546c5.708,9.514,12.181,18.796,19.414,27.837
13
+ c7.233,9.042,12.519,15.27,15.846,18.699c3.33,3.422,5.948,5.899,7.851,7.419L243.25,469.937c3.427,3.429,7.614,5.144,12.562,5.144
14
+ s9.138-1.715,12.563-5.137l177.87-171.307c43.588-43.583,65.38-86.41,65.38-128.475C511.626,128.288,499.537,95.552,475.366,71.951
15
+ z" fill="#1D1D1D" />
16
+ </g>
17
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
4
+ y="0px" viewBox="0 0 471.701 471.701" style="enable-background:new 0 0 471.701 471.701;" xml:space="preserve">
5
+ <g>
6
+ <path d="M433.601,67.001c-24.7-24.7-57.4-38.2-92.3-38.2s-67.7,13.6-92.4,38.3l-12.9,12.9l-13.1-13.1
7
+ c-24.7-24.7-57.6-38.4-92.5-38.4c-34.8,0-67.6,13.6-92.2,38.2c-24.7,24.7-38.3,57.5-38.2,92.4c0,34.9,13.7,67.6,38.4,92.3
8
+ l187.8,187.8c2.6,2.6,6.1,4,9.5,4c3.4,0,6.9-1.3,9.5-3.9l188.2-187.5c24.7-24.7,38.3-57.5,38.3-92.4
9
+ C471.801,124.501,458.301,91.701,433.601,67.001z M414.401,232.701l-178.7,178l-178.3-178.3c-19.6-19.6-30.4-45.6-30.4-73.3
10
+ s10.7-53.7,30.3-73.2c19.5-19.5,45.5-30.3,73.1-30.3c27.7,0,53.8,10.8,73.4,30.4l22.6,22.6c5.3,5.3,13.8,5.3,19.1,0l22.4-22.4
11
+ c19.6-19.6,45.7-30.4,73.3-30.4c27.6,0,53.6,10.8,73.2,30.3c19.6,19.6,30.3,45.6,30.3,73.3
12
+ C444.801,187.101,434.001,213.101,414.401,232.701z" fill="#1D1D1D" />
13
+ </g>
14
+ </svg>
@@ -0,0 +1,21 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="23px" height="20px" viewBox="0 0 23 20" version="1.1" xmlns="http://www.w3.org/2000/svg"
3
+ xmlns:xlink="http://www.w3.org/1999/xlink">
4
+ <!-- Generator: Sketch 52.5 (67469) - http://www.bohemiancoding.com/sketch -->
5
+ <title>thumb_up_alt</title>
6
+ <desc>Created with Sketch.</desc>
7
+ <g id="Icons" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
+ <g id="Rounded" transform="translate(-747.000000, -4099.000000)">
9
+ <g id="Social" transform="translate(100.000000, 4044.000000)">
10
+ <g id="-Round-/-Social-/-thumb_up_alt" transform="translate(646.000000, 54.000000)">
11
+ <g>
12
+ <polygon id="Path" opacity="0.87" points="0 0 24 0 24 24 0 24"></polygon>
13
+ <path
14
+ d="M13.12,2.06 L7.58,7.6 C7.21,7.97 7,8.48 7,9.01 L7,19 C7,20.1 7.9,21 9,21 L18,21 C18.8,21 19.52,20.52 19.84,19.79 L23.1,12.18 C23.94,10.2 22.49,8 20.34,8 L14.69,8 L15.64,3.42 C15.74,2.92 15.59,2.41 15.23,2.05 C14.64,1.47 13.7,1.47 13.12,2.06 Z M3,21 C4.1,21 5,20.1 5,19 L5,11 C5,9.9 4.1,9 3,9 C1.9,9 1,9.9 1,11 L1,19 C1,20.1 1.9,21 3,21 Z"
15
+ id="🔹-Icon-Color" fill="#1D1D1D"></path>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </svg>
@@ -0,0 +1,21 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="22px" height="20px" viewBox="0 0 22 20" version="1.1" xmlns="http://www.w3.org/2000/svg"
3
+ xmlns:xlink="http://www.w3.org/1999/xlink">
4
+ <!-- Generator: Sketch 52.5 (67469) - http://www.bohemiancoding.com/sketch -->
5
+ <title>thumb_up_alt</title>
6
+ <desc>Created with Sketch.</desc>
7
+ <g id="Icons" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
+ <g id="Outlined" transform="translate(-815.000000, -4099.000000)">
9
+ <g id="Social" transform="translate(100.000000, 4044.000000)">
10
+ <g id="Outlined-/-Social-/-thumb_up_alt" transform="translate(714.000000, 54.000000)">
11
+ <g>
12
+ <polygon id="Path" opacity="0.87" points="0 0 24 0 24 24 0 24"></polygon>
13
+ <path
14
+ d="M21,8 L14.69,8 L15.64,3.43 L15.67,3.11 C15.67,2.7 15.5,2.32 15.23,2.05 L14.17,1 L7.59,7.59 C7.22,7.95 7,8.45 7,9 L7,19 C7,20.1 7.9,21 9,21 L18,21 C18.83,21 19.54,20.5 19.84,19.78 L22.86,12.73 C22.95,12.5 23,12.26 23,12 L23,10 C23,8.9 22.1,8 21,8 Z M21,12 L18,19 L9,19 L9,9 L13.34,4.66 L12.23,10 L21,10 L21,12 Z M1,9 L5,9 L5,21 L1,21 L1,9 Z"
15
+ id="🔹-Icon-Color" fill="#1D1D1D"></path>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </svg>
@@ -0,0 +1,21 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="18px" height="17px" viewBox="0 0 18 17" version="1.1" xmlns="http://www.w3.org/2000/svg"
3
+ xmlns:xlink="http://www.w3.org/1999/xlink">
4
+ <!-- Generator: Sketch 52.5 (67469) - http://www.bohemiancoding.com/sketch -->
5
+ <title>star</title>
6
+ <desc>Created with Sketch.</desc>
7
+ <g id="Icons" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
+ <g id="Rounded" transform="translate(-273.000000, -4323.000000)">
9
+ <g id="Toggle" transform="translate(100.000000, 4266.000000)">
10
+ <g id="-Round-/-Toggle-/-star" transform="translate(170.000000, 54.000000)">
11
+ <g>
12
+ <polygon id="Path" fill-rule="nonzero" points="0 0 24 0 24 24 0 24"></polygon>
13
+ <path
14
+ d="M12,17.27 L16.15,19.78 C16.91,20.24 17.84,19.56 17.64,18.7 L16.54,13.98 L20.21,10.8 C20.88,10.22 20.52,9.12 19.64,9.05 L14.81,8.64 L12.92,4.18 C12.58,3.37 11.42,3.37 11.08,4.18 L9.19,8.63 L4.36,9.04 C3.48,9.11 3.12,10.21 3.79,10.79 L7.46,13.97 L6.36,18.69 C6.16,19.55 7.09,20.23 7.85,19.77 L12,17.27 Z"
15
+ id="🔹-Icon-Color" fill="#1D1D1D"></path>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#1D1D1D" stroke-width="2"
2
+ stroke-linecap="round" stroke-linejoin="round" class="feather feather-star">
3
+ <polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2">
4
+ </polygon>
5
+ </svg>
@@ -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,150 @@
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:&nbsp;8)</small></h1>
13
+ </div>
14
+ <div class="clearfix mhl ptl">
15
+ <h1 class="mvm mtn fgc1">Grid Size: 32</h1>
16
+ <div class="glyph fs1">
17
+ <div class="clearfix bshadow0 pbs">
18
+ <span class="icon-close"></span>
19
+ <span class="mls"> icon-close</span>
20
+ </div>
21
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
22
+ <input type="text" readonly value="e907" class="unit size1of2" />
23
+ <input type="text" maxlength="1" readonly value="&#xe907;" 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-icon-arrow-top"></span>
33
+ <span class="mls"> icon-icon-arrow-top</span>
34
+ </div>
35
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
36
+ <input type="text" readonly value="e905" class="unit size1of2" />
37
+ <input type="text" maxlength="1" readonly value="&#xe905;" 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-icon-arrow-bottom"></span>
47
+ <span class="mls"> icon-icon-arrow-bottom</span>
48
+ </div>
49
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
50
+ <input type="text" readonly value="e906" class="unit size1of2" />
51
+ <input type="text" maxlength="1" readonly value="&#xe906;" 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-arrow"></span>
61
+ <span class="mls"> icon-arrow</span>
62
+ </div>
63
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
64
+ <input type="text" readonly value="e900" class="unit size1of2" />
65
+ <input type="text" maxlength="1" readonly value="&#xe900;" 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-arrow-jump-next"></span>
75
+ <span class="mls"> icon-arrow-jump-next</span>
76
+ </div>
77
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
78
+ <input type="text" readonly value="e901" class="unit size1of2" />
79
+ <input type="text" maxlength="1" readonly value="&#xe901;" 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-arrow-jump-back"></span>
89
+ <span class="mls"> icon-arrow-jump-back</span>
90
+ </div>
91
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
92
+ <input type="text" readonly value="e902" class="unit size1of2" />
93
+ <input type="text" maxlength="1" readonly value="&#xe902;" 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-text"></span>
103
+ <span class="mls"> icon-text</span>
104
+ </div>
105
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
106
+ <input type="text" readonly value="e903" class="unit size1of2" />
107
+ <input type="text" maxlength="1" readonly value="&#xe903;" 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-arrow-back"></span>
117
+ <span class="mls"> icon-arrow-back</span>
118
+ </div>
119
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
120
+ <input type="text" readonly value="e904" class="unit size1of2" />
121
+ <input type="text" maxlength="1" readonly value="&#xe904;" 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>
129
+
130
+ <!--[if gt IE 8]><!-->
131
+ <div class="mhl clearfix mbl">
132
+ <h1>Font Test Drive</h1>
133
+ <label>
134
+ Font Size: <input id="fontSize" type="number" class="textbox0 mbm"
135
+ min="8" value="48" />
136
+ px
137
+ </label>
138
+ <input id="testText" type="text" class="phl size1of1 mvl"
139
+ placeholder="Type some text to test..." value=""/>
140
+ <div id="testDrive" class="icon-" style="font-family: icomoon">&nbsp;
141
+ </div>
142
+ </div>
143
+ <!--<![endif]-->
144
+ <div class="bgc1 clearfix">
145
+ <p class="mhl">Generated by <a href="https://icomoon.io/app">IcoMoon</a></p>
146
+ </div>
147
+
148
+ <script src="demo-files/demo.js"></script>
149
+ </body>
150
+ </html>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Generated by IcoMoon</metadata>
5
+ <defs>
6
+ <font id="icomoon" horiz-adv-x="1024">
7
+ <font-face units-per-em="1024" ascent="960" descent="-64" />
8
+ <missing-glyph horiz-adv-x="1024" />
9
+ <glyph unicode="&#x20;" horiz-adv-x="512" d="" />
10
+ <glyph unicode="&#xe900;" glyph-name="arrow" horiz-adv-x="512" d="M72.658-63.871c-16.947-0.026-33.37 5.914-46.419 16.794-7.344 6.127-13.415 13.645-17.865 22.135s-7.191 17.783-8.067 27.341c-0.876 9.566 0.131 19.2 2.963 28.365s7.433 17.681 13.54 25.062l324.929 391.173-313.325 391.907c-6.025 7.465-10.524 16.055-13.239 25.276s-3.592 18.889-2.581 28.452c1.011 9.563 3.89 18.83 8.472 27.269s10.776 15.884 18.227 21.907c7.504 6.644 16.292 11.655 25.813 14.72s19.567 4.116 29.511 3.088c9.943-1.028 19.568-4.113 28.27-9.061s16.294-11.653 22.298-19.693l350.315-437.885c10.668-13.059 16.499-29.439 16.499-46.344s-5.832-33.284-16.499-46.343l-362.644-437.888c-7.276-8.832-16.518-15.812-26.978-20.378s-21.84-6.579-33.221-5.897z" />
11
+ <glyph unicode="&#xe901;" glyph-name="arrow-jump-next" horiz-adv-x="1109" d="M669.791-63.727c-16.941-0.026-33.361 5.912-46.405 16.789-7.343 6.125-13.411 13.641-17.86 22.129s-7.189 17.778-8.065 27.333c-0.876 9.563 0.131 19.195 2.962 28.357s7.431 17.676 13.536 25.055l324.842 391.063-313.24 391.797c-6.023 7.463-10.521 16.050-13.235 25.269s-3.592 18.884-2.58 28.444c1.011 9.56 3.889 18.825 8.47 27.261s10.774 15.88 18.222 21.901c7.502 6.642 16.287 11.652 25.805 14.716s19.562 4.115 29.503 3.087c9.94-1.028 19.562-4.112 28.262-9.058s16.289-11.65 22.292-19.687l350.212-437.762c10.672-13.055 16.498-29.431 16.498-46.331s-5.826-33.275-16.498-46.33l-362.538-437.765c-7.274-8.83-16.513-15.808-26.97-20.372s-21.834-6.577-33.212-5.895zM72.627-63.727c-16.942-0.026-33.361 5.912-46.406 16.789-7.342 6.125-13.411 13.641-17.86 22.129s-7.189 17.778-8.065 27.333c-0.876 9.563 0.131 19.195 2.962 28.357s7.431 17.676 13.536 25.055l324.838 391.063-313.237 391.797c-6.023 7.463-10.521 16.050-13.235 25.269s-3.591 18.884-2.58 28.444c1.011 9.56 3.889 18.825 8.47 27.261s10.773 15.88 18.222 21.901c7.502 6.642 16.287 11.652 25.806 14.716s19.561 4.115 29.503 3.087c9.94-1.028 19.562-4.112 28.262-9.058s16.289-11.65 22.292-19.687l350.217-437.762c10.665-13.055 16.494-29.431 16.494-46.331s-5.83-33.275-16.494-46.33l-362.542-437.765c-7.274-8.83-16.513-15.808-26.97-20.372s-21.834-6.577-33.212-5.895z" />
12
+ <glyph unicode="&#xe902;" glyph-name="arrow-jump-back" horiz-adv-x="1109" d="M439.209-63.727c16.941-0.026 33.361 5.912 46.405 16.789 7.343 6.125 13.411 13.641 17.86 22.129s7.189 17.778 8.065 27.333c0.876 9.563-0.131 19.195-2.962 28.357s-7.431 17.676-13.536 25.055l-324.839 391.063 313.236 391.797c6.023 7.463 10.521 16.050 13.235 25.269s3.592 18.884 2.58 28.444c-1.011 9.56-3.889 18.825-8.47 27.261s-10.774 15.879-18.222 21.901c-7.502 6.642-16.287 11.652-25.805 14.716s-19.562 4.115-29.503 3.087c-9.94-1.028-19.562-4.112-28.262-9.058s-16.289-11.65-22.292-19.687l-350.215-437.762c-10.665-13.055-16.494-29.431-16.494-46.331s5.83-33.275 16.494-46.33l362.542-437.765c7.274-8.829 16.513-15.808 26.97-20.372s21.834-6.577 33.212-5.895zM1036.376-63.727c16.934-0.026 33.356 5.912 46.4 16.789 7.345 6.125 13.41 13.641 17.864 22.129 4.445 8.489 7.183 17.778 8.062 27.333 0.879 9.563-0.128 19.195-2.96 28.357s-7.431 17.676-13.538 25.055l-324.837 391.063 313.235 391.797c6.023 7.463 10.519 16.050 13.24 25.269 2.713 9.217 3.592 18.884 2.576 28.444-1.007 9.56-3.89 18.825-8.472 27.261s-10.775 15.879-18.222 21.901c-7.499 6.642-16.285 11.652-25.806 14.716-9.512 3.063-19.561 4.115-29.5 3.087s-19.561-4.112-28.263-9.058c-8.702-4.947-16.285-11.65-22.292-19.687l-350.215-437.762c-10.665-13.055-16.494-29.431-16.494-46.331s5.83-33.275 16.494-46.33l362.542-437.765c7.277-8.829 16.516-15.808 26.966-20.372 10.459-4.564 21.839-6.577 33.22-5.895z" />
13
+ <glyph unicode="&#xe903;" glyph-name="text" horiz-adv-x="4096" d="M1319.954 448.542c0 27.242 3.586 50.185 10.753 68.825 7.168 19.357 16.844 34.771 29.033 46.24 12.184 12.184 26.529 20.791 43.012 25.807 16.488 5.733 34.415 8.602 53.767 8.602 18.644 0 36.205-2.864 52.698-8.602 17.21-5.021 31.902-13.619 44.091-25.807 12.184-11.472 21.87-26.886 29.033-46.24 7.168-18.644 10.75-41.58 10.75-68.825 0-26.529-3.586-49.472-10.75-68.825-7.168-18.644-16.846-34.058-29.033-46.245s-26.886-21.148-44.091-26.886c-16.488-5.733-34.053-8.602-52.698-8.602-19.357 0-37.284 2.864-53.767 8.602-16.488 5.733-30.829 14.697-43.012 26.886s-21.87 27.598-29.033 46.245c-7.168 19.357-10.753 42.3-10.753 68.825zM1911.428 448.542c0 27.242 3.586 50.185 10.75 68.825 7.168 19.357 16.846 34.771 29.033 46.24 12.184 12.184 26.529 20.791 43.012 25.807 16.488 5.733 34.415 8.602 53.769 8.602 18.64 0 36.205-2.864 52.698-8.602 17.21-5.021 31.902-13.619 44.091-25.807 12.184-11.472 21.87-26.886 29.033-46.24 7.168-18.644 10.756-41.58 10.756-68.825 0-26.529-3.586-49.472-10.756-68.825-7.168-18.644-16.846-34.058-29.033-46.245s-26.886-21.148-44.091-26.886c-16.488-5.733-34.058-8.602-52.698-8.602-19.357 0-37.284 2.864-53.769 8.602-16.488 5.733-30.829 14.697-43.012 26.886s-21.87 27.598-29.033 46.245c-7.168 19.357-10.75 42.3-10.75 68.825zM2502.91 448.542c0 27.242 3.586 50.185 10.75 68.825 7.168 19.357 16.846 34.771 29.033 46.24 12.184 12.184 26.529 20.791 43.012 25.807 16.488 5.733 34.405 8.602 53.776 8.602 18.635 0 36.205-2.864 52.691-8.602 17.21-5.021 31.892-13.619 44.091-25.807 12.184-11.472 21.86-26.886 29.033-46.24 7.168-18.644 10.75-41.58 10.75-68.825 0-26.529-3.577-49.472-10.75-68.825-7.168-18.644-16.846-34.058-29.033-46.245-12.193-12.184-26.886-21.148-44.091-26.886-16.488-5.733-34.058-8.602-52.691-8.602-19.366 0-37.293 2.864-53.776 8.602-16.488 5.733-30.829 14.697-43.012 26.886s-21.87 27.598-29.033 46.245c-7.168 19.357-10.75 42.3-10.75 68.825z" />
14
+ <glyph unicode="&#xe904;" glyph-name="arrow-back" horiz-adv-x="512" d="M439.342-63.871c16.946-0.026 33.37 5.914 46.418 16.794 7.345 6.127 13.415 13.645 17.865 22.135s7.191 17.783 8.067 27.341c0.876 9.566-0.131 19.2-2.963 28.365s-7.433 17.681-13.54 25.062l-324.93 391.173 313.324 391.907c6.025 7.465 10.524 16.055 13.239 25.276s3.593 18.889 2.581 28.452c-1.011 9.563-3.89 18.83-8.472 27.269s-10.777 15.884-18.227 21.907c-7.504 6.644-16.292 11.655-25.812 14.72s-19.568 4.116-29.511 3.088c-9.943-1.028-19.568-4.113-28.27-9.061s-16.294-11.653-22.298-19.693l-350.314-437.885c-10.668-13.059-16.499-29.439-16.499-46.344s5.832-33.284 16.499-46.343l362.644-437.888c7.276-8.832 16.518-15.812 26.978-20.378s21.84-6.579 33.221-5.897z" />
15
+ <glyph unicode="&#xe905;" glyph-name="icon-arrow-top" horiz-adv-x="1707" d="M852.16 21.315c-28.44-0.056-56.001 9.867-77.899 28.044l-730.297 609.647c-24.857 20.697-40.488 50.436-43.455 82.676-2.967 32.242 6.972 64.344 27.631 89.243 20.661 24.901 50.348 40.559 82.533 43.531s64.231-6.984 89.088-27.681l652.4-546.243 652.4 526.735c12.449 10.127 26.776 17.692 42.151 22.256s31.506 6.038 47.455 4.338c15.948-1.7 31.397-6.539 45.48-14.242 14.071-7.702 26.484-18.115 36.53-30.64 11.144-12.537 19.594-27.245 24.8-43.202s7.072-32.821 5.475-49.532-6.633-32.913-14.765-47.587c-8.145-14.675-19.229-27.508-32.543-37.694l-730.302-588.919c-22.528-15.304-49.525-22.602-76.68-20.728z" />
16
+ <glyph unicode="&#xe906;" glyph-name="icon-arrow-bottom" horiz-adv-x="1707" d="M854.84 874.686c28.44 0.056 56.001-9.867 77.899-28.044l730.294-609.648c24.861-20.697 40.493-50.436 43.455-82.676 2.975-32.242-6.962-64.344-27.629-89.244-20.655-24.901-50.345-40.559-82.534-43.531-32.177-2.973-64.232 6.984-89.082 27.681l-652.404 546.244-652.401-526.736c-12.45-10.129-26.776-17.692-42.153-22.256s-31.504-6.038-47.453-4.339c-15.948 1.7-31.405 6.54-45.479 14.242-14.075 7.703-26.491 18.116-36.536 30.642-11.147 12.537-19.589 27.246-24.798 43.202-5.208 15.958-7.071 32.821-5.472 49.533s6.627 32.912 14.768 47.588c8.14 14.675 19.219 27.508 32.542 37.694l730.299 588.92c22.529 15.304 49.526 22.602 76.682 20.728z" />
17
+ <glyph unicode="&#xe907;" glyph-name="close" d="M595.597 450.819l414.718 414.718c9.324 10.883 14.194 24.882 13.642 39.2-0.558 14.318-6.491 27.899-16.623 38.031s-23.711 16.067-38.030 16.62c-14.319 0.553-28.319-4.317-39.202-13.637l-414.716-414.718-414.718 415.287c-10.883 9.32-24.881 14.19-39.199 13.637s-27.899-6.488-38.031-16.62c-10.132-10.132-16.067-23.713-16.62-38.031s4.317-28.316 13.637-39.2l414.718-415.287-415.287-414.72c-5.955-5.097-10.792-11.372-14.207-18.432s-5.334-14.746-5.636-22.579c-0.303-7.834 1.018-15.65 3.878-22.949s7.198-13.932 12.742-19.473c5.544-5.547 12.174-9.882 19.475-12.743s15.113-4.181 22.948-3.88c7.835 0.307 15.522 2.224 22.58 5.638s13.334 8.255 18.434 14.205l415.287 414.718 414.716-414.718c10.883-9.318 24.883-14.188 39.202-13.636 14.319 0.558 27.898 6.491 38.030 16.623s16.065 23.711 16.623 38.030c0.552 14.319-4.318 28.314-13.642 39.196l-414.718 414.72z" />
18
+ </font></defs></svg>
@@ -0,0 +1 @@
1
+ {"IcoMoonType":"selection","icons":[{"icon":{"paths":["M595.597 509.181l414.718-414.718c9.324-10.883 14.194-24.882 13.642-39.2-0.558-14.318-6.491-27.899-16.623-38.031s-23.711-16.067-38.030-16.62c-14.319-0.553-28.319 4.317-39.202 13.637l-414.716 414.718-414.718-415.287c-10.883-9.32-24.881-14.19-39.199-13.637s-27.899 6.488-38.031 16.62c-10.132 10.132-16.067 23.713-16.62 38.031s4.317 28.316 13.637 39.2l414.718 415.287-415.287 414.72c-5.955 5.097-10.792 11.372-14.207 18.432s-5.334 14.746-5.636 22.579c-0.303 7.834 1.018 15.65 3.878 22.949s7.198 13.932 12.742 19.473c5.544 5.547 12.174 9.882 19.475 12.743s15.113 4.181 22.948 3.88c7.835-0.307 15.522-2.224 22.58-5.638s13.334-8.255 18.434-14.205l415.287-414.718 414.716 414.718c10.883 9.318 24.883 14.188 39.202 13.636 14.319-0.558 27.898-6.491 38.030-16.623s16.065-23.711 16.623-38.030c0.552-14.319-4.318-28.314-13.642-39.196l-414.718-414.72z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":32,"tags":["close"]},"attrs":[{}],"properties":{"order":12,"id":7,"name":"close","prevSize":32,"code":59655},"setIdx":0,"setId":0,"iconIdx":0},{"icon":{"paths":["M852.16 938.685c-28.44 0.056-56.001-9.867-77.899-28.044l-730.297-609.647c-24.857-20.697-40.488-50.436-43.455-82.676-2.967-32.242 6.972-64.344 27.631-89.243 20.661-24.901 50.348-40.559 82.533-43.531s64.231 6.984 89.088 27.681l652.4 546.243 652.4-526.735c12.449-10.127 26.776-17.692 42.151-22.256s31.506-6.038 47.455-4.338c15.948 1.7 31.397 6.539 45.48 14.242 14.071 7.702 26.484 18.115 36.53 30.64 11.144 12.537 19.594 27.245 24.8 43.202s7.072 32.821 5.475 49.532-6.633 32.913-14.765 47.587c-8.145 14.675-19.229 27.508-32.543 37.694l-730.302 588.919c-22.528 15.304-49.525 22.602-76.68 20.728z"],"width":1707,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["icon-arrow-top"],"grid":32},"attrs":[{}],"properties":{"order":11,"id":0,"name":"icon-arrow-top","prevSize":32,"code":59653},"setIdx":0,"setId":0,"iconIdx":1},{"icon":{"paths":["M854.84 85.314c28.44-0.056 56.001 9.867 77.899 28.044l730.294 609.648c24.861 20.697 40.493 50.436 43.455 82.676 2.975 32.242-6.962 64.344-27.629 89.244-20.655 24.901-50.345 40.559-82.534 43.531-32.177 2.973-64.232-6.984-89.082-27.681l-652.404-546.244-652.401 526.736c-12.45 10.129-26.776 17.692-42.153 22.256s-31.504 6.038-47.453 4.339c-15.948-1.7-31.405-6.54-45.479-14.242-14.075-7.703-26.491-18.116-36.536-30.642-11.147-12.537-19.589-27.246-24.798-43.202-5.208-15.958-7.071-32.821-5.472-49.533s6.627-32.912 14.768-47.588c8.14-14.675 19.219-27.508 32.542-37.694l730.299-588.92c22.529-15.304 49.526-22.602 76.682-20.728z"],"width":1707,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["icon-arrow-bottom"],"grid":32},"attrs":[{}],"properties":{"order":10,"id":1,"name":"icon-arrow-bottom","prevSize":32,"code":59654},"setIdx":0,"setId":0,"iconIdx":2},{"icon":{"paths":["M72.658 1023.871c-16.947 0.026-33.37-5.914-46.419-16.794-7.344-6.127-13.415-13.645-17.865-22.135s-7.191-17.783-8.067-27.341c-0.876-9.566 0.131-19.2 2.963-28.365s7.433-17.681 13.54-25.062l324.929-391.173-313.325-391.907c-6.025-7.465-10.524-16.055-13.239-25.276s-3.592-18.889-2.581-28.452c1.011-9.563 3.89-18.83 8.472-27.269s10.776-15.884 18.227-21.907c7.504-6.644 16.292-11.655 25.813-14.72s19.567-4.116 29.511-3.088c9.943 1.028 19.568 4.113 28.27 9.061s16.294 11.653 22.298 19.693l350.315 437.885c10.668 13.059 16.499 29.439 16.499 46.344s-5.832 33.284-16.499 46.343l-362.644 437.888c-7.276 8.832-16.518 15.812-26.978 20.378s-21.84 6.579-33.221 5.897z"],"width":512,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow"],"grid":32},"attrs":[{}],"properties":{"order":3,"id":2,"name":"arrow","prevSize":32,"code":59648},"setIdx":0,"setId":0,"iconIdx":3},{"icon":{"paths":["M669.791 1023.727c-16.941 0.026-33.361-5.912-46.405-16.789-7.343-6.125-13.411-13.641-17.86-22.129s-7.189-17.778-8.065-27.333c-0.876-9.563 0.131-19.195 2.962-28.357s7.431-17.676 13.536-25.055l324.842-391.063-313.24-391.797c-6.023-7.463-10.521-16.050-13.235-25.269s-3.592-18.884-2.58-28.444c1.011-9.56 3.889-18.825 8.47-27.261s10.774-15.88 18.222-21.901c7.502-6.642 16.287-11.652 25.805-14.716s19.562-4.115 29.503-3.087c9.94 1.028 19.562 4.112 28.262 9.058s16.289 11.65 22.292 19.687l350.212 437.762c10.672 13.055 16.498 29.431 16.498 46.331s-5.826 33.275-16.498 46.33l-362.538 437.765c-7.274 8.83-16.513 15.808-26.97 20.372s-21.834 6.577-33.212 5.895z","M72.627 1023.727c-16.942 0.026-33.361-5.912-46.406-16.789-7.342-6.125-13.411-13.641-17.86-22.129s-7.189-17.778-8.065-27.333c-0.876-9.563 0.131-19.195 2.962-28.357s7.431-17.676 13.536-25.055l324.838-391.063-313.237-391.797c-6.023-7.463-10.521-16.050-13.235-25.269s-3.591-18.884-2.58-28.444c1.011-9.56 3.889-18.825 8.47-27.261s10.773-15.88 18.222-21.901c7.502-6.642 16.287-11.652 25.806-14.716s19.561-4.115 29.503-3.087c9.94 1.028 19.562 4.112 28.262 9.058s16.289 11.65 22.292 19.687l350.217 437.762c10.665 13.055 16.494 29.431 16.494 46.331s-5.83 33.275-16.494 46.33l-362.542 437.765c-7.274 8.83-16.513 15.808-26.97 20.372s-21.834 6.577-33.212 5.895z"],"width":1109,"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-jump-next"],"grid":32},"attrs":[{},{}],"properties":{"order":4,"id":3,"name":"arrow-jump-next","prevSize":32,"code":59649},"setIdx":0,"setId":0,"iconIdx":4},{"icon":{"paths":["M439.209 1023.727c16.941 0.026 33.361-5.912 46.405-16.789 7.343-6.125 13.411-13.641 17.86-22.129s7.189-17.778 8.065-27.333c0.876-9.563-0.131-19.195-2.962-28.357s-7.431-17.676-13.536-25.055l-324.839-391.063 313.236-391.797c6.023-7.463 10.521-16.050 13.235-25.269s3.592-18.884 2.58-28.444c-1.011-9.56-3.889-18.825-8.47-27.261s-10.774-15.879-18.222-21.901c-7.502-6.642-16.287-11.652-25.805-14.716s-19.562-4.115-29.503-3.087c-9.94 1.028-19.562 4.112-28.262 9.058s-16.289 11.65-22.292 19.687l-350.215 437.762c-10.665 13.055-16.494 29.431-16.494 46.331s5.83 33.275 16.494 46.33l362.542 437.765c7.274 8.829 16.513 15.808 26.97 20.372s21.834 6.577 33.212 5.895z","M1036.376 1023.727c16.934 0.026 33.356-5.912 46.4-16.789 7.345-6.125 13.41-13.641 17.864-22.129 4.445-8.489 7.183-17.778 8.062-27.333 0.879-9.563-0.128-19.195-2.96-28.357s-7.431-17.676-13.538-25.055l-324.837-391.063 313.235-391.797c6.023-7.463 10.519-16.050 13.24-25.269 2.713-9.217 3.592-18.884 2.576-28.444-1.007-9.56-3.89-18.825-8.472-27.261s-10.775-15.879-18.222-21.901c-7.499-6.642-16.285-11.652-25.806-14.716-9.512-3.063-19.561-4.115-29.5-3.087s-19.561 4.112-28.263 9.058c-8.702 4.947-16.285 11.65-22.292 19.687l-350.215 437.762c-10.665 13.055-16.494 29.431-16.494 46.331s5.83 33.275 16.494 46.33l362.542 437.765c7.277 8.829 16.516 15.808 26.966 20.372 10.459 4.564 21.839 6.577 33.22 5.895z"],"width":1109,"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-jump-back"],"grid":32},"attrs":[{},{}],"properties":{"order":5,"id":4,"name":"arrow-jump-back","prevSize":32,"code":59650},"setIdx":0,"setId":0,"iconIdx":5},{"icon":{"paths":["M1319.954 511.458c0-27.242 3.586-50.185 10.753-68.825 7.168-19.357 16.844-34.771 29.033-46.24 12.184-12.184 26.529-20.791 43.012-25.807 16.488-5.733 34.415-8.602 53.767-8.602 18.644 0 36.205 2.864 52.698 8.602 17.21 5.021 31.902 13.619 44.091 25.807 12.184 11.472 21.87 26.886 29.033 46.24 7.168 18.644 10.75 41.58 10.75 68.825 0 26.529-3.586 49.472-10.75 68.825-7.168 18.644-16.846 34.058-29.033 46.245s-26.886 21.148-44.091 26.886c-16.488 5.733-34.053 8.602-52.698 8.602-19.357 0-37.284-2.864-53.767-8.602-16.488-5.733-30.829-14.697-43.012-26.886s-21.87-27.598-29.033-46.245c-7.168-19.357-10.753-42.3-10.753-68.825zM1911.428 511.458c0-27.242 3.586-50.185 10.75-68.825 7.168-19.357 16.846-34.771 29.033-46.24 12.184-12.184 26.529-20.791 43.012-25.807 16.488-5.733 34.415-8.602 53.769-8.602 18.64 0 36.205 2.864 52.698 8.602 17.21 5.021 31.902 13.619 44.091 25.807 12.184 11.472 21.87 26.886 29.033 46.24 7.168 18.644 10.756 41.58 10.756 68.825 0 26.529-3.586 49.472-10.756 68.825-7.168 18.644-16.846 34.058-29.033 46.245s-26.886 21.148-44.091 26.886c-16.488 5.733-34.058 8.602-52.698 8.602-19.357 0-37.284-2.864-53.769-8.602-16.488-5.733-30.829-14.697-43.012-26.886s-21.87-27.598-29.033-46.245c-7.168-19.357-10.75-42.3-10.75-68.825zM2502.91 511.458c0-27.242 3.586-50.185 10.75-68.825 7.168-19.357 16.846-34.771 29.033-46.24 12.184-12.184 26.529-20.791 43.012-25.807 16.488-5.733 34.405-8.602 53.776-8.602 18.635 0 36.205 2.864 52.691 8.602 17.21 5.021 31.892 13.619 44.091 25.807 12.184 11.472 21.86 26.886 29.033 46.24 7.168 18.644 10.75 41.58 10.75 68.825 0 26.529-3.577 49.472-10.75 68.825-7.168 18.644-16.846 34.058-29.033 46.245-12.193 12.184-26.886 21.148-44.091 26.886-16.488 5.733-34.058 8.602-52.691 8.602-19.366 0-37.293-2.864-53.776-8.602-16.488-5.733-30.829-14.697-43.012-26.886s-21.87-27.598-29.033-46.245c-7.168-19.357-10.75-42.3-10.75-68.825z"],"width":4096,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["text"],"grid":32},"attrs":[{}],"properties":{"order":6,"id":5,"name":"text","prevSize":32,"code":59651},"setIdx":0,"setId":0,"iconIdx":6},{"icon":{"paths":["M439.342 1023.871c16.946 0.026 33.37-5.914 46.418-16.794 7.345-6.127 13.415-13.645 17.865-22.135s7.191-17.783 8.067-27.341c0.876-9.566-0.131-19.2-2.963-28.365s-7.433-17.681-13.54-25.062l-324.93-391.173 313.324-391.907c6.025-7.465 10.524-16.055 13.239-25.276s3.593-18.889 2.581-28.452c-1.011-9.563-3.89-18.83-8.472-27.269s-10.777-15.884-18.227-21.907c-7.504-6.644-16.292-11.655-25.812-14.72s-19.568-4.116-29.511-3.088c-9.943 1.028-19.568 4.113-28.27 9.061s-16.294 11.653-22.298 19.693l-350.314 437.885c-10.668 13.059-16.499 29.439-16.499 46.344s5.832 33.284 16.499 46.343l362.644 437.888c7.276 8.832 16.518 15.812 26.978 20.378s21.84 6.579 33.221 5.897z"],"width":512,"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-back"],"grid":32},"attrs":[{}],"properties":{"order":9,"id":6,"name":"arrow-back","prevSize":32,"code":59652},"setIdx":0,"setId":0,"iconIdx":7}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16,"showGrid":true}}
@@ -0,0 +1,51 @@
1
+ @font-face {
2
+ font-family: 'icomoon';
3
+ src: url('fonts/icomoon.eot?b29ky3');
4
+ src: url('fonts/icomoon.eot?b29ky3#iefix') format('embedded-opentype'),
5
+ url('fonts/icomoon.ttf?b29ky3') format('truetype'),
6
+ url('fonts/icomoon.woff?b29ky3') format('woff'),
7
+ url('fonts/icomoon.svg?b29ky3#icomoon') format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ font-display: block;
11
+ }
12
+
13
+ [class^="icon-"], [class*=" icon-"] {
14
+ /* use !important to prevent issues with browser extensions that change fonts */
15
+ font-family: 'icomoon' !important;
16
+ speak: never;
17
+ font-style: normal;
18
+ font-weight: normal;
19
+ font-variant: normal;
20
+ text-transform: none;
21
+ line-height: 1;
22
+
23
+ /* Better Font Rendering =========== */
24
+ -webkit-font-smoothing: antialiased;
25
+ -moz-osx-font-smoothing: grayscale;
26
+ }
27
+
28
+ .icon-close:before {
29
+ content: "\e907";
30
+ }
31
+ .icon-arrow-up:before {
32
+ content: "\e905";
33
+ }
34
+ .icon-arrow-down:before {
35
+ content: "\e906";
36
+ }
37
+ .icon-arrow:before {
38
+ content: "\e900";
39
+ }
40
+ .icon-arrow-jump-next:before {
41
+ content: "\e901";
42
+ }
43
+ .icon-arrow-jump-back:before {
44
+ content: "\e902";
45
+ }
46
+ .icon-text:before {
47
+ content: "\e903";
48
+ }
49
+ .icon-arrow-back:before {
50
+ content: "\e904";
51
+ }