-
Notifications
You must be signed in to change notification settings - Fork 14
엄해진 sprint1,2,3 #2
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
wseungjin
merged 14 commits into
codeit-sprint-fullstack:basic-엄해진
from
UIanonymity:basic-엄해진-sprint2
May 22, 2025
The head ref may contain hidden characters: "basic-\uC5C4\uD574\uC9C4-sprint2"
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
8a429b6
mission1
UIanonymity 3f4fca5
chore: pr 템플릿 & 머지 후 브랜치 삭제 github action 추가
shyjnnn 1777374
로그인탭추가
UIanonymity 0d5a7e7
로그인 관련 파일 수정
UIanonymity 15f64a8
Move CSS files to new 'css' folder and cleanup old files
UIanonymity 9644053
파일정리
UIanonymity 1bb0d22
파일정리
UIanonymity d033481
파일 오류 수정
UIanonymity c58ad4c
회원가입 페이지 및 비밀번호 눈 눈표시 기능 추가
UIanonymity 28ef3f1
2주차 스프린트 미션
UIanonymity d42842a
오류 메시지 추가
UIanonymity e7fdc60
회원가입 로그인 페이지 유효성검사 추가
UIanonymity e399d25
html 폴더 추가
UIanonymity d028732
pr 수정
UIanonymity 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,14 @@ | ||
| name: delete branch on close pr | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [closed] | ||
|
|
||
| jobs: | ||
| delete-branch: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: delete branch | ||
| uses: SvanBoxel/delete-merged-branch@main | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
Submodule 7-sprint-mission-fe
added at
50ef68
This file was deleted.
Oops, something went wrong.
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 @@ | ||
| /* 미작성 */ |
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 @@ | ||
| /* 미작성 */ |
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,187 @@ | ||
| /* 로그인 페이지 스타일 시트 */ | ||
|
|
||
| * { | ||
| box-sizing: border-box; | ||
| padding: 0px 200px; | ||
| justify-self: center; | ||
| white-space: nowrap; | ||
| } | ||
|
|
||
| main { | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 40px; | ||
| width: 1920px; | ||
| padding: 227px 640px; | ||
| justify-content: center; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .homelink { | ||
| display: flex; | ||
| width: 396px; | ||
| height: 132px; | ||
| align-items: center; | ||
| justify-content: center; | ||
| text-decoration: none; | ||
| gap: 20px; | ||
| } | ||
|
|
||
| .logo { | ||
| color: #3692FF; | ||
| font-family: "ROKAF Sans"; | ||
| font-size: 66.344px; | ||
| font-style: normal; | ||
| font-weight: 700; | ||
| line-height: normal; | ||
| } | ||
|
|
||
| .logoicon { | ||
| width: 103.529px; | ||
| height: 103.88px; | ||
| flex-shrink: 0; | ||
| } | ||
|
|
||
| .inputbar { | ||
| display: flex; | ||
| width: 640px; height: 56px; | ||
| padding: 16px 24px; | ||
| padding-right: 40px; | ||
| align-items: center; | ||
| gap: 10px; | ||
| border-radius: 12px; | ||
| background: #F3F4F6; | ||
| color: #9CA3AF; | ||
| font-family: Pretendard; | ||
| font-weight: 400; | ||
| line-height: 26px; /* 162.5% */ | ||
| border: none; /* 기본 테두리 제거 */ | ||
| } | ||
|
|
||
| .inputbar:focus { | ||
| outline: none; /* 기본 outline 제거 */ | ||
| border: 2px solid #3692FF; /* 포커스 시 테두리 적용 */ | ||
| } | ||
|
|
||
| .inputbar.error { | ||
| border: 2px solid red; /* 에러 상태 테두리 색상 */ | ||
| } | ||
|
|
||
| .error-message { | ||
| color: red; | ||
| font-size: 14px; | ||
| margin-top: 5px; | ||
| justify-self: flex-start; | ||
| } | ||
|
|
||
| .bars{ | ||
| position: relative; | ||
| display: inline-block; | ||
| } | ||
|
|
||
| .bars .text { | ||
| display: flex; | ||
| gap: 16px; | ||
| color: #1F2937; | ||
| font-family: Pretendard; | ||
| font-size: 18px; | ||
| font-weight: 700; | ||
| font-style: normal; | ||
| line-height: normal; | ||
| margin: auto; | ||
| padding: 0px 0px 16px 0px; | ||
| } | ||
|
|
||
| .bars .eyes { | ||
| position: absolute; | ||
| right: 10px; /* 오른쪽 여백 */ | ||
| top: 50%; | ||
| transform: translateY(-50%); /* 수직 중앙 정렬 */ | ||
| cursor: pointer; /* 클릭 가능 표시 */ | ||
| font-size: 16px; | ||
| color: #9CA3AF; | ||
| } | ||
|
|
||
| .relative { | ||
| position: relative; | ||
| } | ||
|
|
||
| .button { | ||
| display: flex; | ||
| width: 640px; | ||
| height: 56px; | ||
| border-radius: 40px; | ||
| background: #3692FF; | ||
| border: none; | ||
| color: #F3F4F6; | ||
| text-align: center; | ||
| justify-content: center; | ||
| align-items: center; | ||
| cursor: pointer; | ||
| font-family: Pretendard; | ||
| font-size: 20px; | ||
| font-style: normal; | ||
| font-weight: 600; | ||
| } | ||
|
|
||
| .loginbox { | ||
| width: 640px; | ||
| height: 74px; | ||
| padding: 16px 23px; | ||
| align-items: flex-start; | ||
| border-radius: 8px; | ||
| background: #E6F2FF; | ||
| } | ||
|
|
||
| .icon { | ||
| display: flex; | ||
| align-items: flex-start; | ||
| gap: 16px; | ||
| } | ||
|
|
||
| .loginbox .box { | ||
| display: flex; | ||
| width: 594px; | ||
| justify-content: space-between; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .signup { | ||
| display: flex; | ||
| justify-content: center; | ||
| align-items: center; | ||
| gap: 4px; | ||
| } | ||
|
|
||
| .signup a { | ||
| color:#3692FF; | ||
| font-family: Pretendard; | ||
| font-size: 14px; | ||
| font-style: normal; | ||
| font-weight: 500; | ||
| line-height: normal; | ||
| text-decoration-line: underline; | ||
| text-decoration-style: solid; | ||
| text-decoration-skip-ink: none; | ||
| text-decoration-thickness: auto; | ||
| text-underline-offset: auto; | ||
|
|
||
| } | ||
|
|
||
| .login p { | ||
| color: #1F2937; | ||
| /* pretendard/md-14px-medium */ | ||
| font-family: Pretendard; | ||
| font-size: 14px; | ||
| font-style: normal; | ||
| font-weight: 500; | ||
| line-height: 24px; /* 171.429% */ | ||
| } | ||
|
|
||
| .form-gap { | ||
| width: 640px; | ||
| flex-direction: column; | ||
| align-items: center; | ||
| display: flex; | ||
| gap: 24px; | ||
| } |
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 @@ | ||
| /* 미작성 */ |
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,47 @@ | ||
| /* http://meyerweb.com/eric/tools/css/reset/ | ||
| v2.0 | 20110126 | ||
| License: none (public domain) | ||
| */ | ||
| html, body, div, span, applet, object, iframe, | ||
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | ||
| a, abbr, acronym, address, big, cite, code, | ||
| del, dfn, em, img, ins, kbd, q, s, samp, | ||
| small, strike, strong, sub, sup, tt, var, | ||
| b, u, i, center, | ||
| dl, dt, dd, ol, ul, li, | ||
| fieldset, form, label, legend, | ||
| table, caption, tbody, tfoot, thead, tr, th, td, | ||
| article, aside, canvas, details, embed, | ||
| figure, figcaption, footer, header, hgroup, | ||
| menu, nav, output, ruby, section, summary, | ||
| time, mark, audio, video { | ||
| margin: 0; | ||
| padding: 0; | ||
| border: 0; | ||
| font-size: 100%; | ||
| font: inherit; | ||
| vertical-align: baseline; | ||
| } | ||
| /* HTML5 display-role reset for older browsers */ | ||
| article, aside, details, figcaption, figure, | ||
| footer, header, hgroup, menu, nav, section { | ||
| display: block; | ||
| } | ||
| body { | ||
| line-height: 1; | ||
| } | ||
| ol, ul { | ||
| list-style: none; | ||
| } | ||
| blockquote, q { | ||
| quotes: none; | ||
| } | ||
| blockquote:before, blockquote:after, | ||
| q:before, q:after { | ||
| content: ''; | ||
| content: none; | ||
| } | ||
| table { | ||
| border-collapse: collapse; | ||
| border-spacing: 0; | ||
| } |
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.