{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% extends 'default_frame.twig' %}
{% set body_class = 'front_page' %}
{% block main %}
<!-- メインコンテンツ -->
<main class="main-content">
<h2>開発中</h2>
<div class="pipe-line">
<div class="pipe">
<div class="line"></div>
</div>
<div class="white"></div>
</div>
<div class="env-area">
<p>現在このページは開発中です。</p>
<p>今後も豊富なコンテンツを多数公開予定ですので、是非お立ち寄りください。</p>
<img src="{{ asset('assets/img/env.png', 'user_data') }}" alt="開発中" width="100%" class="env-img">
</div>
<div class="top-btn">
<a href="https://photo-pub.com/">TOPへ戻る</a>
</div>
</main>
<style>
* {
margin: 0;
padding: 0;
}
/* ----------メイン---------- */
.main-content {
background: #ffffff;
min-height: 50vh;
position: relative;
}
h2 {
margin-top: 20px;
text-align: center;
}
a {
text-decoration: none;
}
.pipe-line {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}
.pipe {
height: 20px;
display: flex;
justify-content: space-between;
width: 100%;
}
.line {
width: 50%;
border: solid 1px #555555;
border-left:none;
border-top:none;
border-bottom: none;
z-index: 50;
}
.white {
position: absolute;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #ffffff;
width: 20px;
height: 30px;
z-index: 49;
}
/*----コンテンツ----- */
.env-area {
margin: 0 10% ;
padding: 30px;
border:solid 1px #555555;
border-left: none;
border-right: none;
border-bottom: none;
}
.top-btn {
position: absolute;
left: 40%;
display: flex;
justify-content: center;
width: 18%;
border: solid 1px ;
border: none;
padding: 1%;
border-radius: 50px;
background-color: #629649;
cursor: pointer;
}
.top-btn a {
color: #ffffff;
}
.top-btn:hover {
background-color: #4c743a;
}
.env-img {
margin-top: 50px;
}
@media screen and (max-width: 768px) {
.env-img {
margin-top: 20px;
}
a {
font-size: 12px;
padding:5px;
}
}
</style>
{% endblock %}