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 #39

Merged

Conversation

Stemplun
Copy link
Collaborator

@Stemplun Stemplun commented Sep 7, 2024

요구사항

기본

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

심화

  • [x]사용자의 브라우저가 크고 작아짐에 따라 페이지의 요소간 간격, 요소의 크기, font-size 등 모든 크기와 관련된 값이 크고 작아지도록 설정해 보세요.(설정값은 자유입니다)
  • []

주요 변경사항

스크린샷

image
image
image
image

멘토에게

  • 지금까지 한 코드 중 불필요하거나 효율적이지 않은 부분을 말씀해주셨으면 좋겠습니다.
  • 학업으로 해야할게 많아 얼마 하지 못했습니다.
  • 셀프 코드 리뷰를 통해 질문 이어가겠습니다.

@Stemplun Stemplun added 미완성🫠 죄송합니다.. 순한맛🐑 마음이 많이 여립니다.. labels Sep 7, 2024
@Stemplun Stemplun requested a review from lang92 September 9, 2024 10:46
Copy link
Collaborator

@lang92 lang92 left a comment

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.

파일명은 어떤 페이지를 나타내는지 알 수 있도록 명확하게 작성해 주세요!

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>판다마켓</title>
<link rel="stylesheet" href="default.css">
Copy link
Collaborator

Choose a reason for hiding this comment

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

css 파일도, 어떤 html 파일과 매칭되는지 알 수 있게 명확히 네이밍해주시는 게 좋습니다.

Comment on lines +58 to +63
<div>
<h1>
믿을 수 있는<br>
판다 마켓 중고 거래
</h1>
</div>
Copy link
Collaborator

Choose a reason for hiding this comment

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

  • h1, h2 태그와 같은 heading 태그를 사용할 땐 권장되는 사용 방식들이 있습니다. 이미 동일 문서에 h1 태그를 사용했다면, 이후에는 사용을 지양해야 합니다. 참고해 주세요!
    image
  • 비어있는 div로 한 depth 더 감싸신 이유가 있을까요?

Comment on lines +30 to +32
.canClick:hover{
cursor: pointer;
}
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 +36 to +38
.sect1, .sect2{
background: #CFE5FF;
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

동일한 스타일을 가지는 요소라면 class를 분리할 필요 없이 범용적인 이름의 class 하나만 생성해 적용해주시면 됩니다.

margin: 0;
}
header{
max-width: 1,920px;
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 +73 to +99
}
.homeBottom{
width: 1,110px;
height: 397px;
position:absolute;
top: 143px;
left: 405px;
gap: 69px;
opacity: 0px;
align-items: center;
display: flex;
}
.homeBottom > div{
width: 295px;
height: 172px;
padding: 0px 0px 60px 0px;
gap: 5px;
opacity: 0px;
}
.homeBottom > div >h1{
font-family: Pretendard;
font-size: 32px;
font-weight: 900;
line-height: 56px;
text-align: left;
color: #374151;
}
Copy link
Collaborator

@lang92 lang92 Sep 10, 2024

Choose a reason for hiding this comment

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

새로운 선택자 간에는 가독성을 위해 한 줄씩 띄워주시면 좋습니다.

top: 143px;
left: 405px;
gap: 69px;
opacity: 0px;
Copy link
Collaborator

Choose a reason for hiding this comment

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

opacity는 0과 1 사이의 숫자값을 작성해야 합니다.
내가 작성한 내용이 올바르게 적용되는지 반드시 확인해 주세요!

Comment on lines +85 to +99
.homeBottom > div{
width: 295px;
height: 172px;
padding: 0px 0px 60px 0px;
gap: 5px;
opacity: 0px;
}
.homeBottom > div >h1{
font-family: Pretendard;
font-size: 32px;
font-weight: 900;
line-height: 56px;
text-align: left;
color: #374151;
}
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 +129 to +137
footer{
width: 1,920px;
height: 160px;
top: 3448px;
padding: 32px 400px;
gap: 10px;
opacity: 0px;

}
Copy link
Collaborator

Choose a reason for hiding this comment

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

width, top, opacity 속성은 적용되지 않았을 것 같네요!

Copy link
Collaborator

Choose a reason for hiding this comment

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

개발자도구 elements 패널의 하단 styles 탭에서 특정 요소에 적용되는 스타일을 확인하실 수 있습니다.
image

@lang92 lang92 changed the base branch from main to Basic-이하림 September 10, 2024 06:58
@lang92 lang92 merged commit 7988716 into codeit-bootcamp-frontend:Basic-이하림 Sep 10, 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