-
Notifications
You must be signed in to change notification settings - Fork 30
[조민성] 스프린트 미션 1,2 #32
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
Closed
The head ref may contain hidden characters: "basic-\uC870\uBBFC\uC131"
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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,3 @@ | ||
| { | ||
| "liveServer.settings.port": 5501 | ||
| } |
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
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,203 @@ | ||
| * { | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| body { | ||
| display: flex; | ||
| flex-direction: column; | ||
| min-height: 100vh; | ||
| } | ||
|
|
||
| .login-section { | ||
| display: flex; | ||
| max-width: 640px; | ||
| max-height: 618px; | ||
| flex-direction: column; | ||
| align-items: center; | ||
| gap: 40px; | ||
| flex-shrink: 0; | ||
| margin: 120px auto; | ||
| } | ||
|
|
||
| .login-btn a { | ||
| text-decoration: none; | ||
| color: inherit; | ||
| } | ||
|
|
||
| .signup-section { | ||
| display: flex; | ||
| max-width: 640px; | ||
| max-height: 842px; | ||
| flex-direction: column; | ||
| align-items: center; | ||
| gap: 40px; | ||
| flex-shrink: 0; | ||
| margin: 60px auto; | ||
| margin-bottom: 200px; | ||
| } | ||
|
|
||
| .signup-btn a { | ||
| text-decoration: none; | ||
| color: inherit; | ||
| } | ||
|
|
||
| .login-btn { | ||
| display: flex; | ||
| width: 640px; | ||
| height: 56px; | ||
| padding: 16px 124px; | ||
| justify-content: center; | ||
| align-items: center; | ||
| gap: 10px; | ||
| border-radius: 40px; | ||
| background: var(--Primary-100, #3692ff); | ||
| color: var(--Cool-Gray-100, #f3f4f6); | ||
| text-align: center; | ||
| border: none; | ||
| font-family: Pretendard; | ||
| font-size: 20px; | ||
| font-style: normal; | ||
| font-weight: 600; | ||
| line-height: 32px; | ||
| } | ||
|
|
||
| .signup-btn { | ||
| display: flex; | ||
| padding: 16px 124px; | ||
| justify-content: center; | ||
| align-items: center; | ||
| gap: 10px; | ||
| align-self: stretch; | ||
| border-radius: 40px; | ||
| background: var(--Cool-Gray-400, #9ca3af); | ||
| color: #fff; | ||
| text-align: center; | ||
| font-family: Pretendard; | ||
| font-size: 20px; | ||
| font-style: normal; | ||
| font-weight: 600; | ||
| line-height: 24px; | ||
| border: none; | ||
| } | ||
|
|
||
| .logo-section { | ||
| margin-bottom: 40px; | ||
| } | ||
|
|
||
| .auth-input-area { | ||
| display: flex; | ||
| flex-direction: column; | ||
| align-items: flex-start; | ||
| gap: 16px; | ||
| } | ||
|
|
||
| .auth-input-wrapper { | ||
| position: relative; | ||
| } | ||
|
|
||
| .auth-input { | ||
| display: flex; | ||
| max-width: 640px; | ||
| max-height: 56px; | ||
| padding: 16px 24px; | ||
| align-items: center; | ||
| border-radius: 12px; | ||
| background: var(--Cool-Gray-100, #f3f4f6); | ||
| color: var(--Secondary-400, #9ca3af); | ||
| font-family: Pretendard; | ||
| font-size: 16px; | ||
| font-style: normal; | ||
| font-weight: 400; | ||
| line-height: 26px; | ||
| } | ||
|
|
||
| .auth-label { | ||
| color: var(--Secondary-800, #1f2937); | ||
| font-family: Pretendard; | ||
| font-size: 18px; | ||
| font-style: normal; | ||
| font-weight: 700; | ||
| line-height: 26px; | ||
| } | ||
|
|
||
| input { | ||
| display: flex; | ||
| width: 640px; | ||
| height: 56px; | ||
| padding: 16px 24px; | ||
| align-items: center; | ||
| gap: 10px; | ||
| border: none; | ||
| } | ||
|
|
||
| .social-login { | ||
| display: flex; | ||
| width: 640px; | ||
| height: 74px; | ||
| padding: 16px 23px; | ||
| align-items: flex-start; | ||
| gap: 10px; | ||
| border-radius: 8px; | ||
| background: #e6f2ff; | ||
| display: flex; | ||
| justify-content: space-between; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .social-login p { | ||
| color: var(--Secondary-800, #1f2937); | ||
| height: 42px; | ||
|
|
||
| font-family: Pretendard; | ||
| font-size: 16px; | ||
| font-style: normal; | ||
| font-weight: 500; | ||
| line-height: 26px; | ||
| display: flex; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .social-icons { | ||
| display: flex; | ||
| align-items: flex-start; | ||
| gap: 16px; | ||
| } | ||
|
|
||
| .hide-btn { | ||
| position: absolute; | ||
| right: 24px; | ||
| top: 50%; | ||
| transform: translateY(-50%); | ||
| border: none; | ||
| background: none; | ||
| cursor: pointer; | ||
| padding-right: 0px; | ||
| } | ||
|
|
||
| .signup { | ||
| color: var(--Secondary-800, #1f2937); | ||
| font-family: Pretendard; | ||
| font-size: 14px; | ||
| font-style: normal; | ||
| font-weight: 500; | ||
| line-height: 24px; | ||
| display: flex; | ||
| justify-content: center; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .signup-click { | ||
| margin-left: 4px; | ||
| display: flex; | ||
| justify-content: center; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .login-form { | ||
| display: flex; | ||
| width: 640px; | ||
| height: 56px; | ||
| padding: 16px 24px; | ||
| align-items: center; | ||
| gap: 10px; | ||
| } |
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,129 @@ | ||
| /* 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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IDE 설정 파일은 Git에 올리지 않는게 좋습니다. 각자의 개발 환경이 다르기 때문에 팀 전체에 영향을 줍니다.
.gitignore에 추가해서 개인작업환경에서만 적용될 수 있도록 하는게 좋습니다