aperta-principium/Interclip

View on GitHub
scss/_progressbar.scss

Summary

Maintainability
Test Coverage
progress {
  /* Reset the default appearance */
  appearance: none;
  width: 250px;
  height: 20px;
  z-index: 1;
}

progress[value]::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

progress[value]::-webkit-progress-value,
progress[value]::-moz-progress-bar {
  background: #489afb;
  border-radius: 2px;
  background-size: 35px 20px, 100% 100%, 100% 100%;
}