-
Notifications
You must be signed in to change notification settings - Fork 79
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
The head ref may contain hidden characters: "part1-\uC774\uB300\uC591-sprint1"
[이대양] Sprint1 #39
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
경험이 있으셔서 그런지 잘 만드셨네요 ㅎㅎ 고생하셨습니다!
@@ -0,0 +1,115 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
페이지에 한글이 들어가기 때문에 lang="ko"로 바꿔주시면 어떨까요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵!!
<a href="/"> | ||
<img src="assets/logo.png" alt="판다마켓 로고" /> | ||
</a> | ||
<a href="signin.html"><button class="login-button">로그인</button></a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이유는 없습니다 ㅠㅠ prettier extension을 너무 믿고 indentation 신경을 너무 안쓴 것 같습니다!
아래 a 태그에 개행 추가했습니다!
:root { | ||
--brand-color: #3692ff; | ||
--button-hover: #1967d6; | ||
--button-clicked: #1251aa; | ||
--banner-background: #cfe5ff; | ||
--gray-200: #e5e7eb; | ||
--gray-400: #9ca3af; | ||
--gray-700: #374151; | ||
--gray-900: #111827; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
컬러를 따로 관리해주시는 점 좋네요! 이렇게 활용하면 어떤 점이 좋은지도 알고 계신가요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
일반적인 프로그래밍에서 변수를 사용하는 이유와 같다고 생각합니다!
컬러 코드 적용하기 편리하며, 컬러가 바뀔 때 모든 라인이 아니라 :root 안에 변수 값만 바꿔주면 되고,
협업 시에 따로 color 파일을 import하는 식으로 사용해서 편리하다고 생각합니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
잘알고 계시네요 ㅎㅎ
gap: 32px; | ||
} | ||
.main_banner .container .text_wrapper h1, | ||
.footer_banner .container .text_wrapper h1 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
두 가지 경우의 h1에서 같은 폰트 스타일을 사용하고 있는 경우기때문에, 해당 css를 class명으로 따로 지정해주면 필요할때만 꺼내서 사용할 수 있어서 더 편리할 것 같습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
그것은 사람 스타일마다 차이가 좀 있을것 같습니다. 저는 개인적으로 간결하게 적는것을 좋아해서 두번째 방법을 주로 사용합니다!
footer .container .footer_nav a { | ||
font-weight: 400; | ||
font-size: 16px; | ||
line-height: 19.09px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
브라우저는 소수점 단위의 픽셀 값을 처리할 때, 이를 가장 가까운 정수 값으로 반올림하거나 내림하여 해상도나 표시 품질에 영향을 줄 수 있습니다. 그런데 이런 올리고 내리는 방식이 브라우저마다 달라서 이슈가 생길 수 있기 때문에 px 값에 소수점이 들어가는 것은 권장하지 않습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아 그렇군요..처음 알았습니다! 명심하겠습니다!!
상세한 리뷰 감사드립니다 :) :) :)
요구사항
기본
심화
주요 변경사항
스크린샷
멘토에게