-
Notifications
You must be signed in to change notification settings - Fork 25
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
Travis
committed
Oct 31, 2016
1 parent
b213f15
commit 4c71a6c
Showing
193 changed files
with
16,019 additions
and
11 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,17 @@ | ||
{ | ||
"name": "familysearch-javascript-sdk", | ||
"homepage": "https://github.com/rootsdev/familysearch-javascript-sdk", | ||
"description": "Javascript SDK for FamilySearch REST API", | ||
"main": "./familysearch-javascript-sdk.min.js", | ||
"license": "MIT", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"test", | ||
"css", | ||
"font", | ||
"js", | ||
"partials", | ||
"index.html" | ||
] | ||
} |
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,76 @@ | ||
.reveal { | ||
-webkit-transition:1s linear all; | ||
-moz-transition:1s linear all; | ||
-o-transition:1s linear all; | ||
transition:1s linear all; | ||
|
||
opacity:0; | ||
} | ||
.reveal.reveal-active { | ||
opacity:1; | ||
} | ||
|
||
.slide-reveal { | ||
-webkit-transition:0.5s linear all; | ||
-moz-transition:0.5s linear all; | ||
-o-transition:0.5s linear all; | ||
transition:0.5s linear all; | ||
opacity:0.5; | ||
|
||
position:relative; | ||
opacity:0; | ||
top:10px; | ||
} | ||
.slide-reveal.slide-reveal-active { | ||
top:0; | ||
opacity:1; | ||
} | ||
|
||
.expand-enter { | ||
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
|
||
opacity:0; | ||
max-height:0; | ||
overflow:hidden; | ||
} | ||
.expand-enter.expand-enter-active { | ||
opacity:1; | ||
max-height:40px; | ||
} | ||
|
||
.expand-leave { | ||
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
|
||
opacity:1; | ||
max-height:40px; | ||
overflow:hidden; | ||
} | ||
.expand-leave.expand-leave-active { | ||
opacity:0; | ||
max-height:0; | ||
} | ||
|
||
.example-animate-container { | ||
position:relative; | ||
background:white; | ||
border:1px solid black; | ||
height:40px; | ||
overflow:hidden; | ||
} | ||
|
||
.example-animate-container > div { | ||
padding:1em; | ||
} | ||
|
||
.animator-container.animations-off * { | ||
-webkit-transition: none; | ||
-moz-transition: none; | ||
-o-transition: color 0 ease-in; /* opera is special :) */ | ||
transition: none; | ||
} |
Oops, something went wrong.