├── .github └── ISSUE_TEMPLATE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── EVA-icon.jpg └── EVA-icon.psd ├── css ├── eva-icon.css ├── eva-icon.scss └── variables.scss ├── demo-files ├── demo.css └── demo.js ├── fonts ├── eva-icon.eot ├── eva-icon.svg ├── eva-icon.ttf └── eva-icon.woff ├── index.html └── source └── EVA.json /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Check List 2 | 3 | Thanks for considering to open an issue. Before you submit your issue, please confirm these boxes are checked. 4 | 5 | - [ ] I have read the [README.md](https://github.com/moeoverflow/EVA-icon/blob/master/README.md), but there is no information I need. 6 | - [ ] I have searched in [existing issues](https://github.com/moeoverflow/EVA-icon/issues?utf8=%E2%9C%93&q=is%3Aissue), but did find a same one. 7 | 8 | ### Issue Description 9 | 10 | #### Description 11 | 12 | [Tell us about the issue] 13 | 14 | #### Reproduce 15 | 16 | [The steps to reproduce this issue. What are the parameters, where did you put your code, etc.] 17 | 18 | #### Other Comment 19 | 20 | [Add anything else here] 21 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at shincurryyang@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing Guidelines 2 | 3 | This document contains information and guidelines about contributing to this project. 4 | Please read it before you start participating. 5 | 6 | **Topics** 7 | 8 | * [Asking Questions](#asking-questions) 9 | * [Reporting Issues](#reporting-issues) 10 | * [Developers Certificate of Origin](#developers-certificate-of-origin) 11 | 12 | ## Asking Questions 13 | 14 | We don't use GitHub as a support forum. 15 | For any usage questions that are not specific to the project itself, 16 | please ask on [Stack Overflow](https://stackoverflow.com) instead. 17 | By doing so, you'll be more likely to quickly solve your problem, 18 | and you'll allow anyone else with the same question to find the answer. 19 | This also allows maintainers to focus on improving the project for others. 20 | 21 | ## Reporting Issues 22 | 23 | A great way to contribute to the project 24 | is to send a detailed issue when you encounter an problem. 25 | We always appreciate a well-written, thorough bug report. 26 | 27 | Check that the project issues database 28 | doesn't already include that problem or suggestion before submitting an issue. 29 | If you find a match, add a quick "+1" or "I have this problem too." 30 | Doing this helps prioritize the most common problems and requests. 31 | 32 | When reporting issues, please include the following: 33 | 34 | * The version of Xcode you're using 35 | * The version of iOS or macOS you're targeting 36 | * The full output of any stack trace or compiler error 37 | * A code snippet that reproduces the described behavior, if applicable 38 | * Any other details that would be useful in understanding the problem 39 | 40 | This information will help us review and fix your issue faster. 41 | 42 | ## Developer's Certificate of Origin 43 | 44 | By making a contribution to this project, I certify that: 45 | 46 | - (a) The contribution was created in whole or in part by me and I 47 | have the right to submit it under the open source license 48 | indicated in the file; or 49 | 50 | - (b) The contribution is based upon previous work that, to the best 51 | of my knowledge, is covered under an appropriate open source 52 | license and I have the right under that license to submit that 53 | work with modifications, whether created in whole or in part 54 | by me, under the same open source license (unless I am 55 | permitted to submit under a different license), as indicated 56 | in the file; or 57 | 58 | - (c) The contribution was provided directly to me by some other 59 | person who certified (a), (b) or (c) and I have not modified 60 | it. 61 | 62 | - (d) I understand and agree that this project and the contribution 63 | are public and that a record of the contribution (including all 64 | personal information I submit with it, including my sign-off) is 65 | maintained indefinitely and may be redistributed consistent with 66 | this project or the open source license(s) involved. 67 | 68 | --- 69 | 70 | *Some of the ideas and wording for the statements above were based on work by the [Alamofire](https://github.com/Alamofire/Alamofire/blob/master/CONTRIBUTING.md) communities. We commend them for their efforts to facilitate collaboration in their projects.* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) , (), 2 | with Reserved Font Name . 3 | Copyright (c) , (), 4 | with Reserved Font Name . 5 | Copyright (c) , (). 6 | 7 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 8 | This license is copied below, and is also available with a FAQ at: 9 | http://scripts.sil.org/OFL 10 | 11 | 12 | ----------------------------------------------------------- 13 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 14 | ----------------------------------------------------------- 15 | 16 | PREAMBLE 17 | The goals of the Open Font License (OFL) are to stimulate worldwide 18 | development of collaborative font projects, to support the font creation 19 | efforts of academic and linguistic communities, and to provide a free and 20 | open framework in which fonts may be shared and improved in partnership 21 | with others. 22 | 23 | The OFL allows the licensed fonts to be used, studied, modified and 24 | redistributed freely as long as they are not sold by themselves. The 25 | fonts, including any derivative works, can be bundled, embedded, 26 | redistributed and/or sold with any software provided that any reserved 27 | names are not used by derivative works. The fonts and derivatives, 28 | however, cannot be released under any other type of license. The 29 | requirement for fonts to remain under this license does not apply 30 | to any document created using the fonts or their derivatives. 31 | 32 | DEFINITIONS 33 | "Font Software" refers to the set of files released by the Copyright 34 | Holder(s) under this license and clearly marked as such. This may 35 | include source files, build scripts and documentation. 36 | 37 | "Reserved Font Name" refers to any names specified as such after the 38 | copyright statement(s). 39 | 40 | "Original Version" refers to the collection of Font Software components as 41 | distributed by the Copyright Holder(s). 42 | 43 | "Modified Version" refers to any derivative made by adding to, deleting, 44 | or substituting -- in part or in whole -- any of the components of the 45 | Original Version, by changing formats or by porting the Font Software to a 46 | new environment. 47 | 48 | "Author" refers to any designer, engineer, programmer, technical 49 | writer or other person who contributed to the Font Software. 50 | 51 | PERMISSION & CONDITIONS 52 | Permission is hereby granted, free of charge, to any person obtaining 53 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 54 | redistribute, and sell modified and unmodified copies of the Font 55 | Software, subject to the following conditions: 56 | 57 | 1) Neither the Font Software nor any of its individual components, 58 | in Original or Modified Versions, may be sold by itself. 59 | 60 | 2) Original or Modified Versions of the Font Software may be bundled, 61 | redistributed and/or sold with any software, provided that each copy 62 | contains the above copyright notice and this license. These can be 63 | included either as stand-alone text files, human-readable headers or 64 | in the appropriate machine-readable metadata fields within text or 65 | binary files as long as those fields can be easily viewed by the user. 66 | 67 | 3) No Modified Version of the Font Software may use the Reserved Font 68 | Name(s) unless explicit written permission is granted by the corresponding 69 | Copyright Holder. This restriction only applies to the primary font name as 70 | presented to the users. 71 | 72 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 73 | Software shall not be used to promote, endorse or advertise any 74 | Modified Version, except to acknowledge the contribution(s) of the 75 | Copyright Holder(s) and the Author(s) or with their explicit written 76 | permission. 77 | 78 | 5) The Font Software, modified or unmodified, in part or in whole, 79 | must be distributed entirely under this license, and must not be 80 | distributed under any other license. The requirement for fonts to 81 | remain under this license does not apply to any document created 82 | using the Font Software. 83 | 84 | TERMINATION 85 | This license becomes null and void if any of the above conditions are 86 | not met. 87 | 88 | DISCLAIMER 89 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 90 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 91 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 92 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 93 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 94 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 95 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 96 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 97 | OTHER DEALINGS IN THE FONT SOFTWARE. 98 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](https://raw.githubusercontent.com/moeoverflow/EVA-icon/master/assets/EVA-icon.jpg) 2 | 3 |

4 | 5 | 6 |

7 | 8 | EVA Shito web icon font. 9 | 10 | ## Usage 11 | 12 | See the demo page: [https://moeoverflow.github.io/EVA-icon/](https://moeoverflow.github.io/EVA-icon/). 13 | 14 | ## PS 15 | 16 | Font file generated by [IcoMoon.io](https://icomoon.io/app/). 17 | 18 | ## License 19 | 20 | This project is available under the SIL Open Font License. See the LICENSE file for more info. 21 | -------------------------------------------------------------------------------- /assets/EVA-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeoverflow/EVA-icon/eff96ebd0f944ce62835a457626f6ad6fc5f811d/assets/EVA-icon.jpg -------------------------------------------------------------------------------- /assets/EVA-icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeoverflow/EVA-icon/eff96ebd0f944ce62835a457626f6ad6fc5f811d/assets/EVA-icon.psd -------------------------------------------------------------------------------- /css/eva-icon.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'EVA-Icon'; 3 | src: url('../fonts/eva-icon.eot?zh8e8a'); 4 | src: url('../fonts/eva-icon.eot?zh8e8a#iefix') format('embedded-opentype'), 5 | url('../fonts/eva-icon.ttf?zh8e8a') format('truetype'), 6 | url('../fonts/eva-icon.woff?zh8e8a') format('woff'), 7 | url('../fonts/eva-icon.svg?zh8e8a#EVA-Icon') format('svg'); 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | 12 | [class^="icon-"], [class*=" icon-"] { 13 | /* use !important to prevent issues with browser extensions that change fonts */ 14 | font-family: 'EVA-Icon' !important; 15 | speak: none; 16 | font-style: normal; 17 | font-weight: normal; 18 | font-variant: normal; 19 | text-transform: none; 20 | line-height: 1; 21 | 22 | /* Better Font Rendering =========== */ 23 | -webkit-font-smoothing: antialiased; 24 | -moz-osx-font-smoothing: grayscale; 25 | } 26 | 27 | .icon-nerv:before { 28 | content: "\e90f"; 29 | } 30 | .icon-eva-00:before { 31 | content: "\e911"; 32 | } 33 | .icon-eva-01:before { 34 | content: "\e910"; 35 | } 36 | .icon-eva-02:before { 37 | content: "\e912"; 38 | } 39 | .icon-adam:before { 40 | content: "\e913"; 41 | } 42 | .icon-lilith:before { 43 | content: "\e914"; 44 | } 45 | .icon-sachiel:before { 46 | content: "\e90e"; 47 | } 48 | .icon-shamshel:before { 49 | content: "\e90d"; 50 | } 51 | .icon-ramiel:before { 52 | content: "\e90c"; 53 | } 54 | .icon-gaghiel:before { 55 | content: "\e902"; 56 | } 57 | .icon-israfel:before { 58 | content: "\e90b"; 59 | } 60 | .icon-sandalphon:before { 61 | content: "\e90a"; 62 | } 63 | .icon-matriel:before { 64 | content: "\e909"; 65 | } 66 | .icon-sahaquiel:before { 67 | content: "\e901"; 68 | } 69 | .icon-ireul:before { 70 | content: "\e908"; 71 | } 72 | .icon-leliel:before { 73 | content: "\e907"; 74 | } 75 | .icon-bardiel:before { 76 | content: "\e906"; 77 | } 78 | .icon-zeruel:before { 79 | content: "\e900"; 80 | } 81 | .icon-arael:before { 82 | content: "\e905"; 83 | } 84 | .icon-almisael:before { 85 | content: "\e904"; 86 | } 87 | .icon-tabris:before { 88 | content: "\e903"; 89 | } 90 | 91 | -------------------------------------------------------------------------------- /css/eva-icon.scss: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | 3 | @font-face { 4 | font-family: 'EVA-Icon'; 5 | src: url('#{$icomoon-font-path}/eva-icon.eot?zh8e8a'); 6 | src: url('#{$icomoon-font-path}/eva-icon.eot?zh8e8a#iefix') format('embedded-opentype'), 7 | url('#{$icomoon-font-path}/eva-icon.ttf?zh8e8a') format('truetype'), 8 | url('#{$icomoon-font-path}/eva-icon.woff?zh8e8a') format('woff'), 9 | url('#{$icomoon-font-path}/eva-icon.svg?zh8e8a#EVA-Icon') format('svg'); 10 | font-weight: normal; 11 | font-style: normal; 12 | } 13 | 14 | [class^="icon-"], [class*=" icon-"] { 15 | /* use !important to prevent issues with browser extensions that change fonts */ 16 | font-family: 'EVA-Icon' !important; 17 | speak: none; 18 | font-style: normal; 19 | font-weight: normal; 20 | font-variant: normal; 21 | text-transform: none; 22 | line-height: 1; 23 | 24 | /* Better Font Rendering =========== */ 25 | -webkit-font-smoothing: antialiased; 26 | -moz-osx-font-smoothing: grayscale; 27 | } 28 | 29 | .icon-nerv { 30 | &:before { 31 | content: $icon-nerv; 32 | } 33 | } 34 | .icon-eva-00 { 35 | &:before { 36 | content: $icon-eva-00; 37 | } 38 | } 39 | .icon-eva-01 { 40 | &:before { 41 | content: $icon-eva-01; 42 | } 43 | } 44 | .icon-eva-02 { 45 | &:before { 46 | content: $icon-eva-02; 47 | } 48 | } 49 | .icon-adam { 50 | &:before { 51 | content: $icon-adam; 52 | } 53 | } 54 | .icon-lilith { 55 | &:before { 56 | content: $icon-lilith; 57 | } 58 | } 59 | .icon-sachiel { 60 | &:before { 61 | content: $icon-sachiel; 62 | } 63 | } 64 | .icon-shamshel { 65 | &:before { 66 | content: $icon-shamshel; 67 | } 68 | } 69 | .icon-ramiel { 70 | &:before { 71 | content: $icon-ramiel; 72 | } 73 | } 74 | .icon-gaghiel { 75 | &:before { 76 | content: $icon-gaghiel; 77 | } 78 | } 79 | .icon-israfel { 80 | &:before { 81 | content: $icon-israfel; 82 | } 83 | } 84 | .icon-sandalphon { 85 | &:before { 86 | content: $icon-sandalphon; 87 | } 88 | } 89 | .icon-matriel { 90 | &:before { 91 | content: $icon-matriel; 92 | } 93 | } 94 | .icon-sahaquiel { 95 | &:before { 96 | content: $icon-sahaquiel; 97 | } 98 | } 99 | .icon-ireul { 100 | &:before { 101 | content: $icon-ireul; 102 | } 103 | } 104 | .icon-leliel { 105 | &:before { 106 | content: $icon-leliel; 107 | } 108 | } 109 | .icon-bardiel { 110 | &:before { 111 | content: $icon-bardiel; 112 | } 113 | } 114 | .icon-zeruel { 115 | &:before { 116 | content: $icon-zeruel; 117 | } 118 | } 119 | .icon-arael { 120 | &:before { 121 | content: $icon-arael; 122 | } 123 | } 124 | .icon-almisael { 125 | &:before { 126 | content: $icon-almisael; 127 | } 128 | } 129 | .icon-tabris { 130 | &:before { 131 | content: $icon-tabris; 132 | } 133 | } 134 | 135 | -------------------------------------------------------------------------------- /css/variables.scss: -------------------------------------------------------------------------------- 1 | $icomoon-font-path: "fonts" !default; 2 | 3 | $icon-nerv: "\e90f"; 4 | $icon-eva-00: "\e911"; 5 | $icon-eva-01: "\e910"; 6 | $icon-eva-02: "\e912"; 7 | $icon-adam: "\e913"; 8 | $icon-lilith: "\e914"; 9 | $icon-sachiel: "\e90e"; 10 | $icon-shamshel: "\e90d"; 11 | $icon-ramiel: "\e90c"; 12 | $icon-gaghiel: "\e902"; 13 | $icon-israfel: "\e90b"; 14 | $icon-sandalphon: "\e90a"; 15 | $icon-matriel: "\e909"; 16 | $icon-sahaquiel: "\e901"; 17 | $icon-ireul: "\e908"; 18 | $icon-leliel: "\e907"; 19 | $icon-bardiel: "\e906"; 20 | $icon-zeruel: "\e900"; 21 | $icon-arael: "\e905"; 22 | $icon-almisael: "\e904"; 23 | $icon-tabris: "\e903"; 24 | 25 | -------------------------------------------------------------------------------- /demo-files/demo.css: -------------------------------------------------------------------------------- 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: 64px; 151 | } 152 | 153 | -------------------------------------------------------------------------------- /demo-files/demo.js: -------------------------------------------------------------------------------- 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 | }()); 31 | -------------------------------------------------------------------------------- /fonts/eva-icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeoverflow/EVA-icon/eff96ebd0f944ce62835a457626f6ad6fc5f811d/fonts/eva-icon.eot -------------------------------------------------------------------------------- /fonts/eva-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeoverflow/EVA-icon/eff96ebd0f944ce62835a457626f6ad6fc5f811d/fonts/eva-icon.ttf -------------------------------------------------------------------------------- /fonts/eva-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeoverflow/EVA-icon/eff96ebd0f944ce62835a457626f6ad6fc5f811d/fonts/eva-icon.woff -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IcoMoon Demo 6 | 7 | 8 | 9 | 10 | 11 |
12 |

Font Name: EVA-Icon (Glyphs: 21)

13 |
14 |
15 |

Grid Size: 16

16 |
17 |
18 | 19 | 20 | 21 | icon-nerv 22 |
23 |
24 | 25 | 26 |
27 |
28 | liga: 29 | 30 |
31 |
32 |
33 |
34 | 35 | 36 | 37 | icon-eva-00 38 |
39 |
40 | 41 | 42 |
43 |
44 | liga: 45 | 46 |
47 |
48 |
49 |
50 | 51 | 52 | 53 | icon-eva-01 54 |
55 |
56 | 57 | 58 |
59 |
60 | liga: 61 | 62 |
63 |
64 |
65 |
66 | 67 | 68 | 69 | icon-eva-02 70 |
71 |
72 | 73 | 74 |
75 |
76 | liga: 77 | 78 |
79 |
80 |
81 |
82 | 83 | 84 | 85 | icon-adam 86 |
87 |
88 | 89 | 90 |
91 |
92 | liga: 93 | 94 |
95 |
96 |
97 |
98 | 99 | 100 | 101 | icon-lilith 102 |
103 |
104 | 105 | 106 |
107 |
108 | liga: 109 | 110 |
111 |
112 |
113 |
114 | 115 | 116 | 117 | icon-sachiel 118 |
119 |
120 | 121 | 122 |
123 |
124 | liga: 125 | 126 |
127 |
128 |
129 |
130 | 131 | 132 | 133 | icon-shamshel 134 |
135 |
136 | 137 | 138 |
139 |
140 | liga: 141 | 142 |
143 |
144 |
145 |
146 | 147 | 148 | 149 | icon-ramiel 150 |
151 |
152 | 153 | 154 |
155 |
156 | liga: 157 | 158 |
159 |
160 |
161 |
162 | 163 | 164 | 165 | icon-gaghiel 166 |
167 |
168 | 169 | 170 |
171 |
172 | liga: 173 | 174 |
175 |
176 |
177 |
178 | 179 | 180 | 181 | icon-israfel 182 |
183 |
184 | 185 | 186 |
187 |
188 | liga: 189 | 190 |
191 |
192 |
193 |
194 | 195 | 196 | 197 | icon-sandalphon 198 |
199 |
200 | 201 | 202 |
203 |
204 | liga: 205 | 206 |
207 |
208 |
209 |
210 | 211 | 212 | 213 | icon-matriel 214 |
215 |
216 | 217 | 218 |
219 |
220 | liga: 221 | 222 |
223 |
224 |
225 |
226 | 227 | 228 | 229 | icon-sahaquiel 230 |
231 |
232 | 233 | 234 |
235 |
236 | liga: 237 | 238 |
239 |
240 |
241 |
242 | 243 | 244 | 245 | icon-ireul 246 |
247 |
248 | 249 | 250 |
251 |
252 | liga: 253 | 254 |
255 |
256 |
257 |
258 | 259 | 260 | 261 | icon-leliel 262 |
263 |
264 | 265 | 266 |
267 |
268 | liga: 269 | 270 |
271 |
272 |
273 |
274 | 275 | 276 | 277 | icon-bardiel 278 |
279 |
280 | 281 | 282 |
283 |
284 | liga: 285 | 286 |
287 |
288 |
289 |
290 | 291 | 292 | 293 | icon-zeruel 294 |
295 |
296 | 297 | 298 |
299 |
300 | liga: 301 | 302 |
303 |
304 |
305 |
306 | 307 | 308 | 309 | icon-arael 310 |
311 |
312 | 313 | 314 |
315 |
316 | liga: 317 | 318 |
319 |
320 |
321 |
322 | 323 | 324 | 325 | icon-almisael 326 |
327 |
328 | 329 | 330 |
331 |
332 | liga: 333 | 334 |
335 |
336 |
337 |
338 | 339 | 340 | 341 | icon-tabris 342 |
343 |
344 | 345 | 346 |
347 |
348 | liga: 349 | 350 |
351 |
352 |
353 | 354 | 355 |
356 |

Font Test Drive

357 | 362 | 364 |
  365 |
366 |
367 | 368 |
369 |

Generated by IcoMoon

370 |
371 | 372 | 373 | 374 | 375 | --------------------------------------------------------------------------------