-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 1.23 KB
/
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
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Hello from AWS Lambda!</title>
<style type="text/css">
@font-face {
font-family: "sans-serif";
}
body {
margin: 0;
font-family: "Amazon Ember", Helvetica, Arial, sans-serif;
}
h1 {
background-color: #232f3e;
color: white;
font-size: 3rem;
font-weight: 300;
margin: 0;
padding: 1rem;
text-align: center;
}
h2, h3 {
font-weight: normal;
margin-top: 0;
}
h3 {
margin-top: 1rem;
margin-left: 1rem;
}
p {
margin-top: 0;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
padding-top: 2rem;
width: 20%;
}
@media only screen and (max-width: 800px) {
.section > div {
flex-direction: column;
}
}
</style>
</head>
<body>
<h1>Hello from AWS Lambda! :)</h1>
<img src="stratusgrid-logo.png" alt="StratusGrid" />
</body>
</html>