-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinapp3.html
More file actions
64 lines (64 loc) · 1.57 KB
/
inapp3.html
File metadata and controls
64 lines (64 loc) · 1.57 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fullsize</title>
<style>
* {
box-sizing: border-box;
}
body,
html {
width: 100%;
height: 100%;
background-color: #fff0;
margin: 0;
padding: 0;
-moz-tap-highlight-color: #fff0;
-webkit-tap-highlight-color: #fff0;
text-size-adjust: none;
overscroll-behavior: none;
overflow: hidden;
}
.container {
width: 100%;
height: calc(100% - 56px);
background-image: url(https://imagedelivery.net/lfkkXChLw6uG9RcA2ff5fg/a7cceb19-4f72-472b-ea53-25e801016100/flarelane);
background-size: cover;
background-position: center;
}
.controller {
position: relative;
width: 100%;
height: 56px;
display: flex;
align-items: center;
border-top: 1px solid #e0e0e0;
}
.button {
width: 50%;
height: 100%;
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
font-weight: 600;
color: #222;
cursor: pointer;
overflow: hidden;
}
.gray {
color: #818181;
}
</style>
</head>
<body>
<div class="container"></div>
<div class="controller">
<div class="button gray">다시 보지 않기</div>
<div class="button">확인</div>
</div>
</body>
</html>