Skip to content

Commit

Permalink
#54 mbti 질문 페이지 html/css
Browse files Browse the repository at this point in the history
  • Loading branch information
alreadynyeong committed Jan 17, 2022
1 parent 5b96ceb commit c27263c
Show file tree
Hide file tree
Showing 2 changed files with 108 additions and 0 deletions.
78 changes: 78 additions & 0 deletions public/css/test.css
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;
}
30 changes: 30 additions & 0 deletions public/html/test.html
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>

0 comments on commit c27263c

Please sign in to comment.