Skip to content
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

Base 김주동 sprint2 #29

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
292 changes: 292 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,292 @@
/* 1. globals.css */
:root {
/* Gray scale */
--gray-900: #1b1d1f;
--gray-800: #26282b;
--gray-600: #454c53;
--gray-500: #72787f;
--gray-400: #9ea4a8;
--gray-200: #e5e7eb;
--gray-100: #e8ebed;
--gray-50: #f7f7f8;

/* Primary color */
--blue: #3692ff;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

a {
text-decoration: none;
color: inherit;
}

button {
background: none;
border: none;
outline: none;
box-shadow: none;
cursor: pointer;
font-family: inherit;
font-size: inherit;
line-height: inherit;
color: inherit;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

img {
vertical-align: bottom;
}

body {
color: #374151;
word-break: keep-all;
font-family: "Pretendard", sans-serif;
}

header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 70px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 200px;
background-color: #ffffff;
border-bottom: 1px solid #dfdfdf;
}

main {
margin-top: 70px;
}

footer {
background-color: #111827;
color: #9ca3af;
display: flex;
justify-content: space-between;
align-items: center;
padding: 32px 200px 108px 200px;
font-size: 16px;
}

#footerMenu {
display: flex;
gap: 30px;
color: var(--gray-200);
}

#linksMedia {
display: flex;
gap: 12px;
}

.wrapper {
max-width: 1200px;
margin: 0 auto;
width: 100%;
}

h1 {
font-size: 40px;
font-weight: 700;
line-height: 56px;
letter-spacing: 0.02em;
}

.button {
background-color: var(--blue);
color: #ffffff;
display: inline-flex;
align-items: center;
justify-content: center;
}

.button:hover {
background-color: #1967d6;
}

.button:focus {
background-color: #1251aa;
}

.button:disabled {
background-color: #9ca3af;
cursor: default;
pointer-events: none;
}

.pill-button {
font-size: 20px;
font-weight: 700;
border-radius: 999px;
padding: 16px 126px;
}

.full-width {
width: 100%;
}

/* 2. home.css */
.banner {
background-color: #cfe5ff;
height: 540px;
display: flex;
align-items: center;
background-repeat: no-repeat;
background-position: 80% bottom;
background-size: 55%;
}

#topBanner {
background-image: url("../img/Img_home_top.png");
}

#features {
padding-bottom: 138px;
}

#bottomBanner {
background-image: url("../img/Img_home_bottom.png");
}

#loginLinkButton {
font-size: 16px;
font-weight: 600;
border-radius: 8px;
padding: 14.5px 43px;
}

.banner .pill-button {
margin-top: 32px;
}

.feature {
padding: 138px 0;
display: flex;
align-items: center;
gap: 5%;
}

.feature:nth-child(2) {
text-align: right;
}

.feature-content {
flex: 1;
}

.feature-tag {
color: var(--blue);
font-size: 18px;
line-height: 25px;
font-weight: 700;
margin-bottom: 12px;
}

.feature-description {
font-size: 24px;
font-weight: 500;
line-height: 120%;
letter-spacing: 0.08em;
margin-top: 24px;
}

/* 3. auth.css */
.auth-container {
max-width: 640px;
margin: 0 auto;
}

.logo-home-button-wrapper {
display: block;
text-align: center;
margin-top: 60px;
margin-bottom: 40px;
}

.input-item {
margin-bottom: 24px;
display: flex;
flex-direction: column;
}

label {
display: block;
margin-bottom: 16px;
font-size: 18px;
font-weight: 700;
}

input {
padding: 16px 24px;
background-color: #f3f4f6;
border: none;
border-radius: 12px;
font-size: 16px;
line-height: 24px;
width: 100%;
}

input::placeholder {
color: #9ca3af;
font-size: 16px;
line-height: 24px;
}

input:focus {
outline-color: var(--blue);
}

.input-wrapper {
position: relative;
display: flex;
align-items: center;
}

.toggle-password {
position: absolute;
right: 24px;
cursor: pointer;
}

.links-login-container {
background-color: #e6f2ff;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 23px;
margin: 24px 0;
}

.links-login-container h3 {
font-weight: 500;
font-size: 16px;
line-height: 24px;
}

.links-login-buttons-container {
display: flex;
gap: 16px;
}

.auth-switch {
font-weight: 500;
font-size: 15px;
text-align: center;
}

.auth-switch a {
color: #3182f6;
text-decoration: underline;
text-underline-offset: 2px;
}
11 changes: 11 additions & 0 deletions faq.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ</title>
</head>
<body>
<h1>FAQ 화면입니다.</h1>
</body>
</html>
Binary file removed img/Group 19.png
Binary file not shown.
Binary file removed img/Img_home_01.png
Binary file not shown.
Binary file removed img/Img_home_02.png
Binary file not shown.
Binary file removed img/Img_home_03.png
Binary file not shown.
Binary file modified img/Img_home_bottom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/Img_home_top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions img/facebook-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/favicon.ico
Binary file not shown.
Binary file added img/feature1-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/feature2-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/feature3-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/google-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions img/hide_input.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed img/ic_facebook.png
Binary file not shown.
Binary file removed img/ic_instagram.png
Binary file not shown.
Binary file removed img/ic_twitter.png
Binary file not shown.
Binary file removed img/ic_youtube.png
Binary file not shown.
3 changes: 3 additions & 0 deletions img/instagram-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/kakao-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions img/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions img/show_input.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions img/twitter-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions img/youtube-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading