From 8af74e190617e18ad6e73c5d7e0b744ad7d64f89 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 22 Oct 2022 16:51:45 +0200 Subject: [PATCH] Animate vote sentiment bar --- public/index.html | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index 0bf6e63..97ef8af 100644 --- a/public/index.html +++ b/public/index.html @@ -218,6 +218,14 @@ #votes > li { padding: 8px 0px; + -webkit-transition-property: width; + -moz-transition-property: width; + -o-transition-property: width; + transition-property: width; + -webkit-transition-timing-function: ease-in-out; + -moz-transition-timing-function: ease-in-out; + -o-transition-timing-function: ease-in-out; + transition-timing-function: ease-in-out; } #voteopts { @@ -323,6 +331,7 @@