From: opi <opi@no-log.org>
Date: Wed, 27 May 2015 12:56:23 +0000 (+0200)
Subject: Ajout d'une animation sur la barre de progression. inutile.
X-Git-Url: https://nos-oignons.net/gitweb/website.git/commitdiff_plain/7f8f5dcc0a3f6b00b1aa35a496be65c3dfd6d9df?ds=inline;hp=06ac9fb0417a9088015a2630fc7f46e00755687a

Ajout d'une animation sur la barre de progression. inutile.
---

diff --git a/local.css b/local.css
index 6cd635a..e6349f7 100644
--- a/local.css
+++ b/local.css
@@ -393,7 +393,17 @@ thead td {
   .progress-bar-wrapper .progress-bar {
     height: 85px;
     background: grey url(assets/progress_bar.png) bottom left repeat-x;
+    /* animate progress bar */
+    -webkit-animation: progress-bar 1.5s;
+    -moz-animation: progress-bar 1.5s;
+    animation: progress-bar 1.5s;
   }
+
+  /* progress bar animation*/
+  @-webkit-keyframes progress-bar { 0% { width: 0; } }
+  @-moz-keyframes progress-bar { 0% { width: 0; } }
+  keyframes progress-bar { 0% { width: 0; } }
+
   .progress-bar-wrapper:after {
     content: " ";
     display: block;