Skip to content

Instantly share code, notes, and snippets.

@burubur
Created July 6, 2019 17:42
Show Gist options
  • Select an option

  • Save burubur/319d4680ef12766c1cfd08b531ad0243 to your computer and use it in GitHub Desktop.

Select an option

Save burubur/319d4680ef12766c1cfd08b531ad0243 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="favicon.ico">
<title>NginX</title>
<style>
body{
margin: 0;
}
.content {
min-height: 100vh;
background-image: linear-gradient(15deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
}
.label {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: 'Operator Mono', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 2em;
text-align: center;
}
</style>
</head>
<body>
<div class="content">
<div class="label">
Wellcome to NginX
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment