Skip to content

Commit

Permalink
Merge 3325593 into 851e645
Browse files Browse the repository at this point in the history
  • Loading branch information
ndimatteo committed Jul 7, 2016
2 parents 851e645 + 3325593 commit 4dc5667
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 22 deletions.
26 changes: 6 additions & 20 deletions example/css/taggle.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,28 +54,16 @@ p a:hover {
background: #990033;
color: #fff; }

@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0); }
40% {
-webkit-transform: translateY(-16px); }
60% {
-webkit-transform: translateY(-7px); } }

@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
transform: translateY(0); }
transform: translateY(0); }
40% {
-webkit-transform: translateY(-16px);
transform: translateY(-16px); }
transform: translateY(-16px); }
60% {
-webkit-transform: translateY(-7px);
transform: translateY(-7px); } }
transform: translateY(-7px); } }

.bounce {
-webkit-animation-name: bounce;
animation-name: bounce; }
animation-name: bounce; }

#forkongithub a {
background: #990033;
Expand Down Expand Up @@ -115,10 +103,8 @@ p a:hover {
position: relative;
cursor: pointer;
transition: all .3s;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both; }
animation-duration: 1s;
animation-fill-mode: both; }

.taggle_list .taggle_hot {
background: #cac8c4; }
Expand Down
2 changes: 1 addition & 1 deletion example/css/taggle.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4dc5667

Please sign in to comment.