|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + <title>Elastic Beanstalk</title> |
| 5 | + <style> |
| 6 | + body { |
| 7 | + color: #ffffff; |
| 8 | + font-family: Arial, sans-serif; |
| 9 | + font-size:14px; |
| 10 | + -moz-transition-property: text-shadow; |
| 11 | + -moz-transition-duration: 4s; |
| 12 | + -webkit-transition-property: text-shadow; |
| 13 | + -webkit-transition-duration: 4s; |
| 14 | + text-shadow: none; |
| 15 | + } |
| 16 | + body.blurry { |
| 17 | + -moz-transition-property: text-shadow; |
| 18 | + -moz-transition-duration: 4s; |
| 19 | + -webkit-transition-property: text-shadow; |
| 20 | + -webkit-transition-duration: 4s; |
| 21 | + text-shadow: #fff 0px 0px 25px; |
| 22 | + } |
| 23 | + a { |
| 24 | + color: #55aaff; |
| 25 | + } |
| 26 | + .textColumn, .linksColumn { |
| 27 | + padding: 2em; |
| 28 | + } |
| 29 | + .textColumn { |
| 30 | + position: absolute; |
| 31 | + top: 0px; |
| 32 | + right: 50%; |
| 33 | + bottom: 0px; |
| 34 | + left: 0px; |
| 35 | + |
| 36 | + text-align: right; |
| 37 | + padding-top: 11em; |
| 38 | + background-color: blue; |
| 39 | + |
| 40 | + } |
| 41 | + .textColumn p { |
| 42 | + width: 75%; |
| 43 | + float:right; |
| 44 | + } |
| 45 | + .linksColumn { |
| 46 | + position: absolute; |
| 47 | + top:0px; |
| 48 | + right: 0px; |
| 49 | + bottom: 0px; |
| 50 | + left: 50%; |
| 51 | + |
| 52 | + background-color: #33342D; |
| 53 | + } |
| 54 | + |
| 55 | + h1 { |
| 56 | + color: #33342D; |
| 57 | + font-size: 500%; |
| 58 | + font-weight: normal; |
| 59 | + margin-bottom: 0em; |
| 60 | + } |
| 61 | + h2 { |
| 62 | + font-size: 200%; |
| 63 | + font-weight: normal; |
| 64 | + margin-bottom: 0em; |
| 65 | + } |
| 66 | + ul { |
| 67 | + padding-left: 1em; |
| 68 | + margin: 0px; |
| 69 | + } |
| 70 | + li { |
| 71 | + margin: 1em 0em; |
| 72 | + } |
| 73 | + </style> |
| 74 | + </head> |
| 75 | + <body> |
| 76 | + <div class="textColumn"> |
| 77 | + <h1>Congratulations</h1> |
| 78 | + <p>Your first AWS Elastic Beanstalk Node.js application is now running on your own dedicated environment in the AWS Cloud</p> |
| 79 | + </div> |
| 80 | + <div class="linksColumn"> |
| 81 | + <h2>What's Next?</h2> |
| 82 | + <ul> |
| 83 | + <li><a href="http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/Welcome.html">AWS Elastic Beanstalk overview</a></li> |
| 84 | + <li><a href="http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.html">AWS Elastic Beanstalk concepts</a></li> |
| 85 | + <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> |
| 86 | + <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> |
| 87 | + <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> |
| 88 | + <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> |
| 89 | + <li><a href="http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.loggingS3.title.html">Working with Logs</a></li> |
| 90 | + </ul> |
| 91 | + </div> |
| 92 | + </body> |
| 93 | +</html> |
0 commit comments