-
Notifications
You must be signed in to change notification settings - Fork 30
[강희정] sprint2 #136
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-\uAC15\uD76C\uC815-sprint2"
[강희정] sprint2 #136
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 |
|---|---|---|
| @@ -0,0 +1,165 @@ | ||
| /* login.css */ | ||
| * { | ||
|
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. 요것도 공통 스타일에서 관리하시는 것이 편하겠네요! :) |
||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| .body { | ||
| margin: 0; | ||
| padding: 0; | ||
| } | ||
|
|
||
| .login-page { | ||
| display: flex; | ||
| width: 100%; | ||
| max-width: 1920px; | ||
|
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. |
||
| padding: 231px 0; | ||
| justify-content: center; | ||
| align-items: center; | ||
| background: #fcfcfc; | ||
| } | ||
|
|
||
| .login-container { | ||
| display: flex; | ||
| width: 640px; | ||
| flex-direction: column; | ||
| align-items: center; | ||
| gap: 40px; | ||
| flex-shrink: 0; | ||
| } | ||
|
|
||
| .login-logo { | ||
| display: flex; | ||
|
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: 640px; | ||
| flex-direction: column; | ||
| align-items: center; | ||
| gap: 40px; | ||
| flex-shrink: 0; | ||
| } | ||
|
|
||
| .login-logo img { | ||
| width: 396px; | ||
| height: 132px; | ||
| } | ||
|
|
||
| .login-form { | ||
| display: flex; | ||
| flex-direction: column; | ||
| align-items: center; | ||
| gap: 24px; | ||
| align-self: stretch; | ||
| } | ||
|
|
||
| .form-group { | ||
| display: flex; | ||
| flex-direction: column; | ||
| align-items: flex-start; | ||
| gap: 16px; | ||
| } | ||
|
|
||
| label { | ||
| color: var(--secondary-800); | ||
| } | ||
|
|
||
| input { | ||
| display: flex; | ||
| width: 640px; | ||
| flex-direction: column; | ||
| justify-content: center; | ||
| align-items: flex-start; | ||
| padding: 12px 16px; | ||
| gap: 10px; | ||
| border-radius: 12px; | ||
| outline: none; | ||
| border: 2px solid rgba(49, 130, 246, 0); | ||
| background: var(--Cool-Gray-100, #f3f4f6); | ||
| } | ||
|
|
||
| .password-wrapper { | ||
| width: 100%; | ||
| position: relative; | ||
| } | ||
|
|
||
| .password-wrapper input { | ||
| padding-right: 40px; | ||
| } | ||
|
|
||
| .btn-toggle-password { | ||
| position: absolute; | ||
| right: 24px; | ||
| top: 50%; | ||
| transform: translateY(-50%); | ||
| background: none; | ||
| border: none; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| .btn-login { | ||
| display: flex; | ||
| width: 640px; | ||
| height: 56px; | ||
| padding: 16px 124px; | ||
| justify-content: center; | ||
| align-items: center; | ||
| gap: 10px; | ||
| border-radius: 40px; | ||
| border: none; | ||
| background: var(--primary-100); | ||
| color: var(--Cool-Gray-100, #f3f4f6); | ||
| text-align: center; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| .easy-login { | ||
| display: flex; | ||
| width: 640px; | ||
| height: 74px; | ||
| padding: 16px 23px; | ||
| flex-direction: row; | ||
| align-items: center; | ||
| gap: 10px; | ||
| border-radius: 8px; | ||
| border: none; | ||
| background: #e6f2ff; | ||
| } | ||
|
|
||
| .sns-buttons { | ||
| display: flex; | ||
| justify-content: flex-end; | ||
| gap: 16px; | ||
| width: 100%; | ||
| } | ||
|
|
||
| .btn-sns { | ||
| width: 42px; | ||
| height: 42px; | ||
| background: none; | ||
| border: none; | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: center; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| span { | ||
| color: var(--secondary-800); | ||
| white-space: nowrap; | ||
| } | ||
|
|
||
| .join-guide { | ||
| color: var(--secondary-800); | ||
| font-size: 14px; | ||
| font-style: normal; | ||
| font-weight: 500; | ||
| line-height: 24px; | ||
| } | ||
|
|
||
| .join-guide a { | ||
| color: var(--primary-100); | ||
| line-height: normal; | ||
| text-decoration-line: underline; | ||
| text-decoration-style: solid; | ||
| text-decoration-skip-ink: none; | ||
|
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. 신기한 게 많군요..! text-underline-position 말고는 기본으로 다 들어가 있는 값들 같습니다 🤣 |
||
| text-decoration-thickness: auto; | ||
| text-underline-offset: auto; | ||
| text-underline-position: from-font; | ||
| } | ||

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.
UI가 대부분 비슷해서 하나의 스타일 파일로 관리하거나, 공통 부분을 뽑아내는 것이 좋습니다 :) 지금은 관리 포인트가 두 곳이 됐죠!