app/template/unishop/Block/css_kirikae.twig line 1

Open in your IDE?
  1. {% if Page.url == "correct_size" or Page.url == "care_for_uniforms" or Page.url == "school_list" or Page.url == "store_info" %}
  2.     <link rel="stylesheet" href="{{ url('homepage') }}html/user_data/unimall_page.css">
  3. {% endif %}
  4. {% if Page.url == "school_list" %}
  5.     <link rel="stylesheet" href="{{ url('homepage') }}html/user_data/unimall_sclist.css">
  6. {% endif %}
  7. <!--学校別/店舗別cssをここに貼る-->
  8. <link rel="stylesheet" href="{{ url('homepage') }}html/user_data/plus_hata.css?v20230526">
  9. {% if Page.url == "product_detail" %}<!--商品詳細にカレンダーを表示-->
  10.     <style>
  11.         .itemdet_all .itemdet_box .calendar-container,
  12.         .calendar-container {
  13.             position: relative;
  14.             width: 100%;
  15.             height: 0;
  16.             padding-bottom: 75%;
  17.         }
  18.         .calendar-container iframe {
  19.             position: absolute;
  20.             top: 0;
  21.             left: 0;
  22.             width: 100%;
  23.             height: 100%;
  24.             border: solid 1px #777;
  25.         }
  26.         @media (max-width: 768px) {
  27.             .itemdet_all .itemdet_box .calendar-container,
  28.             .calendar-container {
  29.                 padding-bottom: 150%; /* 2倍の高さ */
  30.             }
  31.         }
  32.     </style>
  33. {% endif %}