-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd58012
commit a59b175
Showing
26 changed files
with
670 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
main { | ||
width: 100%; | ||
height: 100vh; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
main > .content { | ||
width: 640px; | ||
text-align: center; | ||
} | ||
|
||
#forms { | ||
} | ||
#forms label { | ||
display: block; | ||
width: 100%; | ||
text-align: left; | ||
font-size: 1.8rem; | ||
font-weight: 700; | ||
line-height: 2.6rem; | ||
margin-bottom: 1.6rem; | ||
} | ||
#forms .inputbox { | ||
width: 100%; | ||
padding: 1.6rem 2.4rem; | ||
border-radius: 12px; | ||
height: 5.6rem; | ||
background: var(--gray100); | ||
margin-bottom: 2.4rem; | ||
display: flex; | ||
border: 1px solid transparent; | ||
} | ||
#forms .inputbox.on { | ||
border: 1px solid var(--primary100); | ||
} | ||
#forms .inputbox input { | ||
border: 0; | ||
width: 100%; | ||
height: 100%; | ||
background: transparent; | ||
font-size: 1.6rem; | ||
line-height: 2.6rem; | ||
outline: none; | ||
} | ||
|
||
#forms button { | ||
width: 100%; | ||
height: 5.6rem; | ||
background: var(--gray400); | ||
color: var(--gray50); | ||
font-size: 2rem; | ||
line-height: 3.2rem; | ||
font-weight: 600; | ||
border: 0; | ||
border-radius: 40px; | ||
margin-bottom: 2.4rem; | ||
transition: 0.5s; | ||
} | ||
#forms button.btn.on { | ||
background-color: var(--primary100); | ||
} | ||
|
||
#forms .simple { | ||
display: flex; | ||
justify-content: space-between; | ||
background: #e6f2ff; | ||
padding: 1.6rem 2.3rem; | ||
height: 7.4rem; | ||
border-radius: 12px; | ||
margin-bottom: 2.4rem; | ||
} | ||
#forms .simple p { | ||
font-size: 1.6rem; | ||
line-height: 2.6rem; | ||
font-weight: 500; | ||
display: flex; | ||
align-items: center; | ||
color: var(--gray800); | ||
} | ||
#forms .simple .icon_box { | ||
display: flex; | ||
justify-content: space-between; | ||
width: 10rem; | ||
} | ||
#forms .simple a { | ||
display: block; | ||
} | ||
|
||
#forms .link { | ||
text-align: center; | ||
font-size: 1.4rem; | ||
line-height: 2.4rem; | ||
font-weight: 500; | ||
color: var(--gray800); | ||
} | ||
#forms .link a { | ||
color: var(--primary100); | ||
font-size: 1.4rem; | ||
line-height: 1.6rem; | ||
font-weight: 500; | ||
text-decoration: underline; | ||
} | ||
|
||
@media screen and (max-width: 640px) { | ||
html { | ||
font-size: 10px; | ||
} | ||
.big_logo img { | ||
width: 100%; | ||
max-width: 390px; | ||
} | ||
main > .content { | ||
width: 100%; | ||
padding: 0 5rem; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
@font-face { | ||
font-family: "Pretendard"; | ||
font-weight: 400; | ||
font-display: swap; | ||
src: local("Pretendard Regular"), | ||
url(./font/Pretendard-Regular.woff2) format("woff2"), | ||
url(./font/Pretendard-Regular.woff) format("woff"); | ||
} | ||
/* reset */ | ||
* { | ||
padding: 0; | ||
margin: 0; | ||
box-sizing: border-box; | ||
font-family: "Pretendard"; | ||
} | ||
a { | ||
text-decoration: none; | ||
} | ||
li { | ||
list-style: none; | ||
} | ||
html { | ||
font-size: 10px; | ||
} | ||
p { | ||
word-break: keep-all; | ||
} | ||
|
||
/* color */ | ||
:root { | ||
--primary100: #3692ff; | ||
--primary200: #1967d6; | ||
--primary300: #1251aa; | ||
--error: #f74747; | ||
|
||
/*secondary color*/ | ||
--gray900: #111827; | ||
--gray800: #1f2937; | ||
--gray700: #374151; | ||
--gray600: #4b5563; | ||
--gray500: #6b7280; | ||
--gray400: #9ca3af; | ||
--gray200: #e5e7eb; | ||
--gray100: #f3f4f6; | ||
--gray50: #f9fafb; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,214 @@ | ||
/* ---------------- CSS ---------------- */ | ||
body { | ||
margin-top: 7rem; | ||
} | ||
|
||
header { | ||
width: 100%; | ||
height: 7rem; | ||
position: fixed; | ||
top: 0; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
border-bottom: 0.1rem solid #dfdfdf; | ||
z-index: 999; | ||
background: #fff; | ||
} | ||
header .gnb { | ||
display: flex; | ||
height: 100%; | ||
width: 100%; | ||
max-width: 1920px; | ||
justify-content: space-between; | ||
padding: 0.9rem 20rem; | ||
margin: auto; | ||
} | ||
header .loginBtn { | ||
border: 0; | ||
display: block; | ||
text-align: center; | ||
width: 12.8rem; | ||
height: 4.8rem; | ||
border-radius: 0.8rem; | ||
padding: 1.2rem 2.3rem; | ||
background-color: var(--primary100); | ||
font-size: 2em; | ||
font-weight: 600; | ||
color: var(--gray50); | ||
} | ||
header .logo img { | ||
width: 15.3rem; | ||
} | ||
|
||
.visual { | ||
height: 54rem; | ||
width: 100%; | ||
} | ||
.visual .content { | ||
height: 100%; | ||
width: 100%; | ||
background-color: #cfe5ff; | ||
display: flex; | ||
align-items: flex-end; | ||
justify-content: center; | ||
} | ||
.visual .content img { | ||
width: 40vw; | ||
} | ||
.visual .txtBox { | ||
height: 34rem; | ||
margin-right: 1rem; | ||
} | ||
.visual .txtBox h2 { | ||
height: 11.2rem; | ||
font-size: 4rem; | ||
line-height: 5.6rem; | ||
font-weight: 700; | ||
color: #374151; | ||
margin-bottom: 3rem; | ||
} | ||
.visual .txtBox a { | ||
width: 100%; | ||
display: block; | ||
max-width: 35.7rem; | ||
max-height: 5.6rem; | ||
font-size: 2.3rem; | ||
line-height: 3.2rem; | ||
font-weight: 600; | ||
color: var(--gray50); | ||
background-color: var(--primary100); | ||
text-align: center; | ||
padding: 1.6rem 0; | ||
border-radius: 4rem; | ||
} | ||
|
||
.section { | ||
display: flex; | ||
align-items: cneter; | ||
justify-content: center; | ||
width: 100%; | ||
height: 72rem; | ||
padding: 13.8rem 34.4rem; | ||
} | ||
.section .content { | ||
width: 100rem; | ||
background-color: #fcfcfc; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 0 1rem; | ||
} | ||
.section .content img { | ||
max-width: 58.8rem; | ||
/* width: 100%; */ | ||
} | ||
.section .content .left { | ||
text-align: right; | ||
} | ||
.section .content .left.txtBox { | ||
margin-right: 6.4rem; | ||
} | ||
.section .content .txtBox { | ||
position: relative; | ||
margin-left: 6.4rem; | ||
width: 100%; | ||
} | ||
.section .content .txtBox .abs { | ||
width: 32rem; | ||
} | ||
.section .content .txtBox h4 { | ||
color: var(--primary100); | ||
font-size: 1.8rem; | ||
font-weight: 700; | ||
line-height: 2.6rem; | ||
margin-bottom: 1.5rem; | ||
} | ||
.section .content .txtBox h2 { | ||
font-size: 4rem; | ||
line-height: 5.6rem; | ||
font-weight: 700; | ||
letter-spacing: 2%; | ||
color: #374151; | ||
margin-bottom: 3.5rem; | ||
} | ||
.section .content .txtBox p { | ||
font-size: 2.4rem; | ||
line-height: 2.8rem; | ||
font-weight: 500; | ||
color: #374151; | ||
} | ||
|
||
.bottomVisual { | ||
margin-top: 13.8rem; | ||
} | ||
.bottomVisual img { | ||
width: 64.9rem; | ||
} | ||
.bottomVisual .txtBox { | ||
margin-right: 6.9rem; | ||
} | ||
|
||
footer { | ||
width: 100%; | ||
height: 16rem; | ||
padding: 3.2rem 20rem; | ||
background: #111827; | ||
} | ||
footer .content { | ||
max-width: 1920px; | ||
margin: auto; | ||
display: flex; | ||
justify-content: space-between; | ||
font-size: 1.6rem; | ||
} | ||
footer .content p { | ||
color: #9ca3af; | ||
line-height: 1.8rem; | ||
font-weight: 400; | ||
} | ||
footer .content .link { | ||
width: 15.9rem; | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
footer .content .link a { | ||
color: #e5e7eb; | ||
} | ||
footer .content .icon { | ||
width: 11.6rem; | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
footer .content .icon img { | ||
width: 2rem; | ||
} | ||
|
||
@media screen and (max-width: 1024px) { | ||
html { | ||
font-size: 5px; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 656px) { | ||
br { | ||
display: none; | ||
} | ||
.visual .content { | ||
padding: 0 3rem; | ||
} | ||
.section { | ||
height: auto; | ||
} | ||
.section .content { | ||
flex-wrap: wrap; | ||
} | ||
.section .content .txtBox { | ||
padding: 3rem 0; | ||
} | ||
.section .content .left { | ||
order: 3; | ||
} | ||
.sectipn .content img { | ||
width: 100%; | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>fqa</title> | ||
</head> | ||
<body> | ||
|
||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.