-
Notifications
You must be signed in to change notification settings - Fork 20
[김교연] Sprint3 #70
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-\uAE40\uAD50\uC5F0-sprint3"
[김교연] Sprint3 #70
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| @import url("../color.css"); | ||
|
|
||
| html, | ||
| body { | ||
| margin: 0; | ||
|
|
@@ -9,7 +11,7 @@ body { | |
|
|
||
| main { | ||
| margin-top: 70px; | ||
| background-color: #ffffff; | ||
| background-color: var(--white); | ||
|
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. 크으 ~ 재사용이 깔끔하고 좋네요 👍 |
||
| } | ||
|
|
||
| .login_main { | ||
|
|
@@ -36,15 +38,15 @@ main { | |
| .login_content > h3 { | ||
| font-size: 18px; | ||
| font-weight: 700; | ||
| color: #1f2937; | ||
| color: var(--gray-800); | ||
| margin-bottom: 16px; | ||
| } | ||
|
|
||
| /*input */ | ||
| .input_wrapper { | ||
| display: flex; | ||
| align-items: center; | ||
| background-color: #f3f4f6; | ||
| background-color: var(--gray-100); | ||
| height: 40px; | ||
| border-radius: 12px; | ||
| padding: 16px 24px; | ||
|
|
@@ -54,7 +56,7 @@ main { | |
| } | ||
|
|
||
| .input_wrapper:focus-within { | ||
| border-color: #3692ff; /* 포커스 상태 테두리 색상 */ | ||
| border-color: var(--primary-100); /* 포커스 상태 테두리 색상 */ | ||
| } | ||
|
|
||
| input { | ||
|
|
@@ -69,7 +71,7 @@ input::placeholder { | |
| font-size: 16px; | ||
| font-weight: 400; | ||
| line-height: 26px; | ||
| color: #9ca3af; | ||
| color: var(--gray-400); | ||
| } | ||
|
|
||
| .input_icon { | ||
|
|
@@ -84,8 +86,8 @@ input::placeholder { | |
| .btn_login2 { | ||
| width: 640px; | ||
| height: 56px; | ||
| background-color: #9ca3af; | ||
| color: #f3f4f6; | ||
| background-color: var(--gray-400); | ||
| color: var(--gray-100); | ||
| border: none; | ||
| border-radius: 40px; | ||
| padding: 16px 124px; | ||
|
|
@@ -111,7 +113,7 @@ input::placeholder { | |
| display: flex; | ||
| text-align: center; | ||
| align-items: center; | ||
| color: #1f2937; | ||
| color: var(--gray-800); | ||
| font-size: 16px; | ||
| justify-content: space-between; | ||
| font-weight: 500; | ||
|
|
@@ -141,5 +143,20 @@ input::placeholder { | |
| } | ||
|
|
||
| .signup-link { | ||
| color: #3692ff; | ||
| color: var(--primary-100); | ||
| } | ||
|
|
||
| /*모바일 */ | ||
| @media (max-width: 480px) { | ||
| .login_content, | ||
| .btn_login2, | ||
| .sns_login_content { | ||
| width: calc(100% - 32px); | ||
|
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.
|
||
| max-width: 400px; | ||
| } | ||
|
|
||
| .sns_login { | ||
| width: calc(100% - 32px); | ||
| max-width: 400px; | ||
| } | ||
| } | ||
|
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,18 @@ | ||
| * { | ||
| --primary-50: #cfe5ff; | ||
| --primary-100: #3692ff; | ||
| --primary-200: #1967d6; | ||
| --primary-300: #1251aa; | ||
| --error: #f74747; | ||
| --black: #111322; | ||
| --white: #ffffff; | ||
| --gray-900: #111827; | ||
| --gray-800: #1f2937; | ||
| --gray-700: #374151; | ||
| --gray-600: #4b5563; | ||
| --gray-500: #6b7280; | ||
| --gray-400: #9ca3af; | ||
| --gray-200: #e5e7eb; | ||
| --gray-100: #f3f4f6; | ||
| --gray-950: #f9fafb; | ||
| } |
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.
오호 ~! 스타일을 재사용하셨군요 !
피드백을 잘 수용하셨네요 ㅎㅎㅎ 훌륭합니다 👍👍