Progress bar feedback

Get the code
20%

import Css
import Html.Styled as Html exposing (Html)
import Html.Styled.Attributes as Html


progressBar : Html msg
progressBar =
    Html.div
        [ Html.css
            [ Css.backgroundColor Colors.greyLighter
            , Css.borderRadius <| Css.px 9999
            ]
        ]
        [ Html.div
            [ Html.css
                [ Css.displayFlex
                , Css.alignItems Css.center
                , Css.justifyContent Css.center
                , Css.backgroundColor <| Css.hex "8fbcbb"
                , Css.color Colors.white
                , Css.borderRadius <| Css.px 9999
                , Css.overflow Css.hidden
                , Css.width <| Css.pct 50
                ]
            ]
            [ Html.text "50%" ]
        ]