progress bar style : demo 69

HTML5

90%

CSS3

50%

J-Query

80%

Bootstrap

65%

HTML

                        

HTML5

90%

CSS3

50%

CSS

                        .progress{
                            height: 20px;
                            background: #fff;
                            border-radius: 15px 0 0 15px;
                            box-shadow: none;
                            margin: 20px 50px 40px 100px;
                            overflow: visible;
                            position: relative;
                        }
                        .progress .progress-title{
                            display: block;
                            font-size: 18px;
                            font-weight: 700;
                            color: #205580;
                            position: absolute;
                            bottom: -3px;
                            left: -90px;
                        }
                        .progress .progress-bar{
                            background: #fff;
                            box-shadow: none;
                            border-radius: 15px 0 0 15px;
                            position: relative;
                            -webkit-animation: animate-positive 2s;
                            animation: animate-positive 2s;
                        }
                        .progress .progress-bar:before{
                            content: "";
                            border-top: 20px solid transparent;
                            border-bottom: 20px solid transparent;
                            position: absolute;
                            top: -10px;
                            right: -20px;
                        }
                        .progress .progress-value{
                            display: block;
                            font-size: 18px;
                            font-weight: 700;
                            color: #205580;
                            position: absolute;
                            bottom: -5px;
                            right: -50px;
                        }
                        .progress.pink .progress-bar:before{ border-left: 20px solid #ff4a98; }
                        .progress.blue .progress-bar:before{ border-left: 20px solid #2c5af9; }
                        .progress.green .progress-bar:before{ border-left: 20px solid #7cf210; }
                        .progress.orange .progress-bar:before{ border-left: 20px solid #ff5f25; }
                        @-webkit-keyframes animate-positive{
                            0% { width: 0; }
                        }
                        @keyframes animate-positive{
                            0% { width: 0; }
                        }
                    
License Terms