Skip to content

Commit

Permalink
Create inapp2.html
Browse files Browse the repository at this point in the history
  • Loading branch information
minhyeok4dev authored Jun 12, 2024
1 parent d6cd657 commit 301f801
Showing 1 changed file with 93 additions and 0 deletions.
93 changes: 93 additions & 0 deletions inapp2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
<!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,
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>

0 comments on commit 301f801

Please sign in to comment.