Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
32829f0
chore: commit 생성
Oct 29, 2024
25ea232
chore : Project 디렉토리 삭제 및 템플릿 파일 복구
Oct 30, 2024
f81abbc
fix : 오타 수정 및 img 요소 alt 속성 명시
Nov 2, 2024
4082fd9
refactor : 시맨틱 태그 수정, CSS 업데이트는 후속 작업으로 예정
Nov 2, 2024
34cfdb9
chore : h1 태그 미사용으로 분리
Nov 2, 2024
24f6681
refactor : CSS 업데이트
Nov 2, 2024
cd395f2
docs : README.md 양식 변경
Nov 2, 2024
f952bee
feat : 로그인 페이지 HTML 작성
Nov 2, 2024
1ea6eff
feat : 로그인 페이지 CSS 생성
Nov 2, 2024
e4e9f18
chore : 로그인 버튼 색상 변경 및 hover, focus 추가
Nov 2, 2024
9f4ac74
feat : 회원가입 페이지 생성 및 CSS 업데이트
Nov 2, 2024
73b1971
chore : 이미지 수정
Nov 2, 2024
a109c25
chore : 메인 페이지 header 고정 및 오타 수정
Nov 2, 2024
9414283
chore : gray 및 blue 색상 변수 등록 및 적용
Nov 2, 2024
0605656
feat : Media Query 적용 완료
Nov 2, 2024
74e6ee3
docs : README.md Tools 항목 추가
Nov 9, 2024
9f516e0
chore : 디바이스 뷰포트 기준 수정
Nov 9, 2024
94c2eb8
chore : 로그인 페이지 및 회원가입 페이지 미디어쿼리 수정
Nov 9, 2024
29011ba
chore: 루트페이지 태블릿 크기 미디어쿼리 수정
Nov 9, 2024
ab2e4ba
chore : 루트페이지 모바일 크기 미디어쿼리 수정
Nov 9, 2024
68d7b38
chore : img alt속성, input name추가, a rel속성 noreferrer추가
Nov 9, 2024
b9da3bf
chore : og 태그 추가 완료
Nov 9, 2024
5194f1d
Merge branch 'Basic-김도균' into Basic-김도균-sprint3
ToKyun02 Nov 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
<main>
<section class="banner top-banner">
<div class="banner-explain">
<h1></h1>
<h1>판다마켓을 소개합니다.</h1>
<h2>
일상의 모든 물건을<br />
일상의 모든 물건을<br class="top-banner-title-next-line" />
거래해 보세요
</h2>
<a class="browsing" href="items.html">구경하러 가기</a>
Expand All @@ -54,8 +54,8 @@ <h2>
/>
<div class="section-explain">
<span class="keyword">Hot item</span>
<h2>
인기 상품을<br />
<h2 class="section-title">
인기 상품을<br class="section-title-next-line" />
확인해 보세요
</h2>
<p>
Expand All @@ -68,8 +68,8 @@ <h2>
<section class="home-main-section">
<div class="section-explain">
<span class="keyword">Search</span>
<h2>
구매를 원하는<br />
<h2 class="section-title">
구매를 원하는<br class="section-title-next-line" />
상품을 검색하세요
</h2>
<p>
Expand All @@ -92,8 +92,8 @@ <h2>
/>
<div class="section-explain">
<span class="keyword">Register</span>
<h2>
판매를 원하는<br />
<h2 class="section-title">
판매를 원하는<br class="section-title-next-line" />
상품을 등록하세요
</h2>
<p>
Expand Down
8 changes: 4 additions & 4 deletions style/account.css
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,12 @@ input::placeholder {
background-color: #e6f2ff;
}

/* tablet_size(768px~1199px) */
@media (max-width: 1199px) {
/* tablet_size*/
@media (max-width: 1200px) {
/* 현재까진 타블렛과 pc의 요소 사이즈를 동일하게 설계함 */
}
/* mobile_size(375px~767px) */
@media (max-width: 767px) {
/* mobile_size */
@media (max-width: 768px) {
header,
main,
footer {
Expand Down
97 changes: 67 additions & 30 deletions style/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -192,52 +192,89 @@ footer {
padding-right: 200px;
}
}
/* Tablet_screen(768px~1199px) */
@media (max-width: 1199px) {
/* Tablet_screen */
@media (max-width: 1200px) {
h2 {
font-size: 24px;
width: 100%;
font-size: 40px;
font-weight: 700;
line-height: 28px;
line-height: 40px;
text-align: center;
}
.top-banner-img,
.bottom-banner-img,
.section-img {
width: 360px;
height: 180px;
p {
font-size: 14px;
font-weight: 500;
line-height: 24px;
}

.top-navigation {
margin: 0;
padding: 16px 24px;
}

.banner {
padding-top: 30px;
flex-direction: column;
padding: 30px 0 0;
}
.section-img {
width: 280px;
height: 200px;
.banner-explain {
display: flex;
flex-direction: column;
align-items: center;
}
.browsing {
width: 180px;
height: 40px;
margin: 16px 0;
padding: 8px 40px;
font-size: 16px;

.top-banner-img,
.bottom-banner-img {
margin-top: 10vw;
width: 90vw;
height: 50vw;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

여기서 갑자기 vw단위를 사용하신 이유가 있으실까요?
제가보았을때는 불필요한것 같은데 px로 변환하는게 더 괜찮을것 같습니다 !

}
p {
font-size: 14px;
font-weight: 500;
line-height: 24px;

.top-banner-title-next-line,
.section-title-next-line {
display: none;
}

.bottom-banner {
margin-top: 0;
padding-top: 40px;
}

.home-main-section {
padding-bottom: 0;
flex-direction: column;
align-items: flex-start;
margin: 0;
padding: 16px 24px;
width: 100%;
}
.home-main-section:nth-of-type(3) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nth-of-type(3) 등을 사용해주신것 좋습니다 ㅎ

flex-direction: column-reverse;
align-items: flex-end;
}
.home-main-section h2 {
margin: 16px 0;
text-align: left;
}
.home-main-section:nth-of-type(3) h2 {
text-align: right;
}
.section-img {
width: 100%;
height: 70vw;
}
.section-title {
font-size: 32px;
}

.bottom-banner {
margin-top: 136px;
.browsing {
font-size: 16px;
}
footer {
font-size: 4px;

.keyword {
margin-top: 16px;
}
}
/* mobile_size(375px~767px) */
@media (max-width: 767px) {
/* mobile_size */
@media (max-width: 768px) {
.top-navigation {
padding-right: 16px;
padding-left: 16px;
Expand Down