-
Notifications
You must be signed in to change notification settings - Fork 39
[이찬호] Sprint4 #159
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\uCC2C\uD638-sprint4"
[이찬호] Sprint4 #159
Changes from all commits
7fa14e5
b52d166
a1b39e6
4e87cd0
e688923
74f703e
1359246
19dea31
90b5d5f
f014f51
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,3 @@ | ||
| /* 대형 데스크탑 (1920px 이상) */ | ||
| @media (min-width: 1920px) { | ||
| .header, | ||
| .main-banner, | ||
|
|
@@ -10,7 +9,6 @@ | |
| max-width: 1520px; | ||
| } | ||
|
|
||
| /* 배너 배경 이미지 조정 */ | ||
| #hero { | ||
| background-size: 45%; | ||
| background-position: 85% bottom; | ||
|
|
@@ -21,13 +19,11 @@ | |
| background-position: 85% bottom; | ||
| } | ||
|
|
||
| /* 배너 컨테이너 최대 너비 제한 */ | ||
| .wrapper { | ||
| max-width: 1520px; | ||
| } | ||
| } | ||
|
|
||
| /* 중형-대형 데스크탑 (1600px 이하) */ | ||
| @media (max-width: 1600px) { | ||
| .logo { | ||
| margin-left: 100px; | ||
|
|
@@ -47,7 +43,6 @@ | |
| } | ||
| } | ||
|
|
||
| /* PC (1200px 이상) */ | ||
| @media (min-width: 1200px) { | ||
| .logo { | ||
| margin-left: 200px; | ||
|
|
@@ -63,12 +58,16 @@ | |
| } | ||
| } | ||
|
|
||
| /* 태블릿 (768px 이상 ~ 1199px 이하) */ | ||
| @media (min-width: 768px) and (max-width: 1199px) { | ||
| .logo { | ||
| margin-left: 24px; | ||
| } | ||
|
|
||
| h2 { | ||
| font-size: 32px; | ||
| line-height: 44px; | ||
| } | ||
|
|
||
| .login-btn { | ||
| margin-right: 24px; | ||
| } | ||
|
|
@@ -152,7 +151,6 @@ | |
| } | ||
|
|
||
| .feature img { | ||
| /* width: 85%; */ | ||
| width: auto; | ||
| padding: 0 24px; | ||
| margin: 0 auto; | ||
|
|
@@ -164,8 +162,7 @@ | |
| } | ||
| } | ||
|
|
||
| /* 모바일 (375px 이상 ~ 767px 이하) */ | ||
| @media (min-width: 375px) and (max-width: 767px) { | ||
| @media (max-width: 767px) { | ||
| .header { | ||
| height: 60px; | ||
| } | ||
|
|
@@ -174,6 +171,16 @@ | |
| margin-left: 16px; | ||
| } | ||
|
|
||
| h1 { | ||
|
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: 32px; | ||
| line-height: 44px; | ||
| } | ||
|
|
||
| h2 { | ||
| font-size: 24px; | ||
| line-height: 34px; | ||
| } | ||
|
|
||
| .login-btn { | ||
| margin-right: 16px; | ||
| font-size: 14px; | ||
|
|
||
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.
💊 제안
하단에 btn-disabled라는 클래스를 통해 구현하신 것을 봤는데, 유틸 클래스로 나누실 거라도 기본적인 것들은 공통으로 작성하시는 것이 더 좋아보여요. 그래서 cursor같은 값들은 그냥 button:disabled 에 기본적으로 추가해주시는 것을 추천드려요.