Guest User

Untitled

a guest
Mar 23rd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <div class="box">
  2. <div class="box-line">
  3. <div class="box-line__progress box-line__progress_aqua"></div>
  4. </div>
  5. <div class="box-line">
  6. <div class="box-line__progress box-line__progress_lime"></div>
  7. </div>
  8. <div class="box-line">
  9. <div class="box-line__progress box-line__progress_tomato"></div>
  10. </div>
  11. </div>
  12.  
  13. .box{
  14. padding: 20px 40px;
  15. background: #eee;
  16. &-line{
  17. width: 350px;
  18. height: 5px;
  19. margin: 15px 0;
  20. background: #aeaeae;
  21. border-radius: 5px;
  22. position: relative;
  23. overflow: hidden;
  24. &__progress{
  25. position: absolute;
  26. top: 0;
  27. left: 0;
  28. height: 5px;
  29. border-radius: 5px;
  30. &_aqua{
  31. width: 75%;
  32. background: aqua;
  33. }
  34. &_lime{
  35. width: 50%;
  36. background: lime;
  37. }
  38. &_tomato{
  39. width: 80%;
  40. background: tomato;
  41. }
  42. }
  43. }
  44. }
Add Comment
Please, Sign In to add comment