app/template/meldiastore/Block/header.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) LOCKON CO.,LTD. All Rights Reserved.
  4. http://www.lockon.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. <style>
  9. @import url("https://use.typekit.net/ifj0bvi.css");
  10. .b-footer__logo-link-text2 {
  11.     font-family: trajan-pro-3, serif;
  12.     display: block;
  13.     font-size: 2em;
  14.     line-height: 1.2;
  15.     color: #807245;
  16. }
  17. .l-layout__body-bg {
  18.             background-image: linear-gradient(#F0F0EB,#F0F0EB);
  19.         }
  20. .b-nav-sp__button:after, .b-nav-sp__button:before {
  21.     background: #807245
  22. }
  23. </style>
  24. <div class="b-header">
  25.     <h1 class="b-header__logo">
  26.         <a class="b-footer__logo-link" href="{{ url('homepage') }}">
  27.         <span class="b-footer__logo-link-text2">Meldia Store</span>
  28.         </a>
  29.     </h1>
  30.     <span class="b-header__spacer"></span>
  31.     <div class="b-header__utility">
  32.         <div class="b-header__utility-navi">
  33.             {{ include('Block/login.twig') }}
  34.         </div>
  35.         <div class="b-header__utility-search">
  36.             <a class="b-header__utility-search-link" href="#js-search-product" id="js-header__utility-search-link"></a>
  37.         </div>
  38.         <div class="b-header__utility-cart" id="js-header__utility-cart">
  39.             {{ include('Block/cart.twig') }}
  40.         </div>
  41.     </div>
  42. </div>