-
Notifications
You must be signed in to change notification settings - Fork 14
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
22 changed files
with
365 additions
and
73 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,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,6 @@ | ||
|
||
.icon-pencil:before { content: '\e800'; } /* '' */ | ||
.icon-calendar:before { content: '\e801'; } /* '' */ | ||
.icon-tag:before { content: '\e802'; } /* '' */ | ||
.icon-tags:before { content: '\e803'; } /* '' */ | ||
.icon-globe:before { content: '\e804'; } /* '' */ |
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,6 @@ | ||
|
||
.icon-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-globe { *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,17 @@ | ||
[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-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } | ||
.icon-globe { *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,61 @@ | ||
@font-face { | ||
font-family: 'fontello'; | ||
src: url('../font/fontello.eot?61322975'); | ||
src: url('../font/fontello.eot?61322975#iefix') format('embedded-opentype'), | ||
url('../font/fontello.woff?61322975') format('woff'), | ||
url('../font/fontello.ttf?61322975') format('truetype'), | ||
url('../font/fontello.svg?61322975#fontello') format('svg'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ | ||
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ | ||
/* | ||
@media screen and (-webkit-min-device-pixel-ratio:0) { | ||
@font-face { | ||
font-family: 'fontello'; | ||
src: url('../font/fontello.svg?61322975#fontello') format('svg'); | ||
} | ||
} | ||
*/ | ||
|
||
[class^="icon-"]:before, [class*=" icon-"]:before { | ||
font-family: "fontello"; | ||
font-style: normal; | ||
font-weight: normal; | ||
speak: none; | ||
|
||
display: inline-block; | ||
text-decoration: inherit; | ||
width: 1em; | ||
margin-right: .2em; | ||
text-align: center; | ||
/* opacity: .8; */ | ||
|
||
/* For safety - reset parent styles, that can break glyph codes*/ | ||
font-variant: normal; | ||
text-transform: none; | ||
|
||
/* fix buttons height, for twitter bootstrap */ | ||
line-height: 1em; | ||
|
||
/* Animation center compensation - margins should be symmetric */ | ||
/* remove if not needed */ | ||
margin-left: .2em; | ||
|
||
/* you can be more comfortable with increased icons size */ | ||
/* font-size: 120%; */ | ||
|
||
/* Font smoothing. That was taken from TWBS */ | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
|
||
/* Uncomment for 3D effect */ | ||
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ | ||
} | ||
|
||
.icon-pencil:before { content: '\e800'; } /* '' */ | ||
.icon-calendar:before { content: '\e801'; } /* '' */ | ||
.icon-tag:before { content: '\e802'; } /* '' */ | ||
.icon-tags:before { content: '\e803'; } /* '' */ | ||
.icon-globe:before { content: '\e804'; } /* '' */ |
Binary file not shown.
Oops, something went wrong.