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

[이보성] Week2 #48

Conversation

9reent
Copy link
Collaborator

@9reent 9reent commented Feb 25, 2024

요구사항

기본

  • UI 디자인 기초 토픽을 수강해 보세요. (https://www.codeit.kr/topics/ui-design-basics)
  • 피그마 디자인에 맞게 PC사이즈 랜딩 페이지,회원가입 페이지를 만들어 주세요.
  • React와 같은 UI 라이브러리를 사용하지 않고 진행합니다.
  • 랜딩 페이지의 url path는 루트(‘/’)입니다.
  • 로그인 페이지의 url path는 ‘/signin’ 입니다.
  • 회원가입 페이지의 url path는 ‘/signup’ 입니다.
  • 아래로 스크롤 해도 “Linkbrary” 로고와 “로그인” 버튼이 있는 상단 네비게이션 바(Global Navigation Bar)가 최상단에 고정되게 해주세요.
  • HTML, CSS 파일을 Netlify로 배포해 주세요. (참고: https://www.codeit.kr/learn/5309)

심화

  • palette에 있는 color값들을 css 변수로 등록하고 사용해 주세요.
  • 비밀번호 input 요소 위에 비밀번호를 확인할 수 있는 아이콘을 추가해 주세요.

주요 변경사항

스크린샷

image

멘토에게

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

@9reent 9reent requested a review from devToram February 25, 2024 12:00
@9reent 9reent added the 순한맛🐑 마음이 많이 여립니다.. label Feb 25, 2024
Copy link
Collaborator

@devToram devToram left a comment

Choose a reason for hiding this comment

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

스크린샷 2024-02-26 오전 12 48 32 화면을 줄이면 이렇게 정렬이 깨지고, 문자 개행이 망가져버립니다! 이 부분 헤딩해보심 좋을 거 같아요!

수고하셨습니다 :)

<body>
<div class="container">
<nav class="nav">
<a href="/"><img src="./logo.svg" alt="" class="logo hoverc"></a>
Copy link
Collaborator

Choose a reason for hiding this comment

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

img 태그엔 꼭꼭 alt 속성값 채워주세요!

Copy link
Collaborator

Choose a reason for hiding this comment

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

hoverc 는 hoverclass 라는 뜻일까요? 그렇다면 그냥 hover 라고만 쓰셔도 될 거 같습니다!

</div>
<main>
<div class="sec one">
<div class="sec one body">
Copy link
Collaborator

Choose a reason for hiding this comment

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

classname 을 one, two 처럼 짓는 것은 지양해주세요! 어떤 기능을 하는가를 기준으로 지으시는 걸 추천드립니다!
그리고 태그명을 대체하는 클래스명(sec, body)도 그냥 태그에 바로 스타일을 먹이시는 걸 추천드립니다!

Comment on lines +1 to +23
:root {
--gra-purpleblue-to-skyblue: linear-gradient(91deg, #6D6AFE 0.12%, #6AE3FE 101.84%);
--gra-purpleblue-to-pink: linear-gradient(91deg, #6D6AFE 17.28%, #FF9F9F 74.98%);
--gra-pink-to-blue: linear-gradient(96deg, #FE8A8A 1.72%, #A4CEFF 74.97%);
--gra-yello-to-blue:linear-gradient(277deg, #6FBAFF 59.22%, #FFD88B 93.66%);
--gra-blue-to-blue:linear-gradient(99deg, #6D7CCD 19.76%, rgba(82, 136, 133, 0.22) 52.69%);
--gra-skyblue-to-blue:linear-gradient(271deg, #FE578F -9.84%, #68E8F9 107.18%);
--purple-color: #6D6AFE;
--red-color: #FF5B56;
--black-color: #111322;
--white-color: #FFFFFF;
--gray1-color: #3E3E43;
--gray2-color: #9FA6B2;
--gray3-color: #CCD5E3;
--gray4-color: #E7EFFB;
--gray5-color: #F0F6FF;
--gray6-color: #6B6B6B;
}

*{
box-sizing: border-box;
}

Copy link
Collaborator

Choose a reason for hiding this comment

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

공통되는 스타일들은 한 번만 정의하고 다른 곳에서 가져오는 식으로 짜시는 걸 추천드립니다!

</main>
</div>
<footer>
<div class="footcontainer">
Copy link
Collaborator

Choose a reason for hiding this comment

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

따로 ~container 로 묶지 않으시고 바로 시맨틱 태그에 클래스명 적고 스타일 주셔도 좋을 거 같아요!

@devToram devToram merged commit 28bf7ec into codeit-bootcamp-frontend:part1-이보성 Feb 25, 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