afimb/chouette2

View on GitHub
app/assets/stylesheets/modules/progress_bars.scss

Summary

Maintainability
Test Coverage
.progress_bars{
  width: 50%;

  margin-bottom: 10px;
  
  .progress {    
    position: relative;
    height: 25px;

    .progress-type {
      position: absolute;
      left: 0px;
      font-weight: 800;
      width: 30%;
      padding: 3px 30px 2px 10px;
      color: rgb(255, 255, 255);
      background-color: rgba(25, 25, 25, 0.2);
    }

    .progress-completed {
      position: absolute;
      right: 0px;
      font-weight: 800;
      padding: 3px 10px 2px;
    }   
  }
}