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

Conversation

eqypo9
Copy link
Collaborator

@eqypo9 eqypo9 commented Feb 26, 2024

요구사항

기본

  • UI 디자인 기초 토픽을 수강해 보세요.
  • 피그마 디자인에 맞게 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

멘토에게

  • 피그마의 속성값에 맞춰서 만들었지만 html 파일을 실행할 때마다 다르게 보여서 이유가 궁금합니다 ..

@eqypo9 eqypo9 added the 미완성🫠 죄송합니다.. label Feb 26, 2024
@eqypo9 eqypo9 requested a review from o-seung-yeon February 26, 2024 08:51
Copy link
Collaborator

@o-seung-yeon o-seung-yeon left a comment

Choose a reason for hiding this comment

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

첫번째 미션 제출 고생하셨습니다.
다음번 미션 제출 시에는 description 을 신경써서 작성해주시고, 배포한 Url 도 첨부 바랍니다~

@@ -0,0 +1,109 @@
<!DOCTYPE html>
<html lang="en">
Copy link
Collaborator

Choose a reason for hiding this comment

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

lang 속성값으로 en 을 지정해주셨네요.
lang 은 사용할 언어를 정의하는 것이고 한국어로 디자인된 사이트를 작업하고 있으니
한국어를 나타내는 값으로 수정해야 합니다.
찾아보시고 수정해주세요!

<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Copy link
Collaborator

Choose a reason for hiding this comment

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

! 로 입력하는 템플릿 코드를 사용할 땐
어떤 설정을 의미하는 지 확인 후 필요에 맞게 사용해주세요.

<title>Linkbrary</title>
</head>
<body>
<div class="gnb">
Copy link
Collaborator

Choose a reason for hiding this comment

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

불필요하게 중첩된 태그를 정리하고 그에 맞춰 스타일링도 수정해주세요.

</head>
<body>
<div class="gnb">
<div class="frame-1237">
Copy link
Collaborator

Choose a reason for hiding this comment

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

class 명도 좀 더 의미있게 작성해서 어떤 부분인지 실행시켜보지 않아도 파악할 수 있게끔 수정해 주세요.

<div class="frame-1237">
<div class="logo">
<a href="/">
<img src="src/Linkbrary.png" alt="Linkbrary Logo">
Copy link
Collaborator

Choose a reason for hiding this comment

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

alt 속성 값을 잘 입력해주셨습니다.
멘토링 때 말씀드린 것처럼 이미지 사이즈 설정해주세요!

<div class="frame-2608782">
<div class="frame-2608745">
<div class="policy">
<img src="src/policy_faq.png" width="(87px + 29px + 30px)" height="20px"></img>
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 속성값에는 스펙 상 숫자만 가능하다는 점 참고해 수정해 주세요.

<img src="src/content1.png" alt="첫번째 컨텐츠">
</div>
<div class="link">
<img src="src/add_link.svg" alt="링크 추가하기">
Copy link
Collaborator

Choose a reason for hiding this comment

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

이런 버튼 요소도 직접 구현해주세요.

/* landing/pc */

/* Auto layout for HTML */
html {
Copy link
Collaborator

Choose a reason for hiding this comment

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

html 태그는 head 와 body 태그를 감싸고 있는게 일반적이므로 스타일링을 하기엔 조금 적절하지 못하다고 생각됩니다.

다른 적절한 선택자을 찾아 스타일링 해주시면 좋을 것 같습니다.

.gnb {
position: absolute;
display: flex;
flex-direction: column;
Copy link
Collaborator

Choose a reason for hiding this comment

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

요것도 멘토링 때 말씀드린 것처럼 피그마의 속성값을 참고하기 보단
해당 디자인을 구현하기 위해서 필요한 속성만 추가해서 작업하시면 좋을 것 같습니다.

top: 0;
left: 0;
right: 0;
z-index: 1000; /* 다른 요소 위에 표시되도록 설정 */
Copy link
Collaborator

Choose a reason for hiding this comment

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

z-index 값도 신중하게 설정해야 한다는 점도 구두로 말씀드렸습니다!

@o-seung-yeon o-seung-yeon merged commit 8b363d3 into codeit-bootcamp-frontend:part1-정성혜 Feb 28, 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