-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (43 loc) · 918 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>serserm</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="referrer" content="no-referrer">
<meta name="description" content="serserm">
<meta name="robots" content="index, follow">
<style>
html,
body {
height: 100%;
margin: 0;
padding: 0;
background-color: #fff;
}
.wrapper {
display: flex;
flex-direction: column;
height: 100%;
min-width: 320px;
min-height: 320px;
margin: 0 auto;
}
.wrap-container {
display: flex;
flex: 1 0 auto;
flex-direction: column;
box-sizing: border-box;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="wrap-container">
<main class="main">
</main>
</div>
<footer class="footer"></footer>
</div>
</body>
</html>