-
Notifications
You must be signed in to change notification settings - Fork 31
[최권진] Sprint3 #48
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-\uCD5C\uAD8C\uC9C4"
[최권진] Sprint3 #48
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,26 +1,20 @@ | ||
| :root { | ||
| --gray-900: #111827; | ||
| --gray-800: #1F2937; | ||
| --gray-800: #1f2937; | ||
| --gray-700: #374151; | ||
| --gray-600: #4B5563; | ||
| --gray-500: #6B7280; | ||
| --gray-400: #9CA3AF; | ||
| --gray-200: #E5E7EB; | ||
| --gray-100: #F3F4F6; | ||
| --gray-50: #F9FAFB; | ||
| --blue: #3692FF; | ||
| --gray-600: #4b5563; | ||
| --gray-500: #6b7280; | ||
| --gray-400: #9ca3af; | ||
| --gray-200: #e5e7eb; | ||
| --gray-100: #f3f4f6; | ||
| --gray-50: #f9fafb; | ||
| --blue: #3692ff; | ||
| } | ||
|
|
||
| * { | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| body { | ||
| margin: 0; | ||
| } | ||
|
|
||
| .empty-area { | ||
| height: 231px; | ||
| padding: 0; | ||
| } | ||
|
|
||
| .hearder { | ||
|
|
@@ -29,6 +23,14 @@ body { | |
| justify-content: center; | ||
| } | ||
|
|
||
| .panda-logo-a { | ||
| margin-top: 231px; | ||
| } | ||
|
|
||
| #join { | ||
| margin-bottom: 231px; | ||
| } | ||
|
|
||
| .panda-logo-img { | ||
| width: 396px; | ||
| height: 132px; | ||
|
|
@@ -66,8 +68,8 @@ body { | |
| } | ||
|
|
||
| .eyes { | ||
| width: 20.47px; | ||
| height: 18.07px; | ||
| width: 20px; | ||
| height: 18px; | ||
| position: relative; | ||
| top: 5px; | ||
| right: 50px; | ||
|
|
@@ -140,3 +142,71 @@ body { | |
| .join-first { | ||
| color: var(--gray-800); | ||
| } | ||
|
|
||
| @media (max-width: 1199px) { | ||
| .panda-logo-a { | ||
| margin-top: 190px; | ||
| } | ||
|
|
||
| #join { | ||
| margin-bottom: 325px; | ||
| } | ||
| } | ||
|
|
||
| @media (max-width: 766px) { | ||
| .panda-logo-a { | ||
| display: block; | ||
| width: fit-content; | ||
|
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. fit-content와 block을 사용하신 이유는 무엇일까요!? 속성 하나하나 짚어가시면 좋습니다 :) |
||
| margin: 0 auto; | ||
| margin-top: 80px; | ||
| } | ||
|
|
||
| .panda-logo-img { | ||
|
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. 반응형 이미지로 picture를 사용해보셔도 좋아요! |
||
| width: 198px; | ||
| height: 66px; | ||
| margin: 0; | ||
| } | ||
|
|
||
| .hearder { | ||
| max-width: 400px; | ||
| width: 100%; | ||
| } | ||
|
|
||
| .form label { | ||
| width: 100%; | ||
| max-width: 400px; | ||
| margin-bottom: 8px; | ||
| } | ||
|
|
||
| .form input { | ||
| width: 100%; | ||
| max-width: 400px; | ||
| margin-bottom: 16px; | ||
| } | ||
|
|
||
| .password-check-flex { | ||
| width: 100%; | ||
| max-width: 400px; | ||
| margin-bottom: 16px; | ||
| height: 56px; | ||
| } | ||
|
|
||
| .form button { | ||
| width: 100%; | ||
| max-width: 400px; | ||
| } | ||
|
|
||
| .eyes { | ||
|
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. |
||
| top: -95%; | ||
| left: 85%; | ||
| } | ||
|
|
||
| .simple-login { | ||
| width: 100%; | ||
| max-width: 400px; | ||
| } | ||
|
|
||
| #join { | ||
| margin-bottom: 231px; | ||
| } | ||
| } | ||

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.
불필요한 코드 같네요! 🤔