github.com/resonatecoop/id@v1.1.0-43/frontend/src/components/progress-bar/index.css (about) 1 /** 2 * Progress bars 3 */ 4 5 .progressBar, .progressBar__fill { 6 display: block; 7 } 8 9 .progressBar { 10 position: absolute; 11 background-color: transparent; 12 } 13 14 .progressBar__horizontal { 15 height: 6px; 16 width: 100%; 17 } 18 19 .progressBar__fill { 20 position: absolute; 21 } 22 23 .progressBar__background__horizontal { 24 background-color: var(--gray); 25 height: 100%; 26 top: 0; 27 left: 0; 28 z-index: -1; 29 } 30 31 .progressBar__fill__horizontal { 32 background-color: var(--near-black); 33 height: 100%; 34 top: 0; 35 left: 0; 36 } 37 38 .progressBar__data .progressBar__fill__horizontal { 39 background-color: #9DFDA6; 40 } 41 42 .progressBar__handle { 43 opacity: 0; 44 visibility: hidden; 45 cursor: pointer; 46 display: none; 47 width: 0; 48 height: 0; 49 position: absolute; 50 }