app/template/user_data/env.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. {% extends 'default_frame.twig' %}
  9. {% set body_class = 'front_page' %}
  10. {% block main %}
  11.     
  12.     <!-- メインコンテンツ -->
  13.     <main class="main-content">
  14.         <h2>開発中</h2>
  15.         <div class="pipe-line">
  16.             <div class="pipe">
  17.                 <div class="line"></div>
  18.             </div>
  19.             <div class="white"></div>
  20.         </div>
  21.         <div class="env-area">
  22.             <p>現在このページは開発中です。</p>
  23.             <p>今後も豊富なコンテンツを多数公開予定ですので、是非お立ち寄りください。</p>
  24.             <img src="{{ asset('assets/img/env.png', 'user_data') }}" alt="開発中" width="100%" class="env-img">
  25.         </div>
  26.         <div class="top-btn">
  27.             <a href="https://photo-pub.com/">TOPへ戻る</a>
  28.         </div>        
  29.     </main>
  30.     <style>
  31.         * {
  32.             margin: 0;
  33.             padding: 0;
  34.         }
  35.         /* ----------メイン---------- */
  36.         .main-content {
  37.             background: #ffffff;
  38.             min-height: 50vh;
  39.             position: relative;
  40.         }
  41.         h2 {
  42.             margin-top: 20px;
  43.             text-align: center;
  44.         }
  45.         a {
  46.             text-decoration: none;
  47.         }
  48.         .pipe-line {
  49.             position: relative;
  50.             display: flex;
  51.             flex-direction: column;
  52.             align-items: center;
  53.         }
  54.         .pipe {
  55.             height: 20px;
  56.             display: flex;
  57.             justify-content: space-between;
  58.             width: 100%;
  59.         }
  60.         .line {
  61.             width: 50%;
  62.             border: solid 1px #555555;
  63.             border-left:none;
  64.             border-top:none;
  65.             border-bottom: none;
  66.             z-index: 50;
  67.         }
  68.         .white {
  69.             position: absolute;
  70.             display: flex;
  71.             justify-content: space-between;
  72.             align-items: center;
  73.             background-color: #ffffff;
  74.             width: 20px;
  75.             height: 30px;
  76.             z-index: 49;
  77.         }
  78.         /*----コンテンツ----- */
  79.         .env-area {
  80.             margin: 0 10% ;
  81.             padding: 30px;
  82.             border:solid 1px #555555;
  83.             border-left: none;
  84.             border-right: none;
  85.             border-bottom: none;
  86.         }
  87.         .top-btn {
  88.             position: absolute;
  89.             left: 40%;
  90.             display: flex;
  91.             justify-content: center;
  92.             width: 18%;
  93.             border: solid 1px ;
  94.             border: none;
  95.             padding: 1%;
  96.             border-radius: 50px;
  97.             background-color: #629649;
  98.             cursor: pointer;
  99.         }
  100.         .top-btn a {
  101.             color: #ffffff;
  102.         }
  103.         .top-btn:hover {
  104.             background-color: #4c743a;
  105.         }
  106.         .env-img {
  107.             margin-top: 50px;
  108.         }
  109.         @media screen and (max-width: 768px) {
  110.             .env-img {
  111.                 margin-top: 20px;
  112.             }
  113.             a {
  114.                 font-size: 12px;
  115.                 padding:5px;
  116.             }
  117.         }
  118.     </style>
  119.     
  120. {% endblock %}