diff --git a/assets/logo/logo.png b/assets/logo/logo.png index 8ca5fd25..d5b358d6 100644 Binary files a/assets/logo/logo.png and b/assets/logo/logo.png differ diff --git a/css/common/auth.css b/css/common/auth.css index 0842a1c3..c6aeaacb 100644 --- a/css/common/auth.css +++ b/css/common/auth.css @@ -1,3 +1,5 @@ +@import 'variables.css'; + html, body { display: flex; flex-direction: column; @@ -6,8 +8,8 @@ html, body { } .logo { - width: auto; - height: 132px; + width: 396px; + height: auto; margin: 0 122px; } @@ -25,8 +27,8 @@ html, body { margin-bottom: 24px; } -input { - width: 640px; +.auth-input { + width: 100%; height: 56px; margin-top: 16px; border: none; @@ -39,7 +41,8 @@ input { padding: 16px 24px 14px; } -input::placeholder { + +.auth-input::placeholder { color: var(--gray400); font-weight: 400; font-size: 16px; @@ -47,10 +50,16 @@ input::placeholder { letter-spacing: 0%; } -/* #pwd { - padding: 16px 24px 16px; -} */ - +.message { + font-style: normal; + font-weight: 600; + font-size: 14px; + line-height: 24px; + margin-top: 8px; + margin-left: 16px; + color: var(--red); + height: 24px; +} .password { display: flex; @@ -66,14 +75,14 @@ input::placeholder { top: 32px; } -.pwd-icon { +.pwd-icons { width: 100%; height: 100%; } .submit-btn button { color: var(--gray100); - background-color: var(--blue); + background-color: var(--blue100); width: 640px; height: 56px; text-align: center; @@ -93,7 +102,7 @@ input::placeholder { gap: 10px; width: 640px; height: 74px; - background: #E6F2FF; /* 배경색 */ + background: var(--background); /* 배경색 */ border-radius: 8px; flex: none; @@ -129,7 +138,7 @@ input::placeholder { } .move-page a { - color: var(--blue); + color: var(--blue100); text-decoration: underline; } @@ -138,12 +147,9 @@ input::placeholder { body { margin: 190px 52px 325px; } - - } -@media (max-width: 767px) and (min-width: 375px) { - +@media (max-width: 767px) { .logo-a { display: flex; justify-content: center; @@ -161,7 +167,7 @@ input::placeholder { margin: 0 auto; } - input { + .auth-input { width: 100%; } diff --git a/css/common/variables.css b/css/common/variables.css index c2ae9a6a..e936c82a 100644 --- a/css/common/variables.css +++ b/css/common/variables.css @@ -8,5 +8,11 @@ --gray200 : #E5E7EB; --gray100 : #F3F4F6; --gray50: #F9FAFB; - --blue: #3692FF; + --blue100: #3692FF; + --blue200: #1967D6; + --blue300: #1251AA; + --red: #F74747; + --white: #FFFFFF; + --background: #E6F2FF; + --skyblue: #CFE5FF; } \ No newline at end of file diff --git a/css/pages/home.css b/css/pages/home.css index 4562cce5..8328931a 100644 --- a/css/pages/home.css +++ b/css/pages/home.css @@ -1,6 +1,5 @@ -/* home.css */ +@import '../common/variables.css'; -/* 페이지 스타일 */ body { margin: 0 auto; } @@ -15,14 +14,14 @@ body { height: 70px; position: sticky; top: 0; - background-color: #FFFFFF; + background-color: var(--white); } h2 { font-size: 40px; font-weight: 700; line-height: 56px; - color: #374151; + color: var(--gray700); } a { @@ -31,14 +30,14 @@ a { .logo img { width: 153px; - height: 51px; + height: auto; } .login-btn { - background-color: #3692FF; + background-color: var(--blue100); border: none; border-radius: 8px; - color: #F3F4F6; + color: var(--gray100); font-size: 16px; font-weight: 600; line-height: 48px; @@ -50,7 +49,7 @@ a { } .background { - background-color: #CFE5FF; + background-color: var(--skyblue); display: flex; } @@ -84,8 +83,8 @@ a { .items-btn { display: inline-block; - background-color: #3692FF; - color: #F3F4F6; + background-color: var(--blue100); + color: var(--gray100); border-radius: 40px; border: none; font-size: 20px; @@ -130,7 +129,7 @@ a { } .description h4 { - color: #3692FF; + color: var(--blue100); font-size: 18px; font-weight: 700; line-height: 26px; @@ -145,7 +144,7 @@ a { font-size: 24px; font-weight: 500; line-height: 32px; - color: #374151; + color: var(--gray700); } .bottom-img { @@ -154,13 +153,13 @@ a { } footer { - background-color: #111827; + background-color: var(--gray900); justify-content: center; height: 160px; } .footer-container { - color: #9CA3AF; + color: var(--gray400); display: flex; justify-content: space-between; align-items: center; @@ -192,7 +191,7 @@ footer { .privacy-faq a { text-decoration: none; - color: #E5E7EB; + color: var(--gray200); } @@ -223,7 +222,7 @@ footer { font-size: 40px; font-weight: 700; line-height: 56px; - color: #374151; + color: var(--gray700); } .background { @@ -383,14 +382,14 @@ footer { .privacy-faq a { text-decoration: none; - color: #E5E7EB; + color: var(--gray200); } } -@media (max-width: 767px) and (min-width: 375px){ +@media (max-width: 767px) { .logo { margin-left: 16px; } @@ -547,7 +546,7 @@ footer { .privacy-faq a { text-decoration: none; - color: #E5E7EB; + color: var(--gray200); } .icons { diff --git a/css/pages/login.css b/css/pages/login.css index e40eebb9..de9af335 100644 --- a/css/pages/login.css +++ b/css/pages/login.css @@ -11,6 +11,4 @@ main { body { margin: 80px 16px 231px; } - - } \ No newline at end of file diff --git a/css/pages/signup.css b/css/pages/signup.css index 5b7d16d6..5b400e7c 100644 --- a/css/pages/signup.css +++ b/css/pages/signup.css @@ -1,3 +1,3 @@ body { - margin: 60px 640px; -} \ No newline at end of file + margin: 60px auto; +} diff --git a/index.html b/index.html index 4ebea664..13f106df 100644 --- a/index.html +++ b/index.html @@ -1,24 +1,35 @@ + 판다마켓 + + + + + + + + + + + - 판다마켓
@@ -27,7 +38,7 @@

일상의 모든 물건을 거래해보세요

- 구경하러 가기 + 구경하러 가기 메인 페이지 위쪽 이미지
@@ -68,8 +79,8 @@

믿을 수 있는
판다마켓 중고거래