-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 랜딩페이지 * fixed untracked files * style: 불필요한 font 스타일 코드 수정 * refactor: 클래스 네이밍 * feat:header고정 * feat: 로그인 * feat:회원가입 * fix:페이지 루트 수정 * refactor: 랜딩페이지 section ,footer * feat : tablet display * feat: landing page mobile display * feat: auth page mobile display * feat:줄바꿈 수정 * feat: meta tag * feat:meta tag
- Loading branch information
Showing
8 changed files
with
229 additions
and
318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,21 @@ | |
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta property="og:type" content="website"> | ||
<meta property="og:title" content="판다마켓"> | ||
<meta property="og:description" content="일상의 모든 물건을 거래해보세요"> | ||
<meta property="og:image" content="./img/logo/logo.png"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>판다마켓</title> | ||
<link | ||
rel="stylesheet" | ||
as="style" | ||
crossorigin | ||
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.css" | ||
> | ||
> | ||
<link rel="stylesheet" href="style/index.css"> | ||
<link rel="stylesheet" href="style/global.css"> | ||
<link rel="stylesheet" href="style/index_tablet.css"> | ||
<link rel="stylesheet" href="style/index_mobile.css"> | ||
</head> | ||
<body> | ||
<header> | ||
|
@@ -24,6 +29,7 @@ | |
|
||
</header> | ||
<main> | ||
</div> | ||
<section class="banner"> | ||
<div class="banner-wrap"> | ||
<div class="banner-textbox"> | ||
|
@@ -32,12 +38,12 @@ <h1 class="banner-text">일상의 모든 물건을<br> | |
</h1> | ||
<a href="/items" class="items-button">구경하러 가기</a> | ||
</div> | ||
<img class="img_home_top" src="./img/Img_home_top.png" width="746" alt="banner"> | ||
<img class="img-home-top" src="./img/Img_home_top.png" alt="banner"> | ||
</div> | ||
</section> | ||
<section class="section1"> | ||
<div class="section-wrap"> | ||
<img class="Img_home_01" src="./IMG/Img_home_01.png" width="558" alt="Hot Item"> | ||
<section class="section-left"> | ||
<div class="section-left-wrap"> | ||
<img class="img-section" src="./IMG/Img_home_01.png" alt="Hot Item"> | ||
<div class="section-textbox"> | ||
<p class="tag">Hot Item</p> | ||
<h3 class="section-text">인기 상품을<br> | ||
|
@@ -50,8 +56,8 @@ <h3 class="section-text">인기 상품을<br> | |
|
||
</div> | ||
</section> | ||
<section class="section2"> | ||
<div class="section-wrap"> | ||
<section class="section-right"> | ||
<div class="section-right-wrap"> | ||
<div class="section-textbox"> | ||
<p class="tag">Search</p> | ||
<h3 class="section-text">구매를 원하는<br> | ||
|
@@ -61,12 +67,12 @@ <h3 class="section-text">구매를 원하는<br> | |
쉽게 찾아보세요 | ||
</p> | ||
</div> | ||
<img class="Img_home_02" src="./IMG/Img_home_02.png" width="588" alt="Search"> | ||
<img class="img-section" src="./IMG/Img_home_02.png" alt="Search"> | ||
</div> | ||
</section> | ||
<section class="section3"> | ||
<div class="section-wrap"> | ||
<img class="Img_home_03" src="./IMG/Img_home_03.png" width="588" alt="Register"> | ||
<section class="section-left"> | ||
<div class="section-left-wrap"> | ||
<img class="img-section" src="./IMG/Img_home_03.png" alt="Register"> | ||
<div class="section-textbox"> | ||
<p class="tag">Register</p> | ||
<h3 class="section-text">판매를 원하는<br> | ||
|
@@ -79,13 +85,13 @@ <h3 class="section-text">판매를 원하는<br> | |
</div> | ||
</section> | ||
<section class="bottom"> | ||
<div class="banner-wrap"> | ||
<div class="banner-textbox"> | ||
<h3 class="section-text">믿을 수 있는<br> | ||
<div class="bottom-wrap"> | ||
<div class="bottom-textbox"> | ||
<h3 class="bottom-text">믿을 수 있는<br> | ||
판다마켓 중고 거래 | ||
</h3> | ||
</div> | ||
<img class="img_home_bottom" src="./img/Img_home_bottom.png" width="746" alt="bottom"> | ||
<img class="img-home-bottom" src="./img/Img_home_bottom.png" alt="bottom"> | ||
</div> | ||
</section> | ||
</main> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@media (max-width:767px){ | ||
br{ | ||
display:none !important; | ||
} | ||
.auth-container { | ||
padding: 0 16px; | ||
display:inline-flex; | ||
} | ||
.panda-logo { | ||
width:198px; | ||
} | ||
.auth-wrap { | ||
max-width: 400px; | ||
margin:24px 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
@media (max-width:767px) { | ||
.banner-text > br{ | ||
display:inline ; | ||
} | ||
.banner { | ||
height: 540px; | ||
} | ||
.banner-wrap { | ||
max-width:100%; | ||
justify-content: space-between; | ||
} | ||
.banner-textbox { | ||
padding:48px 0; | ||
gap:18px; | ||
} | ||
.banner-text { | ||
max-width:240px; | ||
font-size:32px; | ||
text-align: center; | ||
} | ||
.items-button { | ||
height:48px; | ||
font-size:18px; | ||
padding:12px 71px; | ||
} | ||
.section-left { | ||
height:417px; | ||
} | ||
.section-right { | ||
height:417px; | ||
} | ||
.section-left-wrap { | ||
max-width:344px; | ||
max-height:417px; | ||
} | ||
.section-right-wrap { | ||
max-width:344px; | ||
max-height:417px; | ||
} | ||
.tag { | ||
font-size: 16px; | ||
} | ||
.section-text { | ||
font-size:24px; | ||
} | ||
.section-text-detail { | ||
font-size:16px; | ||
} | ||
.bottom { | ||
margin-top:86px; | ||
height:540px; | ||
} | ||
.bottom-textbox { | ||
padding:0; | ||
max-width:236px; | ||
} | ||
.bottom-text { | ||
text-align: center; | ||
font-size:32px; | ||
} | ||
.footer-wrap { | ||
max-width: 311px; | ||
} | ||
.copyright { | ||
position:absolute; | ||
top:60px; | ||
} | ||
} |
Oops, something went wrong.