-
Notifications
You must be signed in to change notification settings - Fork 39
[이유진] sprint2 #128
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
Merged
addiescode-sj
merged 20 commits into
codeit-bootcamp-frontend:Basic-이유진
from
youdaeng2:Basic-이유진-sprint2
May 2, 2025
The head ref may contain hidden characters: "Basic-\uC774\uC720\uC9C4-sprint2"
Merged
[이유진] sprint2 #128
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
e91c6ee
accessibility: aria-label 및 role 속성 추가
youdaeng2 d0b9e49
perf: hero/footer 이미지 최적화 및 CLS 방지를 위한 구조 개선
youdaeng2 ecc9e1f
style: 폰트 클래스 kebab-case로 통일
youdaeng2 421fa97
chore: 코드 포맷팅 정리 (HTML/CSS)
youdaeng2 6566ad0
chore: .gitignore 추가 및 prettier 설정 제외
youdaeng2 b1c333f
fix: 보안 이슈 대응을 위한 외부 링크 rel 속성 추가
youdaeng2 48f108b
feat: 메타태그 및 파비콘 설정 추가
youdaeng2 e47ce65
refactor: reset과 공통 스타일 분리 (reset.css, common.css)
youdaeng2 10dba7f
feat: header를 상단에 고정(fixed) 처리
youdaeng2 398cc9c
chore: reset, common, style 스타일 구조 정리 및 수정
youdaeng2 fe9bf74
feat: 로그인 페이지 마크업 및 스타일링 완료, 이미지 파일 추가
youdaeng2 e90a142
chore: 기기 간 동기화로 생긴 중복 파일 삭제
youdaeng2 4dca90b
refactor: login.html 구조 간소화 및 클래스/alt 속성 오타 수정
youdaeng2 572e580
feat: index.html에 로그인 페이지 링크 연결
youdaeng2 50bb67d
feat: 회원가입 페이지 마크업 및 스타일링 완료
youdaeng2 2db0041
refactor: 로그인/회원가입 css 통합 및 불필요한 파일 삭제
youdaeng2 3ce11f0
fix: 버튼 기본 동작 방지를 위해 type 명시 추가
youdaeng2 350d1ff
feat(style): 메인 페이지 모바일 퍼스트 레이아웃 적용 및 폰트 사이즈 변수화
youdaeng2 6437da5
refactor(style): CSS 변수 분리 및 variables.css 파일 생성
youdaeng2 e9eb763
refactor(login-signup): 레이블-입력 필드 연결 강화 및 타이포 그래피 css 변수화
youdaeng2 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| .prettierrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| @font-face { | ||
| font-family: 'Pretendard-Regular'; | ||
| src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/[email protected]/Pretendard-Regular.woff') format('woff'); | ||
| font-weight: 400; | ||
| font-style: normal; | ||
| } | ||
|
|
||
| /* Font size + line-height */ | ||
| html { | ||
| font-size: 62.5%; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,153 @@ | ||
| /* font style */ | ||
| /* form label (이메일 / 비밀번호) */ | ||
| form label { | ||
| display: block; | ||
| font-size: var(--text-lg); | ||
| font-weight: var(--font-bold); | ||
| margin-bottom: var(--space-xs); | ||
| } | ||
|
|
||
| /* form input 텍스트 */ | ||
| .content input { | ||
| font-size: var(--text-base); | ||
| font-weight: var(--font-normal); | ||
| color: var(--secondary-color-gray700); | ||
| } | ||
|
|
||
| /* visibility 버튼 아이콘 */ | ||
| .visibility-btn img { | ||
| width: 24px; | ||
| height: 24px; | ||
| } | ||
|
|
||
| /* 제출 버튼 */ | ||
| .btn-submit { | ||
| font-size: var(--text-xl); | ||
| font-weight: var(--font-semibold); | ||
| width: 100%; | ||
| height: 56px; | ||
| border-radius: 40px; | ||
| background-color: var(--primary-color-100); | ||
| color: #fff; | ||
| } | ||
|
|
||
| /* 간편 로그인 타이틀 */ | ||
| .sns-login p { | ||
| font-size: var(--text-base); | ||
| font-weight: var(--font-medium); | ||
| color: var(--secondary-color-gray700); | ||
| } | ||
|
|
||
| /* SNS 아이콘 링크 */ | ||
| .sns-login-link a img { | ||
| width: 42px; | ||
| height: 42px; | ||
| } | ||
|
|
||
| /* 회원가입 텍스트 */ | ||
| .sign-up { | ||
| font-size: var(--text-base); | ||
| font-weight: var(--font-normal); | ||
| color: var(--secondary-color-gray700); | ||
| } | ||
| .sign-up a { | ||
| font-weight: var(--font-semibold); | ||
| color: var(--primary-color-100); | ||
| text-decoration: underline; | ||
| } | ||
|
|
||
|
|
||
|
|
||
| input:focus { | ||
| outline-color: var(--primary-color-100); | ||
| } | ||
|
|
||
| .content { | ||
| max-width: 640px; | ||
| width: 100%; | ||
| margin: 120px auto; | ||
| padding: 0 20px; | ||
| display: flex; | ||
| justify-content: center; | ||
| align-items: center; | ||
| flex-direction: column; | ||
| gap: 24px; | ||
| } | ||
|
|
||
| form { | ||
| width: 100%; | ||
| margin-top: 26px; | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 24px; | ||
| } | ||
|
|
||
| .content input { | ||
| width: 100%; | ||
| height: 56px; | ||
| padding: 0 20px; | ||
| border-radius: 12px; | ||
| background-color: var(--secondary-color-gray100); | ||
| } | ||
|
|
||
| .password-input-box { | ||
| position: relative; | ||
| } | ||
|
|
||
| #password { | ||
| padding: 0 40px 0 20px; | ||
| } | ||
|
|
||
| .btn-submit { | ||
| width: 100%; | ||
| height: 56px; | ||
| border-radius: 40px; | ||
| background-color: var(--primary-color-100); | ||
| color: #fff; | ||
| } | ||
|
|
||
| .sns-login { | ||
| width: 100%; | ||
| height: 74px; | ||
| display: flex; | ||
| justify-content: space-between; | ||
| align-items: center; | ||
| padding: 16px 24px; | ||
| border-radius: 8px; | ||
| background-color: #e6f2ff; | ||
| } | ||
|
|
||
| .sns-login-link { | ||
| display: flex; | ||
| justify-content: center; | ||
| align-items: center; | ||
youdaeng2 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| gap: 16px; | ||
| } | ||
|
|
||
| .visibility-btn { | ||
| position: absolute; | ||
| right: 16px; | ||
| top: 50%; | ||
| transform: translateY(-50%); | ||
| } | ||
|
|
||
| .visibility-btn-on { | ||
| display: none; | ||
| } | ||
|
|
||
| .sign-up, | ||
| .login { | ||
| font-size: 1.4rem; | ||
| } | ||
|
|
||
| .sign-up a, | ||
| .login a { | ||
| text-decoration: underline; | ||
| color: var(--primary-color-100); | ||
| } | ||
|
|
||
| @media (min-width: 768px) { | ||
| .content { | ||
| padding: 0; | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| * { | ||
| margin: 0; | ||
| padding: 0; | ||
| box-sizing: border-box; | ||
| list-style-type: none; | ||
| text-decoration: none; | ||
| } | ||
|
|
||
| html, | ||
| body { | ||
| font-family: 'Pretendard-Regular', sans-serif; | ||
| } | ||
|
|
||
| button { | ||
| border: none; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| input { | ||
| border: none; | ||
| } | ||
|
|
||
| img { | ||
| display: block; | ||
| max-width: 100%; | ||
| height: auto; | ||
| } | ||
|
|
||
| a { | ||
| cursor: pointer; | ||
| color: inherit; | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.