-
Notifications
You must be signed in to change notification settings - Fork 0
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
5b96ceb
commit c27263c
Showing
2 changed files
with
108 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,78 @@ | ||
@charset "utf-8"; | ||
/*폰트*/ | ||
@import url('https://fonts.googleapis.com/css2?family=Pattaya&display=swap'); | ||
*{margin: 0; padding: 0;} | ||
|
||
@font-face { | ||
font-family: 'GmarketSansMedium'; | ||
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/[email protected]/GmarketSansMedium.woff') format('woff'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
*:not(i) { | ||
font-family: GmarketSansMedium; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: white; | ||
} | ||
|
||
p { | ||
color: white; | ||
} | ||
|
||
body { | ||
margin: auto; | ||
background-color: #242424; | ||
text-align: center; | ||
} | ||
|
||
main { | ||
margin-top: 150px; | ||
} | ||
|
||
.qna { | ||
margin: auto; | ||
padding: 20px; | ||
background-color: #202020; | ||
border-radius: 10px; | ||
width: 350px; | ||
} | ||
|
||
.qna div { | ||
margin: auto; | ||
width: 250px; | ||
height: 90px; | ||
color: white; | ||
border: 1px solid #8BFEE2; | ||
box-shadow: 0px 0px 10px 0.5px rgba(11, 243, 188, 0.5); | ||
border-radius: 20px; | ||
padding-top: 60px; | ||
} | ||
|
||
.move { | ||
margin: auto; | ||
width: 320px; | ||
color: white; | ||
} | ||
|
||
.move div{ | ||
color: white; | ||
float: left; | ||
margin-right: 5px; | ||
margin-left: 5px; | ||
padding-top: 10px; | ||
width: 150px; | ||
height: 30px; | ||
border-radius: 10px; | ||
} | ||
|
||
.prev { | ||
background-color: #BDBDBD; | ||
} | ||
|
||
.next { | ||
background-color: #0BF3BC; | ||
} |
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,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Hi MBTI</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="/public/css/test.css" /> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
|
||
</header> | ||
<main> | ||
<div><a>1/13</a></div><br> | ||
|
||
<div class="qna"> | ||
<p>Q1. 술집에서 멍하니 있는 당신의 머리속은?</p><br><br> | ||
<div class="btn_1">무한한 상상의 나래 속으로</div><br><br> | ||
<div class="btn_1">집.. 어떻게 가지?</div><br> | ||
</div> | ||
<br><br> | ||
<div class="move"> | ||
<div class="prev">이전</div> | ||
<div class="next">다음</div> | ||
</div> | ||
</main> | ||
|
||
</body> | ||
</html> |