progress bar bootstrap border

Solutions on MaxInterview for progress bar bootstrap border by the best coders in the world

showing results for - "progress bar bootstrap border"
Marlene
08 Jan 2020
1.progress-bar{
2    border-top-right-radius: 40px !important;
3    border-bottom-right-radius: 40px !important;
4    -webkit-box-shadow: none !important;
5  	-moz-box-shadow: none !important;
6	  box-shadow: none !important;
7}
8
9.progress{
10    border-radius: 40px !important;
11    background-color: white !important;
12    
13    /* Changes below */
14    -webkit-box-shadow: inset 0 0 0 2px #337AB7 !important;
15	  -moz-box-shadow: inset 0 0 0 2px #337AB7 !important;
16	  box-shadow: inset 0 0 0 2px #337AB7 !important;
17    border: none;
18}