progress bar style : demo 44

85%
75%
90%
60%

HTML

                        
85%
75%

CSS

                        .demo{
                            background: linear-gradient(to right, #322c35, #545454, #322c35);
                        }
                        .progress{
                            background: #262626;
                            border-radius: 20px;
                            height: 20px;
                            border-top: 1px solid #000;
                            box-shadow: 0 5px 4px -6px #aaa;
                            margin-top: 50px;
                            overflow: visible;
                        }
                        .progress .progress-bar{
                            border-radius: 20px;
                            position: relative;
                            animation: animate-positive 2s;
                        }
                        .progress .progress-bar:after{
                            content: "\f111";
                            font-family: "Font Awesome 5 Free";
                            font-weight: 900;
                            font-size: 10px;
                            color: rgba(0,0,0,0.4);
                            position: absolute;
                            top: -1px;
                            right: 10px;
                        }
                        .progress .progress-value{
                            display: block;
                            font-size: 13px;
                            color: #fff;
                            border-radius: 4px;
                            padding: 3px 8px;
                            background:#191919;
                            position: absolute;
                            top: -40px;
                            right: -27px;
                        }
                        .progress .progress-value:after{
                            content: "";
                            border-top: 5px solid #191919;
                            border-left: 5px solid #191919;
                            border-bottom: 5px solid transparent ;
                            border-right: 5px solid transparent;
                            position: absolute;
                            bottom: -6px;
                            left: 0;
                        }
                        @-webkit-keyframes animate-positive{
                            0% { width: 0%; }
                        }
                        @keyframes animate-positive{
                            0% { width: 0%; }
                        }
                    
License Terms