Skip to content

Commit

Permalink
Update docs and files to distribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis committed Sep 14, 2015
1 parent dfbc465 commit 924d83a
Show file tree
Hide file tree
Showing 185 changed files with 15,706 additions and 0 deletions.
17 changes: 17 additions & 0 deletions 2.1/bower.json
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"
]
}
76 changes: 76 additions & 0 deletions 2.1/css/animations.css
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;
}
Loading

0 comments on commit 924d83a

Please sign in to comment.