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

[송현정] sprint1 #30

Merged
merged 1 commit into from
Mar 18, 2024
Merged

[송현정] sprint1 #30

merged 1 commit into from
Mar 18, 2024

Conversation

Haze-S
Copy link

@Haze-S Haze-S commented Mar 15, 2024

요구사항

기본

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

심화

  • palette에 있는 color값들을 css 변수로 등록하고 사용해 주세요.

주요 변경사항

사이트로 이동

스크린샷

스크린샷 2024-03-15 오후 6 28 40

멘토에게

  • 이렇게 PR을 날리는 게 처음이라 커밋 시작이 꼬였네요 🥲
  • 깃헙 레포의 반영으로 홈페이지 업데이트가 이루어지게 하고 싶어서 개인 깃헙 레포에서 작업을 했더니 해당 브랜치에는 커밋이 제대로 이루어지지 않았습니다ㅠㅠ 스프린트 2부터는 커밋 구간이랑 메세지 잘 작성해볼게요..
  • 미완성이라 죄송합니다😭

@Haze-S Haze-S added the 미완성🫠 죄송합니다.. label Mar 15, 2024
@Haze-S Haze-S requested a review from addiescode-sj March 16, 2024 00:23
@Haze-S Haze-S added the 매운맛🔥 뒤는 없습니다. 그냥 필터 없이 말해주세요. 책임은 제가 집니다. label Mar 18, 2024
Copy link
Collaborator

@addiescode-sj addiescode-sj left a comment

Choose a reason for hiding this comment

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

현정님~!
우선 완성하신 부분까지 체크해서 리뷰 드려봤어요.
코멘트 참고해보시고, 다음주 미션 제출하실때 개선하실 수 있는 부분은 개선해보면 좋을것같아요.
(네이밍, css 연결방식에 따른 우선순위 등)

이번주도 화이팅입니다! 수고하셨어요 👏

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
Copy link
Collaborator

Choose a reason for hiding this comment

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

메타태그까지 적용해주셨네요 👍 꼼꼼하십니다!

Copy link
Collaborator

Choose a reason for hiding this comment

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

다양한 시맨틱 태그를 활용해서 적절하게 잘 작성하신것같아요. 굳굳 👍

</div>
</section>
<!-- search -->
<section class="flex-reverse">
Copy link
Collaborator

Choose a reason for hiding this comment

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

flex reverse스타일 주신것도 좋네요! 다만 이름이 상태만 나타낸다기보다는 어떤 역할을 하는지 좀더 잘 보이게 네이밍 고려해보면 좋을것같아요. html + css의 경우 BEM 네이밍 규칙을 일반적으로 많이 적용하긴한답니다,
아래 아티클 참고해서 사용해보세요! :)

https://nykim.work/15

<h2>
Search
</h2>
<p>
Copy link
Collaborator

Choose a reason for hiding this comment

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

paragraph안에서 나눠지는 텍스트는 span 인라인 요소를 사용하는 편이 깔끔하죠 :)
잘하셨습니다~!

</section>
<!-- Register -->
<section>
<img src="img/Img_home_03.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.

alt 텍스트도 잊지않고 챙겨주셨네요 👍 👍

<img src="img/Img_home_bottom.png" alt="판다마켓 광고 배너"/>
</div>
</aside>

Copy link
Collaborator

Choose a reason for hiding this comment

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

요런 필요없는 공백은 PR 올리기전에 삭제해주시는게 좋습니다!

@@ -0,0 +1,198 @@
@import "reset.css";
Copy link
Collaborator

Choose a reason for hiding this comment

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

import 방식으로 잘 가지고오셨네요 👍
css파일을 연결하는 방식에 따라서도 우선순위가 조절되기때문에
한가지 방식으로 통일해서 가져오시는게 좋답니다!

자세한 디테일은 블로그 참고해보세요 :)

}

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

Choose a reason for hiding this comment

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

굳굳! flex item의 순서를 조절하고싶으면 order라는 속성을 사용하셔도됩니다 :)
mdn 문서 참고해보세요!

https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_flexible_box_layout/Ordering_flex_items

@addiescode-sj addiescode-sj merged commit 3a73003 into codeit-bootcamp-frontend:part1-송현정 Mar 18, 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