-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpepero_letter.html
138 lines (121 loc) · 2.66 KB
/
pepero_letter.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../css/letter.css">
<title>편지단계</title>
<style>
body {
font-family: "Noto Sans KR", sans-serif;
align-items: center;
background-color: #faf9f5;
margin: 0;
display: flex;
justify-content: center;
height: 100vh;
}
.letter-form {
width: 390px;
height: 844px;
display: flex;
flex-direction: column;
align-items: center;
}
header {
padding-top: 70px;
align-items: center;
justify-content: center;
}
h1 {
font-size: 20px;
font-weight: 600;
text-align: center;
color: #4b2a0b;
}
h3 {
font-size: 12px;
font-weight: 600;
text-align: center;
color: #885c33;
}
.input-wrapper {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
border: 16px solid rgba(234, 222, 216, 1) !important;
border-radius: 20px;
background-color: white;
padding: 15px 10px;
font-size: 16px;
outline: none;
width: 250px;
height: 325px;
top: 42px;
}
#titleInput {
position: relative;
top:0;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
border:none;
border-right:0px;
border-top:0px;
border-left:0px;
border-bottom:0px;
width: 90%;
height: 20px;
padding: 10px;
padding-left: 20px;
}
#messageInput {
position: relative;
top: 20px;
width: 90%;
height: 240px;
padding: 10px;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
resize: none;
border: none;
border-right: 0px;
border-top: 0px;
border-left: 0px;
border-bottom: 0px;
}
.send-button {
color: white;
background-color: rgba(64, 31, 0, 1);
width: 240px;
height: 59px;
cursor: pointer;
position: relative;
top: 180px;
border: none;
}
</style>
</head>
<body>
<!--전체 화면을 포함하는 section 박스-->
<section class="letter-form">
<header>
<h1>빼빼로와 편지가 준비됐어요!</h1>
<h3>마음을 담은 빼빼로와 편지를 전송해볼까요?</h3>
</header>
<!-- 편지 작성 화면을 포함하는 div 태그 -->
<div class="input-wrapper">
<input type="text" placeholder="제목을 입력하세요" id="titleInput">
<textarea placeholder="내용을 입력하세요" id="messageInput" rows="4"></textarea>
</div>
<button onclick="window.open('loading-ing.html')" class="send-button">전송하기</button>
</section>
</body>
</html>