-
Notifications
You must be signed in to change notification settings - Fork 35
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
[이재완] Sprint3 #86
The head ref may contain hidden characters: "Basic-\uC774\uC7AC\uC644-sprint3"
[이재완] Sprint3 #86
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.
10만큼, 30만큼, 70만큼 했더라도 공개하지않으면 0이랑 같아요!
미완성이라도 잘 올려주셨어요!
앞으로도 계속 화이팅!!
<a href="/" id="panda-market-logo"> | ||
<picture> | ||
<source srcset="images/logo/panda-market-logo-mobile-text.png" media="(max-width: 767px)"> | ||
<source srcset="images/logo/panda-market-logo.png" media="(max-width: 1200px)"> | ||
<img src="images/logo/panda-market-logo.png" alt="판다마켓 홈" width="153"> | ||
</picture> | ||
</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.
picture 태그로 반응형 이미지 제공하고 있군요! 굳굳!! 👍🏻
background-color: var(--gray900); | ||
color: var(--gray400); |
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.
좋습니다!
컬러 변수로 바꾸니 같은 gray여도 어둡거나 밝거나 차이를 알기 쉬워졌어요!
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.
index.html이랑 셋트셋트로 쓰이는 것 같은 css네요
home.css -> index.css로 수정해보는건 어떨까요?
top: 0; | ||
} | ||
|
||
#panda-market-logo { |
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.
id 선택자는 class도 써보고, tag도 써보고 다 써봤는데도 안되면 꺼내는 카드로 써보시는건 어떨까요?
대부분은 class로도 커버가 가능합니다. :-)
header { | ||
width: 100%; | ||
height: 70px; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
background-color: var(--white); | ||
border-bottom: 1px solid #dfdfdf; | ||
/* Sprint Mission 2 기본 요구사항: | ||
아래로 스크롤 해도 상단 네비게이션 바(Global Navigation Bar)가 최상단에 고정됩니다. */ | ||
position: fixed; | ||
top: 0; | ||
} |
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.
미디어 쿼리에서 동일한 규칙이 반복되서 사용되고, 크기나 다른 수치가 달라지고 있는건 없어서
미디어 쿼리에 포함되지않아도 무방한 공통 코드 인 것 같아요
요구사항
기본
PC: 1200px 이상
Tablet: 768px 이상 ~ 1199px 이하
Mobile: 375px 이상 ~ 767px 이하
375px 미만 사이즈의 디자인은 고려하지 않습니다
심화
주요 변경사항
멘토에게