-
Notifications
You must be signed in to change notification settings - Fork 44
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
[정지성] Week2 #40
The head ref may contain hidden characters: "part1-\uC815\uC9C0\uC131-week2"
[정지성] Week2 #40
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.
첫번째 미션 고생하셨습니다!
기한 맞춰 제출해주시고 시안에 들어가는 요소들은 다 추가해주셨네요.
배포한 사이트 확인해봤는데 질문 남겨주신 것처럼 브라우저 크기를 줄이고 키웠을 때 의도한 대로 구현이 되지 않은 것 같습니다.
반응형 디자인을 구현할 때 폰트 사이즈는 rem 단위를 많이 사용하므로 요걸 찾아보시면 좋을 것 같고, 이미지 사이즈는 따로 지정하지 않고 이미지 요소를 감싸고 있는 컨테이너 요소를 상대적인 단위로 설정하고, 이미지는 컨테이너에 꽉차는 형태로 수정해보면 어떨까 합니다!
반응형 디자인 관련해선 아래 도요타 사이트를 참고해보세요. 어떤 단위를 사용했는지를 중점적으로 보시면 좋을 것 같습니다.
https://www.toyota.co.kr/?utm_source=google&utm_medium=paidsearch&utm_campaign=brand&utm_content=all&gad_source=1&gclid=CjwKCAiA0PuuBhBsEiwAS7fsNUgPL1grAypC4khuLvNKWNTkcBg1JrjlLKmB1qcfh1dmbWPNDreqXBoCXiEQAvD_BwE
@@ -0,0 +1,113 @@ | |||
<!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 속성값으로 en 을 지정해주셨네요.
lang 은 사용할 언어를 정의하는 것이고 한국어로 디자인된 사이트를 작업하고 있으니
한국어를 나타내는 값으로 수정해야 합니다.
찾아보시고 수정해주세요!
z-index: 1; | ||
} | ||
.Linkbrary-logo { | ||
width: 133px; height: 24px; |
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="signin.html"><button class="blue-button">로그인</button></a> | ||
</header> | ||
<main> | ||
<div class="section1"> |
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.
section1 과 content1 클래스를 가진 div 를 하나로 합치면 좋을 것 같습니다.
중첩해서 관리해야하는 이유가 분명하지 않다면 필요한 태그만 남기는 게 구조를 파악하기가 쉽기 때문입니다.
@@ -0,0 +1,251 @@ | |||
:root { | |||
--primary : #6D6AFE; |
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 {
--primary: #FFFFFF;
}
구글 컨벤션 링크 첨부합니다.
https://google.github.io/styleguide/htmlcssguide.html#Declaration_Stops
font-weight: 400; | ||
font-style: normal; | ||
} | ||
* { |
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.
전역적으로 모든 태그에 폰트가 설정되도록 해주셨네요 👍
추가로 말씀드리고 싶은 건 대소문자인데요.
font-face 로 지정한 폰트 명이 'Pretendard-Regular' 인데 'pretendard-Regular' 로 설정해주셨어요.
font-family 에 설정하는 폰트 명은 대소문자를 구분하지 않기 때문에 정상동작 하겠지만 혼선이 있을 수 있으니 대소문자도 일치시켜 작업해주시면 좋을 것 같습니다.
body { | ||
margin: 0; | ||
width: inherit; | ||
|
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,133 @@ | |||
:root { |
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.
css 파일 네이밍을 의미있게 수정하면 좋을 것 같습니다.
signin 페이지에서 사용되는 스타일시트니 signin.css 를 추천드립니다.
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.
또한 해당 색상 변수나 글꼴 설정은 여러 페이지에서 동일한 값을 사용하고 있다보니
color.css 와 같은 파일을 생성해 import 해서 사용하면 불필요한 중복을 줄일 수 있습니다.
요구사항
기본
심화
주요 변경사항
스크린샷
https://2nd-week-mission-team12-jisungjeong.netlify.app/
멘토에게