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

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.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. .ec-headerNaviRole__right{
  10.     margin-bottom: 20px !important;
  11. }
  12. .ec-headerNaviRole__left{
  13.     margin-top: 20px !important;
  14. }
  15. @media only screen and (min-width: 768px)
  16. {
  17.     .ec-headerTitle .ec-headerTitle__title a 
  18.     {
  19.         font-size: 36px;
  20.         line-height: 1.1em;
  21.     }
  22.     .ec-headerNaviRole .ec-headerNaviRole__left 
  23.     {
  24.         width: 100%; /* calc(100% / 2); */
  25.     }
  26. }
  27. @media only screen and (max-width: 768px) {
  28.     .ec-headerNavSP {
  29.         top: 10px;
  30.     }
  31. }
  32. .ec-headerSearch {
  33.     margin-bottom: 10px;
  34.     margin-top: -35px;
  35. }
  36. .ec-headerNav__item a i {
  37.     width: 1.25em;
  38. }
  39. .fa, .far, .fas {
  40.     font-family: "Font Awesome 5 Free";
  41. }
  42. </style>
  43.     
  44. <div class="ec-headerNaviRole ">
  45.     <div class="ec-headerRole__navSP">
  46.         {{ include('Block/nav_sp.twig') }}
  47.     </div>
  48.     <div class="ec-headerNaviRole__left pc_only">
  49.         <!--<p class="shoulder_text">多聴多読マガジン、英語教材、多聴多読ステーションの音声素材を購入できます</p>-->
  50.         <div class="ec-headerRole__title">
  51.             <div class="ec-headerTitle">
  52.                 <div class="ec-headerTitle__title">
  53.                     <p>
  54.                         <a href="{{ url('homepage') }}">
  55.                             <img src="{{ asset('assets/img/logo.png') }}" title="{{ BaseInfo.shop_name }}" alt="{{ BaseInfo.shop_name }}" style="max-height:100px">
  56.                         </a>
  57.                     </p>                    
  58.                 </div>
  59.             </div>
  60.         </div>        
  61.     </div>
  62.     
  63.     <div class="ec-headerNaviRole__right ">
  64.         <div class="ec-headerNaviRole__nav">
  65.             {{ include('Block/login.twig') }}
  66.         </div>
  67.         <div class="ec-headerRole__cart">
  68.             {{ include('Block/cart.twig') }}
  69.         </div>
  70.     </div>
  71.     
  72. </div>