-
Notifications
You must be signed in to change notification settings - Fork 0
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
219 changed files
with
113,651 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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,160 @@ | ||
/*! | ||
Animate.css - http://daneden.me/animate | ||
Licensed under the MIT license - http://opensource.org/licenses/MIT | ||
Copyright (c) 2014 Daniel Eden | ||
*/ | ||
|
||
@import url(animate.css); | ||
|
||
/* | ||
Theme Name: Worthy - Free Powerful Theme by HtmlCoder | ||
Author:HtmlCoder | ||
Author URI:http://www.htmlcoder.me | ||
Version:1.0.0 | ||
Created:November 2014 | ||
License: Creative Commons Attribution 3.0 License (https://creativecommons.org/licenses/by/3.0/) | ||
File Description: Custom Animations | ||
*/ | ||
|
||
/*Custom Animations*/ | ||
|
||
@-webkit-keyframes fadeInDownSmall { | ||
0% { | ||
opacity: 0; | ||
-webkit-transform: translate3d(0, -20px, 0); | ||
transform: translate3d(0, -20px, 0); | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
-webkit-transform: translate3d(0, 0, 0); | ||
transform: translate3d(0, 0, 0); | ||
} | ||
} | ||
|
||
@keyframes fadeInDownSmall { | ||
0% { | ||
opacity: 0; | ||
-webkit-transform: translate3d(0, -20px, 0); | ||
-ms-transform: translate3d(0, -20px, 0); | ||
transform: translate3d(0, -20px, 0); | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
-webkit-transform: translate3d(0, 0, 0); | ||
-ms-transform: translate3d(0, 0, 0); | ||
transform: translate3d(0, 0, 0); | ||
} | ||
} | ||
|
||
.fadeInDownSmall { | ||
-webkit-animation-name: fadeInDownSmall; | ||
animation-name: fadeInDownSmall; | ||
} | ||
|
||
@-webkit-keyframes fadeInLeftSmall { | ||
0% { | ||
opacity: 0; | ||
-webkit-transform: translate3d(-20px, 0, 0); | ||
transform: translate3d(-20px, 0, 0); | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
-webkit-transform: none; | ||
transform: none; | ||
} | ||
} | ||
|
||
@keyframes fadeInLeftSmall { | ||
0% { | ||
opacity: 0; | ||
-webkit-transform: translate3d(-20px, 0, 0); | ||
-ms-transform: translate3d(-20px, 0, 0); | ||
transform: translate3d(-20px, 0, 0); | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
-webkit-transform: none; | ||
-ms-transform: none; | ||
transform: none; | ||
} | ||
} | ||
|
||
.fadeInLeftSmall { | ||
-webkit-animation-name: fadeInLeftSmall; | ||
animation-name: fadeInLeftSmall; | ||
} | ||
|
||
@-webkit-keyframes fadeInRightSmall { | ||
0% { | ||
opacity: 0; | ||
-webkit-transform: translate3d(20px, 0, 0); | ||
transform: translate3d(20px, 0, 0); | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
-webkit-transform: none; | ||
transform: none; | ||
} | ||
} | ||
|
||
@keyframes fadeInRightSmall { | ||
0% { | ||
opacity: 0; | ||
-webkit-transform: translate3d(20px, 0, 0); | ||
-ms-transform: translate3d(20px, 0, 0); | ||
transform: translate3d(20px, 0, 0); | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
-webkit-transform: none; | ||
-ms-transform: none; | ||
transform: none; | ||
} | ||
} | ||
|
||
.fadeInRightSmall { | ||
-webkit-animation-name: fadeInRightSmall; | ||
animation-name: fadeInRightSmall; | ||
} | ||
|
||
@-webkit-keyframes fadeInUpSmall { | ||
0% { | ||
opacity: 0; | ||
-webkit-transform: translate3d(0, 20px, 0); | ||
transform: translate3d(0, 20px, 0); | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
-webkit-transform: none; | ||
transform: none; | ||
} | ||
} | ||
|
||
@keyframes fadeInUpSmall { | ||
0% { | ||
opacity: 0; | ||
-webkit-transform: translate3d(0, 20px, 0); | ||
-ms-transform: translate3d(0, 20px, 0); | ||
transform: translate3d(0, 20px, 0); | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
-webkit-transform: none; | ||
-ms-transform: none; | ||
transform: none; | ||
} | ||
} | ||
|
||
.fadeInUpSmall { | ||
-webkit-animation-name: fadeInUpSmall; | ||
animation-name: fadeInUpSmall; | ||
} |
Oops, something went wrong.