diff --git a/install-script.yaml b/install-script.yaml index 387ef3ad..a4611608 100644 --- a/install-script.yaml +++ b/install-script.yaml @@ -12,30 +12,55 @@ inputs: touch /var/www/example.com/logs/access.log /var/www/example.com/logs/error.log cat < /var/www/example.com/public_html/index.html -
- Cloudify Hello World -
- + /* Safari 4.0 - 8.0 */ + @-webkit-keyframes flying { + 0% {background-position: center 200%} + 50% {background-position: center 150%} + 100% {background-position: center 200%} + } + + /* Standard syntax */ + @keyframes flying { + 0% {background-position: center 200%} + 50% {background-position: center 150%} + 100% {background-position: center 200%} + } + + /* Safari 4.0 - 8.0 */ + @-webkit-keyframes velocity { + 0% {background-position: center bottom} + 50% {background-position: center center} + 100% {background-position: center top} + } + + @keyframes velocity { + 0% {background-position: center bottom} + 50% {background-position: center center} + 100% {background-position: center top} + } + -

Hello, World!

- +

Hello World!


You deployed your first Cloudify blueprint. Well done! +

EOF