forked from wedeploy-examples/hosting-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 932 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>It works!</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,700">
<style>
body {
background: #0e141a;
font-family: 'Open Sans', sans-serif;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
h1 {
font-size: 72px;
font-weight: 700;
color: #00d46a;
margin: 0;
}
h2 {
font-weight: 300;
color: rgba(255, 255, 255, 0.9);
margin: 0;
}
.logo {
position: absolute;
bottom: 20px;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<div class="container">
<h1>It works!</h1>
<h2>Now you're ready to roll.</h2>
</div>
<img class="logo" src="https://cloud.githubusercontent.com/assets/398893/16279177/af9b3622-386e-11e6-920e-3a3f33169831.png" width="150" alt="WeDeploy">
</body>
</html>