diff --git "a/image/\355\214\220\353\213\244\354\226\274\352\265\264.png" b/image/logo.png similarity index 100% rename from "image/\355\214\220\353\213\244\354\226\274\352\265\264.png" rename to image/logo.png diff --git "a/image/\355\214\220\353\213\244\353\247\210\354\274\223.png" b/image/typography.png similarity index 100% rename from "image/\355\214\220\353\213\244\353\247\210\354\274\223.png" rename to image/typography.png diff --git a/index.html b/index.html index 9305074d..4d09b996 100644 --- a/index.html +++ b/index.html @@ -17,10 +17,10 @@
@@ -35,8 +35,8 @@
구경하러 가기 @@ -59,8 +59,8 @@ Hot item

- 인기 상품을
- 확인해 보세요 + 인기 상품을 + 확인해 보세요

가장 HOT한 중고거래 물품을
@@ -77,8 +77,8 @@

Search

- 구매를 원하는
- 상품을 검색하세요 + 구매를 원하는 + 상품을 검색하세요

구매하고 싶은 물품을 검색해서
@@ -102,8 +102,8 @@

Register

- 판매를 원하는
- 상품을 등록하세요 + 판매를 원하는 + 상품을 등록하세요

어떤 물건이든 판매하고 싶은 상품을
diff --git a/login-Signup.css b/login-Signup.css new file mode 100644 index 00000000..232ac8b8 --- /dev/null +++ b/login-Signup.css @@ -0,0 +1,237 @@ +* { + box-sizing: border-box; +} + +@media (min-width: 375px) { + + /* 버튼 관련 */ + .buttons { + width: 100%; + height: 56px; + border-radius: 40px; + background-color: #9CA3AF; + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + color: #F3F4F6; + margin-bottom: 24px; + font-size: 20px; + font-weight: 600; + border: 0px; + } + + /* 전체적인 틀 */ + body { + font-family: "Pretendard Variable", Pretendard, sans-serif; + + display: flex; + flex-direction: column; + align-items: center; + } + + container { + margin-top: 80px; + width: 100%; + max-width: 400px; + height: auto; + margin-right: 16px; + margin-left: 16px; + } + + /* 로고관련 */ + #logo > a { + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + gap: 11px; + margin-bottom: 24px; + } + + #logo img:first-child { + width: 52px; + } + + #logo img:last-child { + width: 133px; + } + + /* 폼테그 관련 */ + form { + display: flex; + flex-direction: column; + color: #1F2937; + font-size: 18px; + font-weight: 700; + } + + form > label { + margin-bottom: 8px; + } + + form > input { + width: 100%; + height: 56px; + border: 0; + background-color: #F3F4F6; + border-radius: 12px; + margin-bottom: 16px; + } + + input::placeholder { + font-size: 16px; + padding: 24px; + } + + /* sns 로그인 관련 */ + .sns-login { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; + background-color: #E6F2FF; + padding: 16px 23px; + border-radius: 8px; + margin-bottom: 24px; + font-size: 16px; + font-weight: 500; + } + + .sns-login-image { + display: flex; + flex-direction: row; + gap: 16px; + } + + .sns-login-image img { + width: 42px; + height: 42px; + } + + /* footer 관련 */ + .footer { + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; + gap: 4px; + } + + .footer p { + margin: 0px; + } + + .footer a { + color: #3692FF; + } +} + +@media (min-width: 768px) { +/* 버튼 관련 */ + .buttons { + width: 100%; + height: 56px; + border-radius: 40px; + background-color: #9CA3AF; + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + color: #F3F4F6; + margin-bottom: 24px; + font-size: 20px; + font-weight: 600; + border: 0px; + } + + /* 전체적인 틀 */ + body { + font-family: "Pretendard Variable", Pretendard, sans-serif; + + display: flex; + flex-direction: column; + align-items: center; + } + + container { + margin-top: 231px; + width: 640px; + height: auto; + } + + /* 로고관련 */ + #logo > a { + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + gap: 22px; + margin-bottom: 40px; + } + + /* 폼테그 관련 */ + form { + display: flex; + flex-direction: column; + color: #1F2937; + font-size: 18px; + font-weight: 700; + } + + form > label { + margin-bottom: 16px; + } + + form > input { + width: 100%; + height: 56px; + border: 0; + background-color: #F3F4F6; + border-radius: 12px; + margin-bottom: 24px; + } + + input::placeholder { + font-size: 16px; + padding: 24px; + } + + /* sns 로그인 관련 */ + .sns-login { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; + background-color: #E6F2FF; + padding: 16px 23px; + border-radius: 8px; + margin-bottom: 24px; + font-size: 16px; + font-weight: 500; + } + + .sns-login-image { + display: flex; + flex-direction: row; + gap: 16px; + } + + .sns-login-image img { + width: 42px; + height: 42px; + } + + /* footer 관련 */ + .footer { + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; + gap: 4px; + } + + .footer a { + color: #3692FF; + } +} \ No newline at end of file diff --git a/login.css b/login.css index c371d161..8729e38d 100644 --- a/login.css +++ b/login.css @@ -16,6 +16,7 @@ margin-bottom: 24px; font-size: 20px; font-weight: 600; + border: 0px; } /* 전체적인 틀 */ @@ -52,7 +53,7 @@ form { font-weight: 700; } -form > lable { +form > label { margin-bottom: 16px; } @@ -106,17 +107,4 @@ input::placeholder { .footer a { color: #3692FF; -} - - - - - - - - - - - - - +} \ No newline at end of file diff --git a/login.html b/login.html index e3bc352a..8647b794 100644 --- a/login.html +++ b/login.html @@ -4,25 +4,25 @@ - - Document + + 판다마켓 - 로그인
- 이메일 - - 비밀번호 - - +