src/Flexy/FrontBundle/templates/booking/layout.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html class="no-js" lang="fr">
  3.     
  4. <!-- index28:48-->
  5.     {% block stylesheets %}
  6. {% include "@Flexy/FrontBundle/templates/_head.html.twig" %}
  7. <style>
  8.    /*
  9. header a{
  10.         color:white;
  11.     }
  12.     header a.active{
  13.         color:#ff5c5b;
  14.     }
  15.    
  16. .burger,
  17. .burger:after,
  18. .burger *,
  19. .burger *:before,
  20. .burger *:after,
  21. .header-nav *,
  22. .header-nav *:before,
  23. .header-nav *:after {
  24.     -webkit-transition: all 0.3s;
  25.     transition: all 0.3s;
  26. }
  27. .burger {
  28.     cursor: pointer;
  29.     height: 60px;
  30.     margin-bottom: 0;
  31.     width: 60px;
  32.     z-index: 9001;
  33.     left: 60px;
  34.     overflow: hidden;
  35.     position: fixed;
  36.     top: 18px;
  37.    /* background: #293a6c;*/
  38. }
  39. /*
  40. .burger:after {
  41.     bottom: 7px;
  42.     color: #FFFFFF;
  43.     content: 'Menu';
  44.     font-size: 10px;
  45.     font-weight: 300;
  46.     left: 0;
  47.     position: absolute;
  48.     text-align: center;
  49.     width: 100%;
  50. }
  51. /*--------------------------------------
  52.  Creates the look of the burger icon
  53.  using the inner span and pseudo-elements
  54. --------------------------------------*/
  55. /*
  56. .burger span,
  57. .burger span:before,
  58. .burger span:after {
  59.     background: #FFFFFF;
  60.     border-radius: 0.2em;
  61.     height: 3px;
  62.     left: 16px;
  63.     position: absolute;
  64.     top: 24px;
  65.     -webkit-transition: all 0.3s;
  66.     transition: all 0.3s;
  67.     width: 27px;
  68. }
  69. /* Reset the left and create the pseudo-element */
  70. /*
  71. .burger span:before,
  72. .burger span:after {
  73.     content: '';
  74.     left: 0;
  75. }
  76. /* Top bar position */
  77. /*
  78. .burger span:before {
  79.     top: -8px;
  80. }
  81. /* Bottom bar position */
  82. /*
  83. .burger span:after {
  84.     top: 8px;
  85. }
  86. /* Get rid of more on action (IE9 or higher) */
  87. /*
  88. .burger-check:checked + .burger:after {
  89.     content: '';
  90. }
  91. /* Get rid of the middle bar on action (IE9 or higher) */
  92. /*
  93. .burger-check:checked + .burger span {
  94.     height: 0;
  95.     width: 0;
  96. }
  97. /* Moves the top and bottom bars to the middle on action (IE9 or higher) */
  98. /*
  99. .burger-check:checked + .burger span:before,
  100. .burger-check:checked + .burger span:after {
  101.     top: 6px;
  102. }
  103. /* Rotates the top bar on action with full browser support (IE9 or higher) */
  104. /*
  105. .burger-check:checked + .burger span:before {
  106.     -webkit-transform: rotate(225deg);
  107.     -ms-transform: rotate(225deg);
  108.     transform: rotate(225deg);
  109. }
  110. /* Rotates the bottom bar on action with full browser support (IE9 or higher) */
  111. /*
  112. .burger-check:checked + .burger span:after {
  113.     -webkit-transform: rotate(-225deg);
  114.     -ms-transform: rotate(225deg);
  115.     transform: rotate(-225deg);
  116. }
  117.  
  118. .burger-check:checked + .burger {
  119.     width: 60px;
  120. }
  121. .burger-check:checked + .burger:after {
  122.     bottom: 10px;
  123.     content: '';
  124.     font-size: 20px;
  125.     padding-left: 10px;
  126. }
  127. #mobile-nav {
  128.     left: -9999px;
  129.     position: fixed;
  130.     top: 0;
  131. }
  132. .header-nav ul li a:active,
  133. .header-nav ul li a:focus,
  134. .header-nav ul li a:hover,
  135. #mobile-nav:focus  {
  136.    background: #e9a124;
  137.     outline: none;
  138. }
  139.  
  140. .header-nav {
  141.          float: left;
  142.  
  143.     position: absolute;
  144.     width: 100%;
  145.     margin: 25% -46%;
  146.     z-index: 9999;
  147. }
  148. .header-nav ul {
  149.     background: #FFF;
  150.      
  151.     list-style: none;
  152.     margin: 0;
  153.     overflow-y: auto;
  154.     padding: 10px 0 0 0;
  155.     position: relative;
  156.     -webkit-transform: translateX(-110%);
  157.     transform: translateX(-110%);
  158.     -webkit-transition-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940);
  159.     -moz-transition-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940);
  160.     -o-transition-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940);
  161.     transition-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940);
  162.     width: 200px;
  163.     box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.075);
  164.     top: 100%;
  165.     z-index: 1;
  166. }
  167. .burger-check:checked ~ .header-nav ul {
  168.     -webkit-transform: translateX(0);
  169.     transform: translateX(0);
  170. }
  171. .header-nav ul li {
  172.     float: left;
  173.     position: relative;
  174.     width: 100%;
  175. }
  176. .header-nav ul li a {
  177.     color: rgba(0, 0, 0, 0.79);
  178.     display: block;
  179.     float: left;
  180.     font-size: 11px;
  181.     font-weight: 400;
  182.     letter-spacing: 0.75px;
  183.     line-height: 17px;
  184.     margin-left: 0;
  185.     overflow: hidden;
  186.     padding: 1px 56px 4px 12px;
  187.     position: relative;
  188.     text-decoration: none;
  189.     width: 100%;
  190. }
  191.  
  192. .category-menu-list > ul > li > a, .cat-dropdown > li > a {
  193.     display: block;
  194.     text-transform: capitalize;
  195.     color: #333;
  196.     height: 17px !important;
  197.     line-height: 22px !important;
  198.     overflow: hidden;
  199.     font-size: 11.5px !important;
  200. }*/
  201.  
  202. </style>
  203.     {% endblock %}
  204.     <body>
  205.     <!--[if lt IE 8]>
  206.         <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
  207.     <![endif]-->
  208.        
  209.         {% include "@Flexy/FrontBundle/templates/booking/_header.html.twig" %}
  210.         {% block body %}
  211.         {% endblock %}
  212.         {% include "@Flexy/FrontBundle/templates/booking/_footer.html.twig" %}
  213.         {% block javascripts %}
  214.             {% include "@Flexy/FrontBundle/templates/_javascripts.html.twig" %}
  215.         {% endblock %}
  216.     </body>
  217. <!-- index30:23-->
  218. </html>