-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
executable file
·69 lines (47 loc) · 1.2 KB
/
index.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<html>
<head>
<title>*** Lab</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="/js_library/jquery-3.3.1.js"></script>
<link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
</head>
<style>
div.mydiv {
position:fixed;
top: 450px;
left: 50%;
width:40em;
margin-left: -20em; /*set to a negative number 1/2 of your width*/
height:5em;
margin-top: -12em; /*set to a negative number 1/2 of your height*/
/* border: 1px solid #ccc; */
background-color: #FAD74F;
display: table;
}
#inner_text{
display: table-cell;
border: 0px solid #ccc;
width:40em;
text-align: center;
vertical-align : middle;
font-size: 1.3em;
}
</style>
<?php
include('header.php');
?>
<body>
<div class="mydiv">
<p id="inner_text">
This page is under construction <br> only "lab meeting record" & "profile" functions are available for use.
</p>
</div>
<!-- <div class="mydiv">
<p id="inner_text">
The website is under maintainance, ask bo for details.<br><br>
我在维护网站,网站功能可能不正常,请发微信或电话18522633505询问情况。
</p>
</div> -->
</body>
</html>