-
Notifications
You must be signed in to change notification settings - Fork 39
[유서현] sprint1 #22
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-\uC720\uC11C\uD604-sprint1"
[유서현] sprint1 #22
Changes from all commits
404358d
5da933a
b7d5662
fae871e
0876223
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,252 @@ | ||
| * { | ||
| margin: 0; | ||
| padding: 0; | ||
| box-sizing: border-box; | ||
| font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif; | ||
| } | ||
|
|
||
| h2 { | ||
| font-size: 40px; | ||
| font-weight: 700; | ||
| line-height: 56px; | ||
| } | ||
|
|
||
| h6 { | ||
| font-size: 24px; | ||
| font-weight: 500; | ||
| line-height: 32px; | ||
| } | ||
|
|
||
| /* 헤더 */ | ||
| .header { | ||
| background-color: #FFFFFF; | ||
| margin: 0 auto; | ||
| width: 100%; | ||
| height: 70px; | ||
| display: flex; | ||
| justify-content: center; | ||
| /* position: sticky; | ||
| top: 0px; */ | ||
| } | ||
|
|
||
| .navbar { | ||
| display: flex; | ||
| height: 100%; | ||
| align-items: center; | ||
| justify-content: space-between; | ||
| width: 100%; | ||
| max-width: 1120px; | ||
| margin: 0 200px; | ||
| } | ||
|
|
||
| .logo a { | ||
| display: flex; | ||
| align-items: center; | ||
| text-decoration: none; | ||
| color: #3692FF; | ||
| font-size: 25.63px; | ||
| font-weight: 700; | ||
| gap: 8px; | ||
| white-space: nowrap | ||
| } | ||
|
|
||
| .logo img { | ||
| width: 40px; | ||
| } | ||
|
|
||
| .login-btn { | ||
| display: flex; | ||
| width: 128px; | ||
| height: 48px; | ||
| background-color: #3692FF; | ||
| color: #FFFFFF; | ||
| border-radius: 8px; | ||
| padding: 12px 23px; | ||
| font-size: 16px; | ||
| font-weight: 600; | ||
| text-align: center; | ||
| align-items: center; | ||
| justify-content: center; | ||
| text-decoration: none; | ||
| border: none; | ||
| white-space: nowrap; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| .login-btn:hover { | ||
| background-color: #1967D6; | ||
| } | ||
|
|
||
| .login-btn:active { | ||
| background-color: #1251AA; | ||
| } | ||
|
|
||
| /* 메인 */ | ||
|
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. 👍 칭찬 |
||
| .main { | ||
| background-color: #FCFCFC; | ||
| } | ||
|
|
||
| .top-section { | ||
| width: 100%; | ||
| height: 540px; | ||
| background-color: #CFE5FF; | ||
| display: flex; | ||
| justify-content: center; | ||
| align-items: end; | ||
| gap: 7px; | ||
| } | ||
|
|
||
| .banner { | ||
| display: flex; | ||
| width: 100%; | ||
| max-width: 1120px; | ||
| margin: 0 200px; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .banner img { | ||
| width: 746px; | ||
| } | ||
|
|
||
| .banner-text { | ||
| background-color: #CFE5FF; | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 32px; | ||
| padding-bottom: 60px; | ||
| } | ||
|
|
||
| .items-btn { | ||
| display: flex; | ||
| height: 56px; | ||
| background-color: #3692FF; | ||
| color: #FFFFFF; | ||
| border-radius: 40px; | ||
| padding: 16px 124px; | ||
| font-size: 20px; | ||
| font-weight: 600; | ||
| text-align: center; | ||
| align-items: center; | ||
| justify-content: center; | ||
| text-decoration: 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. 💊 제안 혹시 어떤 내용들이 들어가는지 궁금하시다면 reset.css, normalize.css 를 구글에 검색해보시면 다양한 파일이 나오니 |
||
| border: none; | ||
| white-space: nowrap; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| .items-btn:hover { | ||
| background-color: #1967D6; | ||
| } | ||
|
|
||
| .items-btn:active { | ||
| background-color: #1251AA; | ||
| } | ||
|
|
||
| .center-section { | ||
| background-color: #FFFFFF; | ||
| margin: 0 auto; | ||
| width: 100%; | ||
| height: 720px; | ||
| display: flex; | ||
| justify-content: center; | ||
| padding: 138px 0; | ||
| } | ||
|
|
||
| .card { | ||
| display: flex; | ||
| align-items: center; | ||
| width: 988px; | ||
| background-color: #FCFCFC; | ||
| gap: 64px; | ||
| border-radius: 12px; | ||
| } | ||
|
|
||
| .card img { | ||
| width: 579px; | ||
| height: 444px; | ||
| } | ||
|
|
||
| .card-text { | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 24px; | ||
| } | ||
|
|
||
| .text-left { | ||
| padding-left: 24px; | ||
| text-align: right; | ||
| } | ||
|
|
||
| .card-text span { | ||
| color: #3692FF; | ||
| font-size: 18px; | ||
| line-height: 26px; | ||
| font-weight: 700; | ||
| } | ||
|
|
||
| .bottom-section { | ||
| margin-top: 130px; | ||
| width: 100%; | ||
| height: 540px; | ||
| background-color: #CFE5FF; | ||
| display: flex; | ||
| justify-content: center; | ||
| align-items: end; | ||
| } | ||
|
|
||
| .bottom-banner { | ||
| gap: 69px; | ||
| } | ||
|
|
||
| /* 푸터 */ | ||
| .footer { | ||
| background-color: #111827; | ||
| margin: 0 auto; | ||
| width: 100%; | ||
| height: 160px; | ||
| display: flex; | ||
| justify-content: center; | ||
| padding: 32px 0; | ||
| } | ||
|
|
||
| .icons { | ||
| color: #FFFFFF; | ||
| } | ||
|
|
||
| .footer-content { | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: space-between; | ||
| width: 100%; | ||
| max-width: 1120px; | ||
| margin: 0 200px; | ||
| font-size: 16px; | ||
| font-weight: 400; | ||
| align-items: start; | ||
| } | ||
|
|
||
| .copyright { | ||
| color: #9CA3AF; | ||
| } | ||
|
|
||
| .footer-btn { | ||
| display: flex; | ||
| gap: 32px; | ||
| } | ||
|
|
||
| .footer-btn a { | ||
| color: #E5E7EB; | ||
| text-decoration: none; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| .icons { | ||
| display: flex; | ||
| font-size: 20px; | ||
| gap: 12px; | ||
| } | ||
|
|
||
| .icons a { | ||
| color: #FFFFFF; | ||
| cursor: pointer; | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>판다마켓</title> | ||
| <link | ||
| rel="stylesheet" | ||
| as="style" | ||
| crossorigin | ||
| href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/variable/pretendardvariable.css" | ||
| /> | ||
| <link rel="stylesheet" href="assets/css/styles.css" /> | ||
| </head> | ||
| <body> | ||
| faq | ||
| </body> | ||
| </html> |
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.
💊 제안
주석은 히스토리상 필요하거나 코드설명이 필요한 경우처럼 필요한 경우만 남겨두는 것이 좋습니다.
만약 작업중 확인하시려고 넣으신거면 삭제해주세요~