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

Draft
wants to merge 3 commits into
base: part1-이서영
Choose a base branch
from

Conversation

00TaciTa00
Copy link
Collaborator

@00TaciTa00 00TaciTa00 commented Nov 8, 2023

요구사항

기본

  • 2주차 부터는 Github에 Pull Request를 만들어 주세요.
  • Netlify에 파일 배포가 아닌 포크한 Github 레포지토리와 연결해 주세요.
  • 아래로 스크롤 해도 "Linkbrary"로고와 "로그인" 버튼이 있는 상단 네비게이션 바(Global Navigation Bar)가 최상단에 고정되게 해주세요.
  • (로그인, 회원 가입 페이지 공통)
  • Linkbrary 로고 클릭시 루트 페이지("/")로 이동해야 합니다.
  • 로그인 페이지, 회원가입 페이지 모두 로고 위 상단 여백이 동일해야 합니다.
  • input 요소에 focus in 일 때, 테두리 색상은 파랑색입니다. (pseudo class를 활용해 보세요)
  • input 요소에 focus out 일 때, 테두리 색상은 회색입니다.
  • input 요소에 빨강색 테두리와 아래 빨강색 문구는 무시해 주세요.(추후 만들어갈 예정이에요.)
  • SNS 아이콘들은 클릭시 각각 “https://www.google.com/”, “https://www.kakaocorp.com/page/” 으로 이동합니다.
  • “로그인 하기”는 클릭시 “/signin” 페이지로 이동합니다.

심화

  • 비밀번호 input 요소 위에 눈모양 아이콘을 추가해 주세요.(추후 클릭으로 비밀번호를 보거나 가릴 수 있도록 기능을 만들어 갈 예정이에요.)
  • palette에 있는 color값들을 css 변수로 등록하고 사용해 주세요.

주요 변경사항

  • Landing Page, SignIn Page, SignUp Page 완성

스크린샷

image
image
image

멘토에게

  • 늦게 올려드려서 죄송합니다.
  • 3주차 진행사항이 조금 섞여 있습니다. (nav바 고정 등)
  • 셀프 코드 리뷰를 통해 질문 이어가겠습니다.

@00TaciTa00 00TaciTa00 marked this pull request as draft November 8, 2023 11:15
@00TaciTa00 00TaciTa00 added the 순한맛🐏 마음이 많이 여립니다... label Nov 8, 2023
@00TaciTa00 00TaciTa00 requested a review from soonoo27 November 8, 2023 11:17
Copy link
Collaborator

Choose a reason for hiding this comment

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

main-bg1.png 정도면 더 명확하게 이미지의 역할을 파악할 수 있을 것 같습니다!

@@ -0,0 +1,148 @@
.body {
color: var(--black, #000);
Copy link
Collaborator

Choose a reason for hiding this comment

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

--black, --linkbrary-bg 등 CSS 변수에 대한 선언이 빠졌네요,
기본값을 명시해주셔서 정상적으로 스타일이 적용되긴 하겠지만... 사용하고 계신 변수들은 선언 후에 사용해주세요.

Comment on lines +118 to +123
.social-icon {
width: 42px;
height: 42px;
position: relative;
width: 42px;
height: 42px;
Copy link
Collaborator

Choose a reason for hiding this comment

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

width, height 선언이 두번씩 들어가 있습니다.
의도하신게 아니라면 불필요한 중복 코드는 제거해주세요!

<header>
<nav>
<a href="index.html">
<img src="./images/logo.svg" alt="홈으로 연결된 Linkbrary 로고" />
Copy link
Collaborator

Choose a reason for hiding this comment

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

파일 별로 상대 경로(ex. ./imagegs/logl.svg)와 절대 경로(ex. /imagegs/logl.svg)를 혼용하고 계신데요,
한 프로젝트 내에서는 한가지 방법으로 통일하는게 일관성, 가독성을 위해 좋습니다.
절대 경로/상대 경로에 대해 알아보시고 원하는 방법 한가지로 통일해서 사용해 주세요.

Comment on lines +17 to +21

position:fixed;
top: 0;
background-color: #edf7ff;
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

fixed 속성으로 nav 고정을 잘 구현해주셨네요 👍

Comment on lines +139 to +147
#icon-kakao {
width: 26px;
height: 24px;
flex-shrink: 0;
z-index: 1;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
Copy link
Collaborator

Choose a reason for hiding this comment

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

아이콘 중앙 정렬도 position, transform 속성을 이용해서 잘 구현해주셨습니다 👍

@soonoo27
Copy link
Collaborator

soonoo27 commented Nov 11, 2023

고생 많으셨습니다.
작업 완료하신 상태라면 Ready for review 상태로 변경해주세요!
스크린샷 2023-11-11 오후 7 12 09

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