src/Modules/Package/Templates/Package/partials/orderSteps.html.twig line 1

  1. <style>
  2.     #progressbar {
  3.         padding-left:0 !important;
  4.         position:relative;
  5.         display:flex;
  6.         height:30px;
  7.         list-style-type:none;
  8.         margin-bottom:4rem
  9.     }
  10.     #progressbar li {
  11.         position:relative;
  12.         text-align:center;
  13.     }
  14.     #progressbar li small, #progressbar li b {color:#fff;}
  15.     #progressbar li:after {
  16.         content: "";
  17.         width: 100%;
  18.         height: 6px;
  19.         background: #eaf0f4;
  20.         position: absolute;
  21.         left: 0%;
  22.         top: 12px;
  23.         z-index: -1;
  24.     }
  25.     #progressbar li:before {
  26.         content: "✓";
  27.         font-size:14px;
  28.         width: 30px;
  29.         height: 30px;
  30.         line-height: 30px;
  31.         display: block;
  32.         background: #eaf0f4;
  33.         border-radius: 50%;
  34.         margin: 0 auto 10px auto;
  35.     }
  36.     #progressbar li.active:before,   #progressbar li.active:after {
  37.         background: #00f5ff;
  38.         color: #04359a;
  39.     }
  40.     #progressbar li.active {
  41.         color: #00f5ff;
  42.     }
  43. </style>
  44. <ul id="progressbar" class="row g-0 w-100 justify-content-center">
  45.     <li class="col text-uppercase active">
  46.         <b>ETAP 1</b><br />
  47.         <small>wybór pakietu</small>
  48.     </li>
  49.     <li class="col text-uppercase {{ step >= 2 ? 'active' : '' }}">
  50.         <b>ETAP 2</b><br />
  51.         <small>podsumowanie</small>
  52.     </li>
  53.     <li class="col text-uppercase {{ step >= 3 ? 'active' : '' }}">
  54.         <b>ETAP 3</b><br />
  55.         <small>płatność</small>
  56.     </li>
  57.     <li class="col text-uppercase {{ step == 4 ? 'active' : '' }}">
  58.         <b>ETAP 4</b><br />
  59.         <small>odbiór pakietu</small>
  60.     </li>
  61. </ul>