src/Flexy/FrontBundle/Themes/IlaveU/templates/_head.html.twig line 1

  1.    
  2.    {{ encore_entry_link_tags('frontend') }}
  3.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
  4.      
  5.     <link rel="stylesheet" href="{{asset('themes/ilaveu/laundry/css/style.css')}}" />
  6.     <link rel="preconnect" href="https://fonts.googleapis.com">
  7. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  8. <link href="https://fonts.googleapis.com/css2?family=Lato:wght@100;400;900&display=swap" rel="stylesheet">
  9.   <link
  10.     rel="stylesheet"
  11.     href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
  12.   />
  13. <style>
  14. .turbo-progress-bar {
  15.   height: 6px;
  16.   background-color: #45dae9;
  17. }
  18. .sticky-cart .li-product-price,.sticky-cart label{
  19.   display:none;
  20. }
  21. .sticky-cart td{
  22.   padding:10px;
  23. }
  24. .sticky-cart img{
  25.   height:30px;
  26. }
  27. .sticky-cart h5{
  28.   background-color:#29cedf;
  29.   padding:15px 20px;
  30.   color:white;
  31.   margin:0;
  32. }
  33. .sticky-cart span.total{
  34.  float:right;
  35. }
  36. .sticky-cart{
  37.   background:#f9f9f9;
  38.   padding:0;
  39.   box-shadow:0 0 15px #00000015;
  40. }
  41. .wizard {
  42.     display: flex;
  43. }
  44. .wizard__step {
  45.     /* Make all steps have the same width */
  46.     flex: 1;
  47. }
  48. .wizard__dot {
  49.     /* Center the content */
  50.     align-items: center;
  51.     display: flex;
  52.     justify-content: center;
  53. }
  54. .wizard__connector {
  55.     flex: 1;
  56.     height: 1px;
  57.     background-color: #d1d5db;
  58. }
  59. .wizard__step:first-child .wizard__connector:first-child,
  60. .wizard__step:last-child .wizard__connector:last-child {
  61.     background-color: transparent;
  62. }
  63. .wizard__number {
  64.     /* Center the content */
  65.     align-items: center;
  66.     display: flex;
  67.     justify-content: center;
  68.     /* Rounded border */
  69.     background-color: #d1d5db;
  70.     border-radius: 9999px;
  71.     height: 2rem;
  72.     width: 2rem;
  73.     /* OPTIONAL: Spacing between it and connectors */
  74.     margin-left: 0.25rem;
  75.     margin-right: 0.25rem;
  76. }
  77. /*progressbar*/
  78. #progressbar {
  79.   overflow: hidden;
  80.   /*CSS counters to number the steps*/
  81.   counter-reset: step;
  82.       z-index: 2;
  83.       position:relative;
  84. }
  85. #progressbar li {
  86.   list-style-type: none;
  87.   color: #909090;
  88.   text-transform: uppercase;
  89.   font-size: 12px;
  90.   width: 33.33%;
  91.   float: left;
  92.   position: relative;
  93.   text-align: center;
  94. }
  95. #progressbar li:before {
  96.   content: counter(step);
  97.   counter-increment: step;
  98.   width: 40px;
  99.   line-height: 20px;
  100.   padding:10px 15px;
  101.   display: block;
  102.   font-size: 18px;
  103.   color: #333;
  104.   background: #ebebeb;
  105.   border-radius: 3px;
  106.   margin: 0 auto 5px auto;
  107. }
  108. /*progressbar connectors*/
  109. #progressbar li:after {
  110.   content: "";
  111.   width: 100%;
  112.   height: 2px;
  113.   background: #eee;
  114.   position: absolute;
  115.   left: -50%;
  116.   top: 18px;
  117.   z-index: -1; /*put it behind the numbers*/
  118. }
  119. #progressbar li:first-child:after {
  120.   /*connector not needed before the first step*/
  121.   content: none;
  122. }
  123. /*marking active/completed steps green*/
  124. /*The number of the step and the connector before it = green*/
  125. #progressbar li.active:before,
  126. #progressbar li.active:after {
  127.   background: #45dae9;
  128.   color: white;
  129. }
  130. .order-button-payment input {
  131.     background: #45dae9 none repeat scroll 0 0 !important; 
  132.     color:white !important;
  133. }
  134. .order-button-payment input:hover {
  135.     background: #02c6da none repeat scroll 0 0 !important;
  136.     color:white !important;
  137. }
  138. .hm-minicart .decrease-quantite-to-cart,.hm-minicart .increase-quantite-to-cart{
  139.     color: white;
  140.     background: #45dae9;
  141.     border: none;
  142.     border-radius: 3px;
  143. }
  144. .invalid-feedback{
  145.   font-size: 9px;
  146.     background: #b20505;
  147.     color: white;
  148.     padding: 0 6px;
  149.     margin: 3px 0 0;
  150.     border-radius: 5px;
  151. }
  152. legend {
  153.     display: block;
  154.     width: 100%;
  155.     max-width: 100%;
  156.     padding: 0;
  157.     margin-bottom: 0.5rem;
  158.     font-size: 1rem;
  159.     line-height: inherit;
  160.     color: inherit;
  161.     white-space: normal;
  162. }
  163. </style>