-
Notifications
You must be signed in to change notification settings - Fork 39
[이수연] sprint3 #158
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 6 commits into
codeit-bootcamp-frontend:Basic-이수연
from
looseeyeon:Basic-이수연-sprint3
May 20, 2025
The head ref may contain hidden characters: "Basic-\uC774\uC218\uC5F0-sprint3"
Merged
[이수연] sprint3 #158
Changes from all commits
Commits
Show all changes
6 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
Binary file not shown.
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,109 @@ | ||
| .auth-page { | ||
| max-width: 640px; | ||
| margin: 50px auto; | ||
| } | ||
|
|
||
| .auth-logo { | ||
| display: flex; | ||
| justify-content: center; | ||
| } | ||
|
|
||
| .auth-form { | ||
| display: flex; | ||
| flex-direction: column; | ||
| padding-top: 40px; | ||
| width: 100%; | ||
| color: var(--gray900); | ||
| } | ||
|
|
||
| .auth-footer { | ||
| display: flex; | ||
| justify-content: space-between; | ||
| align-items: center; | ||
| background-color: var(--lightblue); | ||
| height: 74px; | ||
| border-radius: 8px; | ||
| padding: 16px 23px; | ||
| color: var(--gray900); | ||
| font-weight: 500; | ||
| margin: 24px 0; | ||
| } | ||
|
|
||
| .auth-switch { | ||
| text-align: center; | ||
| } | ||
|
|
||
| .logo-img { | ||
| display: flex; | ||
| gap: 16px; | ||
| } | ||
|
|
||
| input { | ||
| background-color: var(--gray100); | ||
| border: none; | ||
| border-radius: 12px; | ||
| height: 56px; | ||
| margin: 16px 0 24px; | ||
| padding-left: 16px; | ||
| font-size: 18px; | ||
| width: 100%; | ||
| } | ||
|
|
||
| label { | ||
| font-size: 18px; | ||
| font-weight: 600; | ||
| } | ||
|
|
||
| #auth-form_btn { | ||
| background-color: var(--gray400); | ||
| color: var(--gray100); | ||
| border: none; | ||
| border-radius: 40px; | ||
| padding: 16px 124px 16px; | ||
| font-size: 20px; | ||
| font-weight: 600; | ||
| } | ||
|
|
||
| #auth-form_btn:hover { | ||
| background-color: var(--blue); | ||
| } | ||
|
|
||
| .toggle-password { | ||
| position: absolute; | ||
| right: 24px; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| .password-wrapper, | ||
| .password-check-wrapper { | ||
| position: relative; | ||
| display: flex; | ||
| align-items: center; | ||
| } | ||
|
|
||
| input:focus { | ||
| outline-color: var(--blue); | ||
| } | ||
|
|
||
| /*Mobile*/ | ||
| @media screen and (min-width: 375px) and (max-width: 767px) { | ||
| .auth-page { | ||
| padding: 0 16px; | ||
| max-width: 400px; | ||
| } | ||
| .auth-logo > img { | ||
| max-width: 50%; | ||
| } | ||
| label, | ||
| input { | ||
| font-size: 14px; | ||
| } | ||
| } | ||
|
|
||
| /*tablet*/ | ||
| @media screen and (min-width: 768px) and (max-width: 1199px) { | ||
| .auth-logo { | ||
| margin-top: 60px; | ||
| margin-bottom: 40px; | ||
| } | ||
| } |
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,96 @@ | ||
| @import url("https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.min.css"); | ||
|
|
||
| body { | ||
| font-family: "Pretendard Variable", Pretendard, -apple-system, | ||
| BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", | ||
| "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Emoji", | ||
| "Segoe UI Emoji", "Segoe UI Symbol", sans-serif; | ||
| margin: 0 auto; | ||
| margin-top: 70px; | ||
| } | ||
|
|
||
| * { | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| :root { | ||
| --blue: #3692ff; | ||
| --gray900: #1f2937; | ||
| --gray700: #374151; | ||
| --gray600: #4b5563; | ||
| --gray500: #6b7280; | ||
| --gray400: #9ca3af; | ||
| --gray200: #e5e7eb; | ||
| --gray100: #f3f4f6; | ||
| --gray50: #f9fafb; | ||
| --white: #ffffff; | ||
| --navy: #111827; | ||
| --background-banner: #cfe5ff; | ||
| --lightblue: #e6f2ff; | ||
| } | ||
|
|
||
| h1 { | ||
| font-size: 40px; | ||
| font-weight: 600; | ||
| line-height: 140%; | ||
| letter-spacing: 2%; | ||
| color: var(--gray700); | ||
| } | ||
|
|
||
| p { | ||
| font-size: 24px; | ||
| line-height: 32px; | ||
| margin-top: 24px; | ||
| } | ||
|
|
||
| nav { | ||
| display: flex; | ||
| justify-content: space-between; | ||
| align-items: center; | ||
| position: fixed; | ||
| top: 0; | ||
| left: 0; | ||
| right: 0; | ||
| background: var(--white); | ||
| margin: 0 auto; | ||
| padding: 9.5px 200px; | ||
| } | ||
|
|
||
| section > img { | ||
| max-width: 100%; | ||
| } | ||
|
|
||
| /*Tablet*/ | ||
| @media (max-width: 1199px) { | ||
| nav { | ||
| padding: 9.5px 24px; | ||
| } | ||
| h1 { | ||
| font-size: 32px; | ||
| text-align: left; | ||
| } | ||
| h2 { | ||
| font-size: 18px; | ||
| } | ||
| p { | ||
| font-size: 18px; | ||
| line-height: 26px; | ||
| } | ||
| } | ||
|
|
||
| /*Mobile*/ | ||
| @media (max-width: 767px) { | ||
| nav { | ||
| padding: 9.5px 16px; | ||
| } | ||
| h1 { | ||
| font-size: 24px; | ||
| } | ||
| h2 { | ||
| font-size: 16px; | ||
| } | ||
| p { | ||
| font-size: 16px; | ||
| line-height: 26px; | ||
| } | ||
| } | ||
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.