app/template/default/Block/pricePicked.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 javascript %}
  9. <script>
  10. </script>
  11. {% endblock %}
  12. {% block stylesheet %}
  13.     <style>
  14.     .pricePicked {
  15.         display: flex;
  16.     }
  17.     .pricePicked-button {
  18.         width: 50%;
  19.         margin:  3%;
  20.         padding: 3% 10%;
  21.         background: #fcfaf5;
  22.         border-radius: 5%;
  23.     }
  24.     .pricePicked-button-title {
  25.         margin: 0 0 0 6%;
  26.         font-weight: bold;
  27.         color: black;
  28.         font-size: 45px;
  29.     }
  30.     .pricePicked-button-innner {
  31.         margin: 5%;
  32.         border-radius: 6px;
  33.     }
  34.     a.btn-border {
  35.         border-radius: 6px;
  36.         background: #f0e7d8;
  37.         font-weight: bold;
  38.         font-size: 28px;
  39.     }
  40.     a.btn-border:hover {
  41.         color: #fff;
  42.         background: #d5a770;
  43.     }
  44.     .pricePicked-img {
  45.         width: 50%;
  46.         padding: 3%;
  47.     }
  48.     .pricePicked-img img {
  49.         width: 100%;
  50.         height: 100%;
  51.         border-radius: 5%;
  52.     }
  53.     @media screen and (max-width: 568px ) {
  54.         .pricePicked-button {
  55.             width: 100%;
  56.             margin-left: 3%;
  57.         }
  58.         .pricePicked-img {
  59.             display: none;
  60.         }
  61.     }
  62.     </style>
  63. {% endblock %}
  64. <div class="pricePicked">
  65.     <div class="pricePicked-button">
  66.         <div class="pricePicked-button-title">ご予算</div>
  67.         <div class="pricePicked-button-innner"><a href="https://tas-lab.net/products/list?name=&price_min=0&price_max=5000&size_vertical_min=0&size_vertical_max=300&size_width_min=0&size_width_max=300" class="btn btn-border">¥5000まで</a></div>
  68.         <div class="pricePicked-button-innner"><a href="https://tas-lab.net/products/list?name=&price_min=5000&price_max=10000&size_vertical_min=0&size_vertical_max=300&size_width_min=0&size_width_max=300" class="btn btn-border">¥5000 ~ ¥10000</a></div>
  69.         <div class="pricePicked-button-innner"><a href="https://tas-lab.net/products/list?name=&price_min=10000&price_max=1000000&size_vertical_min=0&size_vertical_max=300&size_width_min=0&size_width_max=300" class="btn btn-border">¥10000から</a></div>
  70.     </div>
  71.     <div class="pricePicked-img">
  72.       <img src="https://www.asahicom.jp/and/w/wp-content/uploads/2019/02/AS20181031003366_comm.jpg" />
  73.     </div>
  74. </div>