forked from Augus/ngAnimate
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
827 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Font license info | ||
|
||
|
||
## Elusive | ||
|
||
Copyright (C) 2013 by Aristeides Stathopoulos | ||
|
||
Author: Aristeides Stathopoulos | ||
License: SIL (http://scripts.sil.org/OFL) | ||
Homepage: http://aristeides.com/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
This webfont is generated by http://fontello.com open source project. | ||
|
||
|
||
================================================================================ | ||
Please, note, that you should obey original font licences, used to make this | ||
webfont pack. Details available in LICENSE.txt file. | ||
|
||
- Usually, it's enough to publish content of LICENSE.txt file somewhere on your | ||
site in "About" section. | ||
|
||
- If your project is open-source, usually, it will be ok to make LICENSE.txt | ||
file publically available in your repository. | ||
|
||
- Fonts, used in Fontello, don't require to make clickable links on your site. | ||
But any kind of additional authors crediting is welcome. | ||
================================================================================ | ||
|
||
|
||
Comments on archive content | ||
--------------------------- | ||
|
||
- /font/* - fonts in different formats | ||
|
||
- /css/* - different kinds of css, for all situations. Should be ok with | ||
twitter bootstrap. Also, you can skip <i> style and assign icon classes | ||
directly to text elements, if you don't mind about IE7. | ||
|
||
- demo.html - demo file, to show your webfont content | ||
|
||
- LICENSE.txt - license info about source fonts, used to build your one. | ||
|
||
- config.json - keeps your settings. You can import it back to fontello anytime, | ||
to continue your work | ||
|
||
|
||
Why so many CSS files ? | ||
----------------------- | ||
|
||
Because we like to fit all your needs :) | ||
|
||
- basic file, <your_font_name>.css - is usually enougth, in contains @font-face | ||
and character codes definition | ||
|
||
- *-ie7.css - if you need IE7 support, but still don't wish to put char codes | ||
directly into html | ||
|
||
- *-codes.css and *-ie7-codes.css - if you like to use your own @font-face | ||
rules, but still wish to benefit of css generation. That can be very | ||
convenient for automated assets build systems. When you need to update font - | ||
no needs to manually edit files, just override old version with archive | ||
content. See fontello source codes for example. | ||
|
||
- *-embedded.css - basic css file, but with embedded WOFF font, to avoid | ||
CORS issues in Firefox and IE9+, when fonts are hosted on the separate domain. | ||
We strongly recommend to resolve this issue by `Access-Control-Allow-Origin` | ||
server headers. But if you ok with dirty hack - this file is for you. Note, | ||
that data url moved to separate @font-face to avoid problems with <IE9, when | ||
string is too long. | ||
|
||
- animate.css - use it to get ideas about spinner rotation animation. | ||
|
||
|
||
Attention for server setup | ||
-------------------------- | ||
|
||
You MUST setup server to reply with proper `mime-types` for font files. In other | ||
case, some browsers will fail to show fonts. | ||
|
||
Usually, `apache` already has necessary settings, but `nginx` and other | ||
webservers should be tuned. Here is list of mime types for our file extentions: | ||
|
||
- `application/vnd.ms-fontobject` - eot | ||
- `application/x-font-woff` - woff | ||
- `application/x-font-ttf` - ttf | ||
- `image/svg+xml` - svg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"name": "", | ||
"css_prefix_text": "icon-", | ||
"css_use_suffix": false, | ||
"hinting": true, | ||
"units_per_em": 1000, | ||
"ascent": 850, | ||
"glyphs": [ | ||
{ | ||
"uid": "76f961b11f65300838a5a78856aca30f", | ||
"css": "th-large", | ||
"code": 59392, | ||
"src": "elusive" | ||
}, | ||
{ | ||
"uid": "50e664a6f12199784c02600b2ccfd60a", | ||
"css": "th-list", | ||
"code": 59393, | ||
"src": "elusive" | ||
}, | ||
{ | ||
"uid": "3ab2abf6f936d3e53ee8c184cedaed82", | ||
"css": "trash", | ||
"code": 59395, | ||
"src": "elusive" | ||
}, | ||
{ | ||
"uid": "7acc2dfe18c6f4548626696fab27ba8a", | ||
"css": "play-circled2", | ||
"code": 59394, | ||
"src": "elusive" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
/* | ||
Animation example, for spinners | ||
*/ | ||
.animate-spin { | ||
-moz-animation: spin 2s infinite linear; | ||
-o-animation: spin 2s infinite linear; | ||
-webkit-animation: spin 2s infinite linear; | ||
animation: spin 2s infinite linear; | ||
display: inline-block; | ||
} | ||
@-moz-keyframes spin { | ||
0% { | ||
-moz-transform: rotate(0deg); | ||
-o-transform: rotate(0deg); | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
-moz-transform: rotate(359deg); | ||
-o-transform: rotate(359deg); | ||
-webkit-transform: rotate(359deg); | ||
transform: rotate(359deg); | ||
} | ||
} | ||
@-webkit-keyframes spin { | ||
0% { | ||
-moz-transform: rotate(0deg); | ||
-o-transform: rotate(0deg); | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
-moz-transform: rotate(359deg); | ||
-o-transform: rotate(359deg); | ||
-webkit-transform: rotate(359deg); | ||
transform: rotate(359deg); | ||
} | ||
} | ||
@-o-keyframes spin { | ||
0% { | ||
-moz-transform: rotate(0deg); | ||
-o-transform: rotate(0deg); | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
-moz-transform: rotate(359deg); | ||
-o-transform: rotate(359deg); | ||
-webkit-transform: rotate(359deg); | ||
transform: rotate(359deg); | ||
} | ||
} | ||
@-ms-keyframes spin { | ||
0% { | ||
-moz-transform: rotate(0deg); | ||
-o-transform: rotate(0deg); | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
-moz-transform: rotate(359deg); | ||
-o-transform: rotate(359deg); | ||
-webkit-transform: rotate(359deg); | ||
transform: rotate(359deg); | ||
} | ||
} | ||
@keyframes spin { | ||
0% { | ||
-moz-transform: rotate(0deg); | ||
-o-transform: rotate(0deg); | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
-moz-transform: rotate(359deg); | ||
-o-transform: rotate(359deg); | ||
-webkit-transform: rotate(359deg); | ||
transform: rotate(359deg); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
.icon-th-large:before { content: '\e800'; } /* '' */ | ||
.icon-th-list:before { content: '\e801'; } /* '' */ | ||
.icon-trash:before { content: '\e803'; } /* '' */ | ||
.icon-play-circled2:before { content: '\e802'; } /* '' */ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
.icon-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-play-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[class^="icon-"], [class*=" icon-"] { | ||
font-family: 'fontello'; | ||
font-style: normal; | ||
font-weight: normal; | ||
|
||
/* fix buttons height */ | ||
line-height: 1em; | ||
|
||
/* you can be more comfortable with increased icons size */ | ||
/* font-size: 120%; */ | ||
} | ||
|
||
.icon-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-play-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } |
Oops, something went wrong.