app/template/default/Block/sale_banner.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. {% block stylesheet %}
  9. <style>
  10. .bannerContainer {
  11.     max-width: 840px;
  12.     padding: 0 20px;
  13.     margin: 0 auto 85px;
  14. }
  15. .bannerImg {
  16.     width: 100%
  17. }
  18. .bannerImg.mbImg {
  19.     margin-bottom: 30px;
  20. }
  21. .bannerContainer__list {
  22.     margin-top: 20px;
  23.     display: flex;
  24. }
  25. @media screen and (max-width: 768px) {
  26.     .bannerContainer {
  27.         margin: 0 auto 40px;
  28.     }
  29.     .bannerImg.mbImg {
  30.         margin-bottom: 10px;
  31.     }
  32. }
  33. </style>
  34. {% endblock %}
  35. <div class="ec-topBanner">
  36.     <div class="bannerContainer ">
  37.         <div class=""><a href="/news/2"><img src="/html/images/top/campaign/point-sale.png" alt="ポイントキャンペーン" class="bannerImg mbImg"></a>
  38.         </div>
  39.         <div class=""><a href="https://frontlines.jp/usces-member/"><img src="/html/images/top/campaign/shopping-history.png" alt="お買い物履歴はこちら" class="bannerImg mbImg"></a>
  40.         </div>
  41.      </div>
  42. </div>