-
Notifications
You must be signed in to change notification settings - Fork 26
[오세진] sprint 3 #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-\uC624\uC138\uC9C4-sprint3"
[오세진] sprint 3 #100
Changes from all commits
85f1ba2
eca1d79
194e14e
f6718b3
001e464
0658554
34f3214
7bbcf83
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,7 +1,7 @@ | ||
| :root { | ||
| --primary-100: #3692ff; | ||
| --primary-200: #1967d6; | ||
| --primary-200: #1251aa; | ||
| --primary-300: #1251aa; | ||
| --gray-900: #111827; | ||
| --gray-800: #1f2937; | ||
| --gray-700: #374151; | ||
|
|
@@ -71,21 +71,23 @@ header { | |
| margin: 0 auto; | ||
| } | ||
|
|
||
| .top-title-txt { | ||
| width: 30%; | ||
| } | ||
|
|
||
| .show-items { | ||
| display: inline-block; | ||
| height: 56px; | ||
| border-radius: 40px; | ||
| padding: 16px 124px; | ||
| width: 100%; | ||
| text-align: center; | ||
| font-size: 20px; | ||
| font-weight: 600; | ||
| line-height: 32px; | ||
| line-height: 56px; | ||
| color: var(--gray-50, #f9fafb); | ||
| background-color: var(--primary-100, #3692ff); | ||
| } | ||
|
|
||
| .main-top > .container { | ||
| align-items: flex-start; | ||
| } | ||
|
|
||
| .container { | ||
| max-width: 1920px; | ||
| display: flex; | ||
|
|
@@ -94,7 +96,7 @@ header { | |
| } | ||
|
|
||
| .main-middle > .container { | ||
| width: 50%; | ||
| width: 65%; | ||
| background-color: #fcfcfc; | ||
| margin: 10% auto; | ||
| border-radius: 12px; | ||
|
|
@@ -178,6 +180,20 @@ footer .footer-list { | |
| margin: 0 200px; | ||
| } | ||
|
|
||
| .main-title { | ||
| font-size: 32px; | ||
| } | ||
|
|
||
| .main-describe { | ||
| font-size: 18px; | ||
| } | ||
| } | ||
|
|
||
| @media (min-width: 1200px) { | ||
| header .navi { | ||
| margin: 0 200px; | ||
| } | ||
|
|
||
| .main-point { | ||
| font-size: 12px; | ||
| } | ||
|
|
@@ -190,3 +206,175 @@ footer .footer-list { | |
| font-size: 18px; | ||
| } | ||
| } | ||
|
|
||
| @media (max-width: 1199px) and (min-width: 768px) { | ||
| header .navi { | ||
| margin: 0 24px; | ||
| padding: 12px 0; | ||
| } | ||
|
|
||
| .main-top { | ||
| height: 774px; | ||
| } | ||
|
|
||
| .container { | ||
| flex-direction: column; | ||
| justify-content: space-between; | ||
| height: 100%; | ||
| } | ||
|
|
||
| .invisible { | ||
| display: none; | ||
| } | ||
|
|
||
| .top-title-txt { | ||
| width: 100%; | ||
| margin-top: 10%; | ||
| text-align: center; | ||
| } | ||
|
|
||
| .show-items { | ||
| width: 50%; | ||
| } | ||
|
|
||
| .main-middle > .container { | ||
| width: 95%; | ||
| margin: 20px auto; | ||
| } | ||
|
|
||
| .container > .main-txt { | ||
| order: 2; | ||
| } | ||
|
|
||
| .container > .main-content-img { | ||
| order: 1; | ||
| } | ||
|
|
||
| .main-bottom { | ||
| margin-top: 10%; | ||
| height: 927px; | ||
| } | ||
|
|
||
| .bottom-txt { | ||
| margin-top: 30%; | ||
| text-align: center; | ||
| } | ||
|
|
||
| footer { | ||
| height: 160px; | ||
| } | ||
|
|
||
| .footer-list { | ||
| padding: 20px 80px; | ||
| } | ||
| } | ||
|
|
||
| @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. 굿굿 ! 반응형을 잘 적용하셨군요 👍👍 |
||
| body { | ||
| overflow-x: hidden; | ||
| } | ||
|
|
||
| header .navi { | ||
| margin: 0 16px; | ||
| padding: 12px 0; | ||
| } | ||
|
Comment on lines
+277
to
+280
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. (제안)
|
||
|
|
||
| .panda-icon { | ||
| display: none; | ||
| } | ||
|
|
||
| .main-top { | ||
| height: 540px; | ||
| } | ||
|
|
||
| .invisible { | ||
| display: none; | ||
| } | ||
|
|
||
| .container { | ||
| flex-direction: column; | ||
| justify-content: space-between; | ||
| height: 100%; | ||
| } | ||
|
|
||
| .top-title-txt { | ||
| width: 240px; | ||
| margin-top: 10%; | ||
| text-align: center; | ||
| } | ||
|
|
||
| .main-top > .container > .main-core-img { | ||
| width: 120%; | ||
| object-fit: contain; | ||
| overflow: hidden; | ||
| } | ||
|
Comment on lines
+306
to
+310
Collaborator
Author
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. figma를 기준으로 봤을때 일상의 모든 물건을 거래해 보세요 하단의 이미지가 PC, tablet에 비해서 조금 확장된것 처럼 보였씁니다. 그래서 120%로 width 값을 주었는데, 개발자 도구를 통해서 확인할때 저 이미지가 body width보다 더 튀어나올때도 있고, 아닐때도 있더라고요. 120%로 설정하지 않는게 더 나았을까요?
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. 음 ~ 해당 사항은 디자이너분과 소통하면서 "확장을 의도한 것인지"를 먼저 확정하고 스타일링 해야될 것으로 보이네요 ! 😉 미션 진행 관점에서는 출력되는 UI가 유사하다면 문제 없을 것으로 사료됩니다. 😊 |
||
|
|
||
| .main-core-img { | ||
| width: 100%; | ||
| } | ||
|
|
||
| .main-middle > .container { | ||
| width: 90%; | ||
| margin: 20% auto; | ||
| } | ||
|
|
||
| .main-core-title { | ||
| font-size: 32px; | ||
| } | ||
|
|
||
| .main-point, | ||
| .main-describe { | ||
| font-size: 16px; | ||
| } | ||
|
|
||
| .main-title { | ||
| font-size: 24px; | ||
| } | ||
|
|
||
| .container > .main-txt { | ||
| order: 2; | ||
| } | ||
|
|
||
| .container > .main-content-img { | ||
| order: 1; | ||
| } | ||
|
|
||
| .main-bottom { | ||
| margin-top: 10%; | ||
| } | ||
|
|
||
| .bottom-txt { | ||
| margin-top: 30%; | ||
| text-align: center; | ||
| } | ||
|
|
||
| .list-policy > a { | ||
| color: var(--gray-400, #9ca3af); | ||
| margin: 0 8px; | ||
| } | ||
|
|
||
| footer .footer-list { | ||
| display: grid; | ||
| grid-template-areas: | ||
| "policy sns" | ||
| ". ." | ||
| "copyright ."; | ||
| grid-template-columns: 1fr 1fr; | ||
| gap: 16px; | ||
| padding: 20px 16px; | ||
| align-items: center; | ||
|
Comment on lines
+356
to
+365
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. 크으 ~ 그리드를 잘 활용하셨네요 👍 |
||
| } | ||
|
|
||
| .list-policy { | ||
| grid-area: policy; | ||
| } | ||
|
|
||
| .list-sns { | ||
| grid-area: sns; | ||
| justify-content: center; | ||
| } | ||
|
|
||
| .copyright { | ||
| grid-area: copyright; | ||
| } | ||
| } | ||
|
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -6,6 +6,10 @@ | |||||
| <title>판다마켓</title> | ||||||
| <link rel="stylesheet" href="css/reset.css" /> | ||||||
| <link rel="stylesheet" href="css/main-style.css" /> | ||||||
| <meta property="og:image" content="./images/5d7d01ce3d5d3c8c.jpg" /> | ||||||
|
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. 혹시 해당 이미지 정상적으로 동작이 될까요?
Suggested change
|
||||||
| <meta property="og:title" content="판다 마켓" /> | ||||||
| <meta property="og:description" content="일상의 모든 물건을 거래해보세요" /> | ||||||
| <meta property="og:url" content="https://www.codeit.kr" /> | ||||||
|
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.
|
||||||
| <meta property="og:url" content="https://www.codeit.kr" /> | |
| <meta property="og:url" content="https://세진님판다마켓URL" /> |
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.
invisible이 반응형에 따라 활성화 되는게 의도된거라면 그 조건도 함께 이름에 포함해볼 수 있습니다 !
| <h2 class="main-title">인기 상품을 <br class="invisible" />확인해 보세요</h2> | |
| <h2 class="main-title">인기 상품을 <br class="mobile-invisible" />확인해 보세요</h2> |
혹은 sm-invisible, md-invisible과 같이 작성해볼 수도 있겠네요 😊
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.
footer또한 방금 코멘트와 동일합니다 😊