-
Notifications
You must be signed in to change notification settings - Fork 39
[김정우] Sprint3 #167
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\uC815\uC6B0-sprint1"
[김정우] Sprint3 #167
Changes from all commits
763c6ca
afd5491
f6a8395
4153bdc
4871da8
53d83a4
d7aac42
826b935
2092805
63cfcd7
ab7d91a
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 |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| .DS_Store | ||
| ._.DS_Store | ||
| **/.DS_Store | ||
| **/._.DS_Store |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,66 +1,91 @@ | ||
| * { | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| html { | ||
| font-family: Pretendard, sans-serif; | ||
| word-break: keep-all; | ||
| } | ||
|
|
||
| .content { | ||
| width: 640px; | ||
| max-width: 640px; | ||
| margin: 100px auto; | ||
| } | ||
|
|
||
| .head-img { | ||
| text-align: center; | ||
| padding: 20px; | ||
| } | ||
|
|
||
| .pandaMarketImg { | ||
| width: 396px; | ||
| height: 132px; | ||
| max-width: 396px; | ||
| width: 100%; | ||
| height: auto; | ||
| } | ||
|
|
||
| .input-content { | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 20px; | ||
| } | ||
|
|
||
| .userName-label { | ||
| font-size: 16px; | ||
| font-weight: 700; | ||
| } | ||
|
|
||
| #userName { | ||
| .userName { | ||
| background-color: #f3f4f6; | ||
| width: 640px; | ||
| max-width: 640px; | ||
| height: 56px; | ||
| border-radius: 12px; | ||
| border: none; | ||
| font-size: 16px; | ||
| padding: 0 20px; | ||
| font-weight: 400; | ||
| padding-left: 20px; | ||
| } | ||
|
|
||
| #userPassword { | ||
| .userPassword-label { | ||
| font-size: 16px; | ||
| font-weight: 700; | ||
| } | ||
|
|
||
| .userPassword { | ||
| background-color: #f3f4f6; | ||
| width: 640px; | ||
| max-width: 640px; | ||
| height: 56px; | ||
| border-radius: 12px; | ||
| border: none; | ||
| font-size: 16px; | ||
| padding: 0 20px; | ||
| font-weight: 400; | ||
| padding-left: 20px; | ||
| } | ||
|
|
||
| .content-login { | ||
| border: none; | ||
| .checkPassword-label { | ||
| font-size: 16px; | ||
| font-weight: 700; | ||
| } | ||
|
|
||
| .checkPassword { | ||
| background-color: #f3f4f6; | ||
| max-width: 640px; | ||
| height: 56px; | ||
| width: 640px; | ||
| border-radius: 40px; | ||
| margin: 20px 0; | ||
| border-radius: 12px; | ||
| border: none; | ||
| font-size: 16px; | ||
| font-weight: 400; | ||
| padding-left: 20px; | ||
| } | ||
|
|
||
| .content-login { | ||
| display: flex; | ||
| justify-content: center; | ||
| padding: 12px 0; | ||
| background-color: #3692FF; | ||
| font-size: 20px; | ||
| font-weight: 600; | ||
| line-height: 32px; | ||
| text-align: center | ||
|
|
||
| } | ||
|
|
||
| .login-button { | ||
| text-decoration: none; | ||
| color: #F3F4F6; | ||
| color: #f3f4f6; | ||
| border: none; | ||
| border-radius: 40px; | ||
| background-color: #3692ff; | ||
| font-size: 20px; | ||
| font-weight: 600; | ||
| line-height: 32px; | ||
| width: 100%; | ||
| height: 56px; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| .blue-section { | ||
|
|
@@ -81,7 +106,7 @@ html { | |
|
|
||
| .social-links { | ||
| display: flex; | ||
| gap: 12px; | ||
| gap: 12px; | ||
| list-style: none; | ||
| } | ||
|
|
||
|
|
@@ -96,24 +121,43 @@ html { | |
| justify-content: center; | ||
| } | ||
|
|
||
| .insa { | ||
| .advice { | ||
| font-size: 14px; | ||
| font-weight: 500; | ||
| } | ||
|
|
||
| .membership { | ||
|
Comment on lines
+124
to
129
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. |
||
| font-size: 14px; | ||
| font-weight: 500; | ||
| color: #3692FF; | ||
| color: #3692ff; | ||
| } | ||
|
|
||
| #nicname { | ||
| .nicname-label { | ||
| font-size: 16px; | ||
| font-weight: 700; | ||
| } | ||
|
|
||
| .nicname { | ||
| background-color: #f3f4f6; | ||
| width: 640px; | ||
| max-width: 640px; | ||
| height: 56px; | ||
| border-radius: 12px; | ||
| border: none; | ||
| font-size: 16px; | ||
| padding: 0 20px; | ||
| font-weight: 400; | ||
| } | ||
| padding-left: 20px; | ||
| } | ||
|
|
||
| @media (max-width: 767px) and (min-width: 375px) { | ||
|
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. 💊 제안 |
||
| .content { | ||
| max-width: 400px; | ||
| width: 100%; | ||
| padding: 0 16px; | ||
| margin: 100px auto; | ||
| } | ||
| .pandaMarketImg { | ||
| max-width: 197px; | ||
| height: auto; | ||
| width: 100%; | ||
| } | ||
| } | ||
|
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,8 @@ | ||
| * { | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| html { | ||
| font-family: Pretendard, sans-serif; | ||
| word-break: keep-all; | ||
| } |

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.
👍 칭찬
깃에 올라가지 않을 파일을 관리해주시는 것 좋습니다~