├── fonts ├── eva-icon.eot ├── eva-icon.ttf └── eva-icon.woff ├── assets ├── EVA-icon.jpg └── EVA-icon.psd ├── css ├── variables.scss ├── eva-icon.css └── eva-icon.scss ├── .github └── ISSUE_TEMPLATE.md ├── README.md ├── demo-files ├── demo.js └── demo.css ├── CONTRIBUTING.md ├── CODE_OF_CONDUCT.md ├── LICENSE └── index.html /fonts/eva-icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeoverflow/EVA-icon/HEAD/fonts/eva-icon.eot -------------------------------------------------------------------------------- /fonts/eva-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeoverflow/EVA-icon/HEAD/fonts/eva-icon.ttf -------------------------------------------------------------------------------- /assets/EVA-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeoverflow/EVA-icon/HEAD/assets/EVA-icon.jpg -------------------------------------------------------------------------------- /assets/EVA-icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeoverflow/EVA-icon/HEAD/assets/EVA-icon.psd -------------------------------------------------------------------------------- /fonts/eva-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeoverflow/EVA-icon/HEAD/fonts/eva-icon.woff -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |  2 | 3 |
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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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.* -------------------------------------------------------------------------------- /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/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c)Generated by IcoMoon
370 |