-
Notifications
You must be signed in to change notification settings - Fork 39
[이승민] Sprint2 #107
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
The head ref may contain hidden characters: "Basic-\uC774\uC2B9\uBBFC-sprint2"
[이승민] Sprint2 #107
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 칭찬 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,103 @@ | ||
| .auth-container { | ||
| max-width: 640px; | ||
| margin: 60px auto; | ||
| text-align: center; | ||
| } | ||
|
|
||
| .logo-container { | ||
| margin-bottom: 40px; | ||
| } | ||
|
|
||
| .auth-form { | ||
| width: 100%; | ||
| max-width: 640px; | ||
| margin: 0 auto; | ||
| } | ||
|
|
||
| .input-group { | ||
| margin-bottom: 24px; | ||
| text-align: left; | ||
| } | ||
|
|
||
| .input-group label { | ||
| display: block; | ||
| font-weight: 500; | ||
| margin-bottom: 16px; | ||
| font-size: 16px; | ||
| color: #1f2937; | ||
| } | ||
|
|
||
| .input-group input { | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ❗️ 수정요청 |
||
| width: 100%; | ||
| max-width: 640px; | ||
| padding: 12px; | ||
| font-size: 16px; | ||
| background-color: #f5f5f5; | ||
| color: #1f2937; | ||
| border: none; | ||
| border-radius: 5px; | ||
| box-sizing: border-box; | ||
| outline: none; | ||
| } | ||
|
|
||
| .input-group input:focus { | ||
| background-color: #e0e0e0; | ||
| color: #1f2937; | ||
| } | ||
|
|
||
| .password-wrapper { | ||
| position: relative; | ||
| display: flex; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .password-wrapper input { | ||
| width: 100%; | ||
| padding-right: 40px; | ||
| } | ||
|
|
||
| .toggle-password { | ||
| position: absolute; | ||
| right: 12px; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| .auth-button { | ||
| width: 100%; | ||
| max-width: 640px; | ||
| padding: 16px; | ||
| font-size: 18px; | ||
| font-weight: 600; | ||
| border-radius: 40px; | ||
| background-color: #3692ff; | ||
| color: white; | ||
| cursor: pointer; | ||
| border: none; | ||
| } | ||
|
|
||
| .auth-button:hover { | ||
| background-color: #1967d6; | ||
| } | ||
|
|
||
| .social-login { | ||
| background-color: #e6f2ff; | ||
| border-radius: 8px; | ||
| padding: 16px 23px; | ||
| margin: 24px auto; | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: space-between; | ||
| max-width: 640px; | ||
| } | ||
|
|
||
| .social-icons { | ||
| display: flex; | ||
| gap: 16px; | ||
| } | ||
|
|
||
| .auth-footer { | ||
| font-weight: 500; | ||
| font-size: 15px; | ||
| max-width: 640px; | ||
| margin: 0 auto; | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| .button { | ||
| background-color: #3692ff; | ||
| color: #ffffff; | ||
| display: inline-flex; | ||
| align-items: center; | ||
| justify-content: center; | ||
| padding: 12px 24px; | ||
| border-radius: 8px; | ||
| font-size: 16px; | ||
| font-weight: 600; | ||
| } | ||
|
|
||
| .button:hover { | ||
| background-color: #1967d6; | ||
| } | ||
|
|
||
| .button:focus { | ||
| background-color: #1251aa; | ||
| } | ||
|
|
||
| .button:disabled { | ||
| background-color: #9ca3af; | ||
| cursor: default; | ||
| pointer-events: none; | ||
| } | ||
|
|
||
| .pill-button { | ||
| font-size: 20px; | ||
| font-weight: 700; | ||
| border-radius: 999px; | ||
| padding: 16px 124px; | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| input { | ||
| width: 100%; | ||
| padding: 12px; | ||
| border: 1px solid #ccc; | ||
| border-radius: 5px; | ||
| font-size: 16px; | ||
| } | ||
|
|
||
| input:focus { | ||
| border-color: #3692ff; | ||
| outline: none; | ||
| } | ||
|
|
||
| .form-container { | ||
| max-width: 400px; | ||
| margin: auto; | ||
| padding: 20px; | ||
| background: #f9f9f9; | ||
| border-radius: 8px; | ||
| box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); | ||
| } |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 칭찬 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| * { | ||
| margin: 0; | ||
| padding: 0; | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| body { | ||
| color: #374151; | ||
| word-break: keep-all; | ||
| font-family: "Pretendard", sans-serif; | ||
| } | ||
|
|
||
| a { | ||
| text-decoration: none; | ||
| color: inherit; | ||
| } | ||
|
|
||
| button { | ||
| background: none; | ||
| border: none; | ||
| outline: none; | ||
| box-shadow: none; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| .wrapper { | ||
| max-width: 1200px; | ||
| margin: 0 auto; | ||
| width: 100%; | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| .banner { | ||
| background-color: #cfe5ff; | ||
| height: 540px; | ||
| display: flex; | ||
| align-items: center; | ||
| background-repeat: no-repeat; | ||
| background-position: 80% bottom; | ||
| background-size: 55%; | ||
| } | ||
|
|
||
| #hero { | ||
| background-image: url("../images/home/Img_home_top.png"); | ||
| } | ||
|
|
||
| #bottomBanner { | ||
| background-image: url("../images/home/Img_home_bottom.png"); | ||
| } | ||
|
|
||
| #features { | ||
| padding-bottom: 138px; | ||
| } | ||
|
|
||
| .feature { | ||
| padding: 138px 0; | ||
| display: flex; | ||
| align-items: center; | ||
| gap: 5%; | ||
| } | ||
|
|
||
| .feature:nth-child(2) { | ||
| text-align: right; | ||
| } | ||
|
|
||
| .feature-content { | ||
| flex: 1; | ||
| } | ||
|
|
||
| .feature-tag { | ||
| color: #3692ff; | ||
| font-size: 18px; | ||
| line-height: 25px; | ||
| font-weight: 700; | ||
| margin-bottom: 12px; | ||
| } | ||
|
|
||
| .feature-description { | ||
| font-size: 24px; | ||
| font-weight: 500; | ||
| line-height: 120%; | ||
| letter-spacing: 0.08em; | ||
| margin-top: 24px; | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| header { | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💊 제안 특정 페이지에서만 다르게 스타일링해야 하는 요소라면 태그 선택자보다는 class를 사용하는 것이 유지보수와 확장성 면에서 더 좋습니다. 프로젝트가 커질수록 각 페이지의 구조나 스타일이 변경될 가능성이 높으므로, 이를 미리 고려하여 class로 스타일을 지정하는 것을 추천드립니다. |
||
| position: fixed; | ||
| width: 100%; | ||
| height: 70px; | ||
| display: flex; | ||
| justify-content: space-between; | ||
| align-items: center; | ||
| padding: 0 200px; | ||
| background-color: #ffffff; | ||
| border-bottom: 1px solid #dfdfdf; | ||
| z-index: 1000; | ||
| } | ||
|
|
||
| #loginLinkButton { | ||
| font-size: 16px; | ||
| font-weight: 600; | ||
| border-radius: 8px; | ||
| padding: 11.5px 23px; | ||
| } | ||
|
|
||
| footer { | ||
| background-color: #111827; | ||
| color: #9ca3af; | ||
| display: flex; | ||
| justify-content: space-between; | ||
| align-items: center; | ||
| padding: 32px 200px 108px 200px; | ||
| font-size: 16px; | ||
| } | ||
|
|
||
| #footerMenu { | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💊 제안 |
||
| display: flex; | ||
| gap: 30px; | ||
| color: #e5e7eb; | ||
| } | ||
|
|
||
| #socialMedia { | ||
| display: flex; | ||
| gap: 12px; | ||
| } | ||
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.
💊 제안
mdx 포멧에서 list 요소의 check 여부를 작성하실 때는 영문 o를 사용하시면 됩니다~