-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.php
51 lines (45 loc) · 1.06 KB
/
start.php
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>ゼンローグ</title>
<link rel="shortcut icon" href="icon.png">
<link rel="apple-touch-icon" href="iphone-icon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, maximum-scale=1.0, user-scalable=no minimal-ui">
<style>
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
}
.fullheight {
height: 100%;
width: 100%;
background: #bbddff;
display:table-cell;
text-align:center;
vertical-align:middle;
}
#card-img{
max-height: 100%;
max-width: 100%;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
</style>
</head>
<body>
<div id="card-panel" class="fullheight">
<a href="<?php echo $code; ?>"><img src="title.png" id="card-img"></a>
</div>
</body>
</html>