Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <div class="stepper-wrapper">
  2. <ul class="step-wrapper" >
  3. <li class="step__bubble"></li>
  4. <li class="step__circle"></li>
  5. </ul>
  6. <ul class="step-wrapper" >
  7. <li class="step__bubble"></li>
  8. <li class="step__circle"></li>
  9. </ul>
  10. </div>
  11.  
  12. .stepper-wrapper {
  13. display: flex;
  14. flex-direction: row;
  15. }
  16. ul {
  17. border: 1px solid grey;
  18. height: 0px;
  19. position: relative;
  20. top: 40%;
  21. min-width: 100px;
  22. flex: 1;
  23. li.step__bubble {
  24. display: inline-block;
  25. vertical-align: middle;
  26. }
  27. li.step__bubble::before {
  28. content: "";
  29. position: absolute;
  30. top: -9px;
  31. left: calc(50%);
  32. display: block;
  33. width: 16px;
  34. height: 16px;
  35. border: 2px solid grey;
  36. border-radius: 50%;
  37. background: white;
  38. }
  39. li.step__circle {
  40. width: 8px;
  41. height: 8px;
  42. border: 1px solid red;
  43. border-radius: 50%;
  44. display: block;
  45. position: absolute;
  46. top: -4px;
  47. left: calc(50% + 1px);
  48. }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement