-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
136 lines (133 loc) · 3.49 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!doctype html>
<html>
<head>
<title>Elastic Beanstalk</title>
<style>
body {
color: #ffffff;
font-family: Arial, sans-serif;
font-size: 14px;
-moz-transition-property: text-shadow;
-moz-transition-duration: 4s;
-webkit-transition-property: text-shadow;
-webkit-transition-duration: 4s;
text-shadow: none;
}
.title {
color: #eb6f92;
}
body.blurry {
-moz-transition-property: text-shadow;
-moz-transition-duration: 4s;
-webkit-transition-property: text-shadow;
-webkit-transition-duration: 4s;
text-shadow: #fff 0px 0px 25px;
}
a {
color: #55aaff;
}
.textColumn,
.linksColumn {
padding: 2em;
}
.textColumn {
position: absolute;
top: 0px;
right: 50%;
bottom: 0px;
left: 0px;
text-align: right;
padding-top: 11em;
background-color: #191724;
}
.textColumn p {
width: 75%;
float: right;
}
.linksColumn {
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: 50%;
background-color: #33342d;
}
h1 {
color: #33342d;
font-size: 500%;
font-weight: normal;
margin-bottom: 0em;
}
h2 {
font-size: 200%;
font-weight: normal;
margin-bottom: 0em;
}
ul {
padding-left: 1em;
margin: 0px;
}
li {
margin: 1em 0em;
}
</style>
</head>
<body>
<div class="textColumn">
<h1 class="title">Congratulations CodeBuild !!!</h1>
<p>
Your first AWS Elastic Beanstalk Node.js application is now running on
your own dedicated environment in the AWS Cloud
</p>
</div>
<div class="linksColumn">
<h2>What's Next?</h2>
<ul>
<li>
<a
href="http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/Welcome.html"
>AWS Elastic Beanstalk overview</a
>
</li>
<li>
<a
href="http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.html"
>AWS Elastic Beanstalk concepts</a
>
</li>
<li>
<a
href="http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_nodejs_express.html"
>Deploy an Express Application to AWS Elastic Beanstalk</a
>
</li>
<li>
<a
href="http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_nodejs_express_elasticache.html"
>Deploy an Express Application with Amazon ElastiCache to AWS
Elastic Beanstalk</a
>
</li>
<li>
<a
href="http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_nodejs_geddy_elasticache.html"
>Deploy a Geddy Application with Amazon ElastiCache to AWS Elastic
Beanstalk
</a>
</li>
<li>
<a
href="http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_nodejs_custom_container.html"
>Customizing and Configuring a Node.js Container
</a>
</li>
<li>
<a
href="http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.loggingS3.title.html"
>Working with Logs</a
>
</li>
</ul>
</div>
</body>
</html>