Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[박지민] sprint2 #43

Conversation

jiminp00
Copy link
Collaborator

요구사항

  • 피그마 디자인에 맞게 작업 후 PR요청
  • Nertify를 통한 배포

기본(sprint1 부분)

  • 랜딩 페이지의 url path는 루트(‘/’)로 설정합니다.
  • title은 “판다마켓”로 설정합니다.
  • 화면의 너비가 1920px 이상이면 하늘색 배경색은 너비를 꽉 채우도록 채워지고, 내부 요소들의 위치는 고정되고, 여백만 커지도록 합니다.
  • 화면의 너비가 1920px 보다 작아질 때, “판다마켓” 로고의 왼쪽 여백 200px“로그인" 버튼의 오른쪽 여백 200px이 유지되고, 화면의 너비가 작아질수록 두 요소간 거리가 가까워지도록 설정합니다.
  • 클릭으로 기능이 동작해야 하는 경우, 사용자가 클릭할 수 있는 요소임을 알 수 있도록 CSS 속성 cursor: pointer 로 설정합니다.
  • “판다마켓” 클릭 시 루트 페이지(‘/’)로 이동합니다.
  • '로그인'버튼 클릭 시 로그인 페이지(‘/login’)로 이동합니다 (빈 페이지)
  • “구경하러가기”버튼 클릭 시(’/items’)로 이동합니다.(빈 페이지)
  • “Privacy Policy”, “FAQ”는 클릭 시 각각 Privacy 페이지(‘/privacy’), FAQ 페이지(‘/faq’)로 이동합니다.(모두 빈 페이지)
    (* 빈페이지는 title에 이름을 적어 페이지 이동만 확인할수있게 해두었습니다.)
  • 페이스북, 트위터, 유튜브, 인스타그램 아이콘을 클릭 시 각각의 홈페이지로 새로운 창이 열리면서 이동합니다.

기본(sprint2 부분)

  • "판다마켓" 로고 클릭 시 루트 페이지(“/”)로 이동합니다.
  • 로그인 페이지, 회원가입 페이지 모두 로고 위 상단 여백이 동일합니다.
  • input 요소에 focus in 일 때, 테두리 색상은 #3692FF입니다.
  • input 요소에 focus out 일 때, 테두리는 없습니다.
  • SNS 아이콘들은 클릭시 각각 실제 서비스 홈페이지로 이동합니다.
  • “회원가입”버튼 클릭 시 “/signup” 페이지로 이동합니다.
  • “로그인”버튼 클릭 시 “/login” 페이지로 이동합니다.

심화

  • palette에 있는 color값들을 css 변수로 등록하고 사용해 주세요.
  • 비밀번호 input 요소 위에 비밀번호를 확인할 수 있는 아이콘을 추가해 주세요.

주요 변경사항

스크린샷

basic_landingpage_1
basic_login

멘토에게

  • 셀프 코드 리뷰를 통해 질문 이어가겠습니다.

@jiminp00 jiminp00 self-assigned this Aug 18, 2024
@jiminp00 jiminp00 added the 매운맛🔥 뒤는 없습니다. 그냥 필터 없이 말해주세요. 책임은 제가 집니다. label Aug 18, 2024
Copy link
Collaborator

@hoody-jellybean hoody-jellybean Aug 19, 2024

Choose a reason for hiding this comment

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

벡터 이미지로 나타낼 수 있는 이미지는 SVG 확장자로 export 하시는걸 추천드립니다. :)
(아이콘, 서비스 로고 등)

</a>
<a class="login-button" href="login.html">로그인</a>
</header>
<!-- 상단 배너 -->
Copy link
Collaborator

@hoody-jellybean hoody-jellybean Aug 19, 2024

Choose a reason for hiding this comment

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

페이지 내 주요 콘텐츠 요소들을 <main/> 태그로 묶어주시면 더 좋을 것 같습니다!

Comment on lines +77 to +80
<img src="assets/ic_facebook.png" alt="페이스북 바로가기">
<img src="assets/ic_twitter.png" alt="트위터 바로가기">
<img src="assets/ic_youtube.png" alt="유튜브 바로가기">
<img src="assets/ic_instagram.png" alt="인스타그램 바로가기">
Copy link
Collaborator

Choose a reason for hiding this comment

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

유의미한 대체 텍스트 잘 적용하셨습니다. 👍
푸터 내 SNS 아이콘은 클릭 시 해당 서비스로 이동하도록 되어 있는 것으로 알고 있는데, <a/> 태그 적용해야 하는지 한 번 확인해 주세요~

Comment on lines +52 to +54
<p class="card-header">Register</p>
<p class="card-title">판매를 원하는<br>상품을 등록하세요</p>
<p class="card-explain">어떤 물건이든 판매하고 싶은 상품을<br>쉽게 등록하세요</p>
Copy link
Collaborator

Choose a reason for hiding this comment

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

각 섹션의 헤딩 요소는 <h1/> - <h6/> 요소를 나타내시면 더 좋을 것 같습니다!

Comment on lines +13 to +16
<form class="fields">
<div class="field">
<label for="email">이메일</label>
<input id="email" name="email" type="email" placeholder="이메일을 입력해주세요">
Copy link
Collaborator

Choose a reason for hiding this comment

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

폼 요소에 <form/> 태그 사용하시고, 각 필드에 id와 for 속성을 올바르게 지정하셨네요. 잘 하셨습니다! 👍

<input id="password" name="password"type="password" placeholder="비밀번호를 입력해주세요">
<img class="visibility-icon" src="assets/btn_visibility_off_24px.png">
</div>
<button>로그인</button>
Copy link
Collaborator

Choose a reason for hiding this comment

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

<form/> 태그 내에 여러 버튼을 사용할 수 있는데요. type='submit' 또는 별도로 지정하지 않은 버튼은 양식 제출 버튼으로 사용됩니다. 나중에 참고하시면 좋을 것 같네요~!!

Comment on lines +1 to +3
* {
box-sizing: border-box;
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

요소의 스타일을 초기화하는 CSS 파일은 reset 파일을 별도로 생성하셔서 사용하셔도 좋을 것 같습니다.
그리고 Reset CSS 또는 Normalize CSS 사용도 검토해 주세요~!

.header {
position: fixed;
top: 0;
z-index: 1;
Copy link
Collaborator

@hoody-jellybean hoody-jellybean Aug 19, 2024

Choose a reason for hiding this comment

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

서비스 규모가 커지게 되면 z-index를 사용하는 곳이 많아지게 되는데요.
실제 서비스 중인 기업의 디자인 시스템에서 z-index 디자인 토큰을 어떻게 관리하고 있는지 한 번 보시면 좋을 것 같아 참고 차 공유드립니다.

Comment on lines +87 to +96
.main-content>section {
height: 720px;
background-color: #ffffff;

display: flex;
justify-content: center;
align-items: center;
}

.main-content>section.odd {
Copy link
Collaborator

Choose a reason for hiding this comment

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

선택자 활용 좋습니다! 👍

Comment on lines +123 to +129
.card.odd {
flex-direction: row;
}

.card.even {
flex-direction: row-reverse;
}
Copy link
Collaborator

@hoody-jellybean hoody-jellybean Aug 19, 2024

Choose a reason for hiding this comment

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

odd, even으로 처리하신 방식 좋네요. 👍
nth-child 선택자도 사용 가능하니 참고해 주세요~ :)

background-color: #F3F4F6;
border-width: 0px;

font-family: Pretendard, sans-serif;
Copy link
Collaborator

@hoody-jellybean hoody-jellybean Aug 19, 2024

Choose a reason for hiding this comment

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

font-familyinherited property에 해당합니다. (inherit 명시 없이도 상위 요소의 값을 상속해 사용할 수 있습니다.)
body에 글꼴을 설정해주셔서 별도로 작성하실 필요 없습니다~!

CSS가 Cascading Style Sheets의 약자임을 기억해 주세요. :)

@hoody-jellybean
Copy link
Collaborator

고생 많으셨습니다. 반응형 확인 + 스타일 정상 적용 확인을 위해 배포한 도메인도 함께 공유해주시면 좋을 것 같습니다~!!

@hoody-jellybean
Copy link
Collaborator

hoody-jellybean commented Aug 19, 2024

이전에 생성한 PR에 문제가 있어 새로 생성해주셨다고 합니다. 참고 부탁드립니다~

@hoody-jellybean hoody-jellybean merged commit d2a7e4c into codeit-bootcamp-frontend:Basic-박지민 Aug 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
매운맛🔥 뒤는 없습니다. 그냥 필터 없이 말해주세요. 책임은 제가 집니다.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants