Skip to content

Commit 1134e40

Browse files
committed
Merge pull request #24 from janantala/canary
chore(demo): pulsate love heart
2 parents b4c3bf7 + 6a4a6f3 commit 1134e40

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,4 @@ The karma task will try to open Chrome as a browser in which to run the tests. M
103103

104104
The MIT License
105105

106-
Copyright (c) 2013 [Jan Antala](http://www.janantala.com)
106+
Copyright (c) 2014 [Jan Antala](http://www.janantala.com)

demo/index.html

+15-3
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,25 @@
100100
}
101101

102102
@-webkit-keyframes love {
103-
to {-webkit-transform: scale(1.2);}
103+
to {
104+
-webkit-transform: scale(1.4);
105+
transform: scale(1.4);
106+
}
104107
}
108+
105109
@-moz-keyframes love {
106-
to {-moz-transform: scale(1.2);}
110+
to {
111+
-moz-transform: scale(1.4);
112+
transform: scale(1.4);
113+
}
107114
}
115+
108116
@keyframes love {
109-
to {transform: scale(1.2);}
117+
to {
118+
-webkit-transform: scale(1.4);
119+
-moz-transform: scale(1.4);
120+
transform: scale(1.4);
121+
}
110122
}
111123

112124
.code {

0 commit comments

Comments
 (0)