From 8772e1aee9f1be0b72ca06f4bb0c2ccc5e26462b Mon Sep 17 00:00:00 2001 From: Gabriele Cirulli Date: Fri, 14 Mar 2014 11:47:54 +0100 Subject: [PATCH] fix fill mode helper --- style/helpers.scss | 2 +- style/main.css | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/style/helpers.scss b/style/helpers.scss index 4e6dfa6..53b9dc1 100644 --- a/style/helpers.scss +++ b/style/helpers.scss @@ -42,7 +42,7 @@ @mixin animation-fill-mode($args...) { -webkit-animation-fill-mode: $args; -moz-animation-fill-mode: $args; - animation: $args; + animation-fill-mode: $args; } @mixin transform($args...) { diff --git a/style/main.css b/style/main.css index 7bb376a..1c1d06c 100644 --- a/style/main.css +++ b/style/main.css @@ -90,7 +90,7 @@ h1.title { animation: move-up 600ms ease-in; -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; - animation: both; } + animation-fill-mode: both; } .score-container:after { content: "Score"; } @@ -173,7 +173,7 @@ hr { animation: fade-in 800ms ease 1200ms; -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; - animation: both; } + animation-fill-mode: both; } .game-container .game-message p { font-size: 60px; font-weight: bold; @@ -414,7 +414,7 @@ hr { animation: appear 200ms ease 100ms; -webkit-animation-fill-mode: backwards; -moz-animation-fill-mode: backwards; - animation: backwards; } + animation-fill-mode: backwards; } @-webkit-keyframes pop { 0% { @@ -471,7 +471,7 @@ hr { animation: pop 200ms ease 100ms; -webkit-animation-fill-mode: backwards; -moz-animation-fill-mode: backwards; - animation: backwards; } + animation-fill-mode: backwards; } .game-intro { margin-bottom: 0; } @@ -533,7 +533,7 @@ hr { animation: fade-in 800ms ease 1200ms; -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; - animation: both; } + animation-fill-mode: both; } .game-container .game-message p { font-size: 60px; font-weight: bold; -- GitLab