src/Flexy/FrontBundle/Themes/CoWorking/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.      <!--<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">-->
  5.      
  6.        <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
  7.      
  8.     <link rel="stylesheet" href="{{asset('themes/coworking/laundry/css/style.css')}}" />
  9.     <link rel="preconnect" href="https://fonts.googleapis.com">
  10. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  11. <link href="https://fonts.googleapis.com/css2?family=Lato:wght@100;400;900&display=swap" rel="stylesheet">
  12. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto|Varela+Round">
  13. <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
  14.   <link
  15.     rel="stylesheet"
  16.     href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
  17.   />
  18. <style>
  19. .close {
  20.     float: right;
  21.     font-size: 2rem;
  22.     font-weight: 700;
  23.     line-height: 1;
  24.     color: #000;
  25.     text-shadow: 0 1px 0 #fff;
  26.     opacity: .5;
  27.     border: none !important;
  28.     }
  29.  
  30. .form-control{
  31.     border-radius:9px; 
  32.     padding:10px;
  33. }
  34. .form-label, .form-check-label{
  35.    color:rgba(1, 46, 23, 1);
  36. }
  37. .rounded{
  38.    border-radius:100%;
  39. }
  40. .head-wrapper{
  41.    display:flex;
  42.    align-items: center;
  43.    justify-content: center;
  44.    padding: 20px 0 20px 0;
  45.    justify-content: space-around;
  46. }
  47. .logo{
  48.    text-align: center;
  49. }
  50. .icon{
  51.    display:none;
  52. }
  53. .nav-link{
  54.    display:flex;
  55.    justify-content: end;
  56.    column-gap: 19px;
  57. .hidden-col{
  58.    display:none;
  59. }
  60. @media screen and (max-width: 1198px) {
  61.    .nav-link a:not(:last-child) {display: none;}
  62.    .icon{
  63.       margin-top:10px;
  64.       display:block;
  65.       width: fit-content;
  66.       float:right; 
  67.    }
  68.    .hidden-col{
  69.       display: block;
  70.    }
  71.     
  72.    .info{
  73.       display: none;
  74.    }
  75.    .head-wrapper{ 
  76.        padding: 8px 0 8px 0; 
  77.    }
  78.  }
  79.  
  80.  
  81. .turbo-progress-bar {
  82.   height: 6px;
  83.   background-color: #45dae9;
  84. }
  85. .sticky-cart .li-product-price,.sticky-cart label{
  86.   display:none;
  87. }
  88. .sticky-cart td{
  89.   padding:10px;
  90. }
  91. .sticky-cart img{
  92.   height:30px;
  93. }
  94. .sticky-cart h5{
  95.   background-color:#29cedf;
  96.   padding:15px 20px;
  97.   color:white;
  98.   margin:0;
  99. }
  100. .sticky-cart span.total{
  101.  float:right;
  102. }
  103. .sticky-cart{
  104.   background:#f9f9f9;
  105.   padding:0;
  106.   box-shadow:0 0 15px #00000015;
  107. }
  108. .wizard {
  109.     display: flex;
  110. }
  111. .wizard__step {
  112.     /* Make all steps have the same width */
  113.     flex: 1;
  114. }
  115. .wizard__dot {
  116.     /* Center the content */
  117.     align-items: center;
  118.     display: flex;
  119.     justify-content: center;
  120. }
  121. .wizard__connector {
  122.     flex: 1;
  123.     height: 1px;
  124.     background-color: #d1d5db;
  125. }
  126. .wizard__step:first-child .wizard__connector:first-child,
  127. .wizard__step:last-child .wizard__connector:last-child {
  128.     background-color: transparent;
  129. }
  130. .wizard__number {
  131.     /* Center the content */
  132.     align-items: center;
  133.     display: flex;
  134.     justify-content: center;
  135.     /* Rounded border */
  136.     background-color: #d1d5db;
  137.     border-radius: 9999px;
  138.     height: 2rem;
  139.     width: 2rem;
  140.     /* OPTIONAL: Spacing between it and connectors */
  141.     margin-left: 0.25rem;
  142.     margin-right: 0.25rem;
  143. }
  144. /*progressbar*/
  145. #progressbar {
  146.   overflow: hidden;
  147.   /*CSS counters to number the steps*/
  148.   counter-reset: step;
  149.       z-index: 2;
  150.       position:relative;
  151. }
  152. #progressbar li {
  153.   list-style-type: none;
  154.   color: #909090;
  155.   text-transform: uppercase;
  156.   font-size: 12px;
  157.   width: 33.33%;
  158.   float: left;
  159.   position: relative;
  160.   text-align: center;
  161. }
  162. #progressbar li:before {
  163.   content: counter(step);
  164.   counter-increment: step;
  165.   width: 40px;
  166.   line-height: 20px;
  167.   padding:10px 15px;
  168.   display: block;
  169.   font-size: 18px;
  170.   color: #333;
  171.   background: #ebebeb;
  172.   border-radius: 3px;
  173.   margin: 0 auto 5px auto;
  174. }
  175. /*progressbar connectors*/
  176. #progressbar li:after {
  177.   content: "";
  178.   width: 100%;
  179.   height: 2px;
  180.   background: #eee;
  181.   position: absolute;
  182.   left: -50%;
  183.   top: 18px;
  184.   z-index: -1; /*put it behind the numbers*/
  185. }
  186. #progressbar li:first-child:after {
  187.   /*connector not needed before the first step*/
  188.   content: none;
  189. }
  190. /*marking active/completed steps green*/
  191. /*The number of the step and the connector before it = green*/
  192. #progressbar li.active:before,
  193. #progressbar li.active:after {
  194.   background: #45dae9;
  195.   color: white;
  196. }
  197. .order-button-payment input {
  198.     background: #45dae9 none repeat scroll 0 0 !important; 
  199.     color:white !important;
  200. }
  201. .order-button-payment input:hover {
  202.     background: #02c6da none repeat scroll 0 0 !important;
  203.     color:white !important;
  204. }
  205. .hm-minicart .decrease-quantite-to-cart,.hm-minicart .increase-quantite-to-cart{
  206.     color: white;
  207.     background: #45dae9;
  208.     border: none;
  209.     border-radius: 3px;
  210. }
  211. .invalid-feedback{
  212.   font-size: 9px;
  213.     background: #b20505;
  214.     color: white;
  215.     padding: 0 6px;
  216.     margin: 3px 0 0;
  217.     border-radius: 5px;
  218. }
  219. legend {
  220.     display: block;
  221.     width: 100%;
  222.     max-width: 100%;
  223.     padding: 0;
  224.     margin-bottom: 0.5rem;
  225.     font-size: 1rem;
  226.     line-height: inherit;
  227.     color: inherit;
  228.     white-space: normal;
  229. }
  230. </style>