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

Conversation

kotaeho
Copy link
Collaborator

@kotaeho kotaeho commented Aug 10, 2024

요구사항

기본

  • 랜딩 페이지의 url path는 루트(‘/’) 입니다.
  • title은 “판다마켓”으로 설정해 주세요.
  • 화면의 너비가 1920px 이상이면 하늘색 배경색은 너비를 꽉 채우도록 채워지고, 내부 요소들의 위치는 고정되고, 여백만 -
  • 커지도록 해주세요.
  • 화면의 너비가 1920px 보다 작아질 때, “판다마켓” 로고의 왼쪽 여백 200px“로그인" 버튼의 오른쪽 여백 200px이 유지되고,-
  • 화면의 너비가 작아질수록 두 요소간 거리가 가까워지도록 해주세요.
  • 클릭으로 기능이 동작해야 하는 경우, 사용자가 클릭할 수 있는 요소임을 알 수 있도록 cursor: pointer를 설정해 주세요.
  • “판다마켓” 클릭 시 루트 페이지(‘/’)로 이동시켜주세요.
  • “구경하러 가기" 클릭 시 (“/items”)페이지로 이동시켜주세요.(빈 페이지)

심화

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

주요 변경사항

  • 기본 사항 구현

스크린샷

https://66b6c74acc7773b04ed9bcb6--weekly-kotaeho.netlify.app/

멘토에게

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

@kotaeho kotaeho added the 매운맛🔥 뒤는 없습니다. 그냥 필터 없이 말해주세요. 책임은 제가 집니다. label Aug 10, 2024
@kotaeho kotaeho changed the base branch from main to Basic-고태호 August 10, 2024 06:04
Copy link
Collaborator

Choose a reason for hiding this comment

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

.github 디렉토리 내의 파일은 Github에서 사용할 템플릿, 워크플로우 등을 정의합니다.
템플릿은 그대로 두시고, PR에서 템플릿 양식만 가져와서 수정해주세요~!

Copy link
Collaborator Author

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.

백터 이미지를 사용할 수 있는 아이콘 요소들은 svg 파일로 사용하시는 걸 추천합니다!

Copy link
Collaborator Author

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.

각 화면 요소에 적절한 시멘틱 태그를 잘 사용해 주셨습니다. 👍

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

감사합니다

<div>
<input id="password" type="password" placeholder="비밀번호를 입력해주세요">
</div>
<input id="login_btn"type="submit" value="로그인">
Copy link
Collaborator

@hoody-jellybean hoody-jellybean Aug 18, 2024

Choose a reason for hiding this comment

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

폼 제출 버튼 요소는 <button type='submit'/>을 사용하셔도 됩니다.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

넹 감사합니다

Comment on lines +1 to +24
/*
전체 선택자(*) 및 a, button, img 태그에 대한 CSS는 새로운 웹 개발 프로젝트를 시작할 때 전역 스타일에 기본적으로 넣어주면 좋은 내용들입니다.
브라우저 간의 스타일 차이를 최소화하고 예측 가능한 레이아웃을 위해 브라우저 기본 세팅을 일부 리셋해 준다고 생각하면 됩니다.
*/

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* 링크가 상위 요소 또는 설정된 기본 텍스트 색상과 동일하게 표현되길 원한다면 a 태그에 명시적으로 color: inherit을 지정해 줘야 합니다. */
a {
text-decoration: none;
color: inherit;
}

button {
background: none;
border: none;
outline: none;
box-shadow: none;
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.

브라우저의 각 요소 별 스타일 초기화 속성을 잘 처리하셨네요.
직접 작성하셔도 되지만, 크로스 브라우징까지 대응하려면 resetCSS 또는 normalizeCSS를 적용하시는걸 추천드립니다.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

네 전에 멘토님 말씀해주신거 기억하고 있습니다. 말씀들으니 resetCSS 또는 normalizeCSS는 필수라고 생각합니다. 감사합니다

font-size: 16px;
}

#footerMenu {
Copy link
Collaborator

Choose a reason for hiding this comment

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

클래스 대신 ID를 사용하시는 이유가 있을까요?

Comment on lines +54 to +55
background-color: #ffffff;
border-bottom: 1px solid #dfdfdf;
Copy link
Collaborator

@hoody-jellybean hoody-jellybean Aug 18, 2024

Choose a reason for hiding this comment

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

색상은 CSS Custom property로 선언하셔서 사용하시면 더 좋을 것 같습니다.
위클리 과제에서 디자인 시스템 색상 파운데이션을 사용하기 좋도록 잘 정리해 놓으신걸로 알고 있습니다~!

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

아하 넵!

@hoody-jellybean
Copy link
Collaborator

PR 리뷰 요청 주신 내용하고, 배포된 사이트하고 차이가 좀 있는 것 같은데 한 번 확인 부탁드립니다~!
첫 위클리 과제 고생하셨습니다.

@hoody-jellybean hoody-jellybean merged commit b8fc20a into codeit-bootcamp-frontend:Basic-고태호 Aug 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