-
Notifications
You must be signed in to change notification settings - Fork 39
[이태식] sprint2 #100
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\uD0DC\uC2DD-sprint2"
[이태식] sprint2 #100
Changes from all commits
4846f1e
25856fa
d41a209
e895966
696016a
06283e4
dc362dc
033a907
ecf1b24
195cb4f
4a88ec9
aa12766
7c27ac4
51fb823
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 |
|---|---|---|
| @@ -1,17 +1,5 @@ | ||
| * { | ||
| box-sizing: border-box; | ||
| font-family: Pretendard, sans-serif; | ||
| color: #374151; | ||
| font-size: 16px; | ||
| } | ||
|
|
||
| a { | ||
| text-decoration: none; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| p { | ||
| margin: 0; | ||
| html { | ||
| color: var(--gray700); | ||
| } | ||
|
|
||
| body { | ||
|
|
@@ -20,26 +8,36 @@ body { | |
| } | ||
|
|
||
| header { | ||
| position: sticky; | ||
| top: 0; | ||
| left: 0; | ||
| right: 0; | ||
| background-color: #FFFFFF; | ||
| border-bottom: 1px solid #DDE0E3 | ||
| } | ||
|
|
||
| footer { | ||
| background-color: #111827; | ||
| background-color: var(--gray900); | ||
| height: 10rem; | ||
| } | ||
|
|
||
| .gnb { | ||
| padding: 9px 400px; | ||
| display: flex; | ||
| justify-content: space-between; | ||
| align-items: center; | ||
| padding: 9px 400px; | ||
| } | ||
|
|
||
| .gnb img { | ||
| max-width: 10rem; | ||
| } | ||
|
|
||
| .btn-login { | ||
| width: 8rem; | ||
| height: 3rem; | ||
| text-align: center; | ||
| } | ||
|
|
||
| .wrap { | ||
| max-width: 1920px; | ||
| width: 100%; | ||
|
|
@@ -143,35 +141,12 @@ footer { | |
| gap: 0.75rem; | ||
| } | ||
|
|
||
| .btn-large, .btn-login { | ||
| background-color: #3692FF; | ||
| } | ||
|
|
||
| .btn-large:hover, .btn-login:hover { | ||
| background-color: #1967D6; | ||
| } | ||
|
|
||
| .btn-large:active, .btn-login:active { | ||
| background-color: #1251AA; | ||
| } | ||
|
|
||
| .btn-login { | ||
| color: #F3F4F6; | ||
| width: 8rem; | ||
| height: 3rem; | ||
| padding: 0.75rem 1.5rem; | ||
| border-radius: 8px; | ||
| text-align: center; | ||
| } | ||
|
|
||
| .btn-large { | ||
| color: #F9FAFB; | ||
| padding: 1rem 7.75rem; | ||
| border-radius: 40px; | ||
| .sns img{ | ||
| max-width: 1.25rem; | ||
| } | ||
|
|
||
| .keyword { | ||
| color: #3692FF; | ||
| color: var(--blue); | ||
|
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. 👍 칭찬 |
||
| margin-bottom: 0.75rem; | ||
| } | ||
|
|
||
|
|
@@ -181,45 +156,11 @@ footer { | |
| } | ||
|
|
||
| .copyright { | ||
| color: #9CA3AF; | ||
| color: var(--gray400); | ||
| } | ||
|
|
||
| .faq a { | ||
| color: #E5E7EB; | ||
| } | ||
|
|
||
| .bold { | ||
| font-weight: 700; | ||
| } | ||
|
|
||
| .semibold { | ||
| font-weight: 600; | ||
| } | ||
|
|
||
| .medium { | ||
| font-weight: 500; | ||
| } | ||
|
|
||
| .text-4xl { | ||
| font-size: 2.5rem; | ||
| line-height: 3.5rem; | ||
| letter-spacing: -0.125rem; | ||
| } | ||
|
|
||
| .text-2xl { | ||
| font-size: 1.5rem; | ||
| line-height: 2rem; | ||
| letter-spacing: -0.0625rem; | ||
| } | ||
|
|
||
| .text-xl { | ||
| font-size: 1.25rem; | ||
| line-height: 2rem; | ||
| } | ||
|
|
||
| .text-2lg { | ||
| font-size: 1.125rem; | ||
| line-height: 1.625rem; | ||
| color: var(--gray200); | ||
| } | ||
|
|
||
| @media (max-width:1920px) { | ||
|
|
@@ -229,7 +170,7 @@ footer { | |
| } | ||
|
|
||
| @media (max-width:1280px) { | ||
| * { | ||
| html { | ||
| font-size: 12px; | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,80 @@ | ||
| html { | ||
| color: var(--gray800); | ||
| } | ||
|
|
||
| .wrap { | ||
| max-width: 640px; | ||
| width: 100%; | ||
| margin: 0 auto; | ||
| } | ||
|
|
||
| .logo { | ||
| margin-top: 240px; | ||
| } | ||
|
|
||
| .logo a{ | ||
| display: flex; | ||
| justify-content: center; | ||
| } | ||
|
|
||
| .logo img { | ||
| width: 60%; | ||
| } | ||
|
|
||
| .login-form{ | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 24px; | ||
| margin-top: 40px; | ||
| } | ||
|
|
||
| .input-group{ | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 16px; | ||
| position: relative; | ||
| } | ||
|
|
||
| .input-group input{ | ||
| padding: 16px 24px; | ||
| background-color: var(--gray100); | ||
| border-width: 0; | ||
| border-radius: 12px; | ||
| } | ||
|
|
||
| .input-group img { | ||
| position: absolute; | ||
| right: 24px; | ||
| bottom: 16px; | ||
| width: 24px; | ||
| } | ||
|
|
||
| .simple-login{ | ||
| display: flex; | ||
| justify-content: space-between; | ||
| align-items: center; | ||
| padding: 16px 23px; | ||
| border-radius: 8px; | ||
| margin-top: 24px; | ||
| background-color: #E6F2FF; | ||
| } | ||
|
|
||
| .simple-login ul{ | ||
| display: flex; | ||
| gap: 16px; | ||
| } | ||
|
|
||
| .simple-login ul li img{ | ||
| width: 42px; | ||
| } | ||
|
|
||
| .to-signup{ | ||
| display: flex; | ||
| justify-content: center; | ||
| gap: 4px; | ||
| margin-top: 24px; | ||
| } | ||
|
|
||
| .to-signup a { | ||
| text-decoration: underline; | ||
| } |
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.
💊 제안
해당 이미지는 버튼으로 사용되긴하지만 이미지 자체는 아이콘이므로 ic_visibility_on.png와 같은 식으로 명명하시는 것을 추천드려요~
지금 프로젝트에서는 가능성이 없지만 이러한 아이콘 요소들은 버튼으로도, 이미지로도 사용될 수 있으니 이름자체에 btn, a 와 같은 태그명들이 들어갈 필요가 없습니다~