-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinapp2.html
More file actions
99 lines (99 loc) · 2.5 KB
/
inapp2.html
File metadata and controls
99 lines (99 loc) · 2.5 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
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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8" /><meta content="width=device-width,initial-scale=1" name="viewport" /><title>Base</title
><style>
* {
box-sizing: border-box;
}
body {
padding-top: var(--safe-area-inset-top);
padding-right: var(--safe-area-inset-right);
padding-bottom: calc(var(--safe-area-inset-bottom) + 20px);
padding-left: var(--safe-area-inset-left);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
},
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;
}
.background {
width: 100%;
height: 100%;
background-color: rgb(0 0 0 / 0.5);
position: fixed;
top: 0;
left: 0;
}
.container {
width: calc(100% - 32px);
height: 490px;
position: fixed;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
background-color: #fff;
border-radius: 16px;
overflow: hidden;
}
.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;
}
.line {
position: absolute;
left: 50%;
width: 1px;
height: 16px;
background-color: #e0e0e0;
border-radius: 2px;
}
.image_wrapper {
width: 100%;
height: calc(100% - 56px);
}
.image {
width: 100%;
height: 100%;
background-image: url(https://imagedelivery.net/lfkkXChLw6uG9RcA2ff5fg/d1fa0c01-2871-46bd-1585-c68d1084c000/flarelane);
background-size: cover;
background-position: center;
}
.gray {
color: #818181;
}
</style>
<div class="background"></div>
<div class="container">
<div class="image_wrapper"><div class="image"></div></div>
<div class="controller">
<div class="button gray">다시 보지 않기</div>
<div class="line"></div>
<div class="button">확인</div>
</div>
</div>
</html>