Created
April 26, 2017 04:40
-
-
Save mbonell/d1ac6700859db234b3d00151733997fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="theme-color" content="#6D506E" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Hello Cloud App Devs</title> | |
<link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet"> | |
<style> | |
body { | |
font-family: Helvetica, Arial; | |
} | |
h1 { | |
font-family: 'Pacifico', cursive; | |
color:#FFF; | |
font-size: 70px; | |
text-shadow: 0 0px 10px rgba(0, 0, 0, 0.5); | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%,-50%); | |
text-align:center; | |
margin: 0; | |
padding-bottom: 25px; | |
} | |
.main-container { | |
background: #A3242A; | |
background-attachment: fixed; | |
background-size: cover; | |
position: relative; | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="main-container"> | |
<h1>Openstack<br>❤<br>Cloud App Developers</h1> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment