Created
July 6, 2019 17:42
-
-
Save burubur/319d4680ef12766c1cfd08b531ad0243 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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