-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui-inqrcode.html
More file actions
56 lines (52 loc) · 1.26 KB
/
Copy pathui-inqrcode.html
File metadata and controls
56 lines (52 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<style>
.inqrbox {
width: 100%;
height: 100%;
background-color: rgba(0,0,0,.9);
position: fixed;
z-index: 9999;
top: 0;
left: 0;
}
.inqrboxMain {
display: table;
max-width: 90%;
height: 100%;
margin: 0 auto;
}
.inqrcont {
display: table-cell;
vertical-align: middle;
}
.inqrcont_title {
background-color: #fff;
padding: 20px;
border-radius: 3px;
}
.inqrcont_title input {
width: 95%;
text-align: center;
margin-top: 5px;
}
</style>
<div class="inqrbox">
<div class="inqrboxMain">
<div class="inqrcont">
<div class="inqrcont_title">
請複製以下網址,並透過系統瀏覽器參加活動。
<br>
<input type="text" value="www.digwow.com">
</div>
</div>
</div>
</div>
</body>
</html>