Last active
March 22, 2016 22:54
-
-
Save alexanderkustov/0d7f91813934e81ed392 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> | |
| <head> | |
| <title>Offline for Maintenance</title> | |
| <link rel="stylesheet" type="text/css" href="assets/css/style.css"> | |
| </head> | |
| <body> | |
| <div id="main"> | |
| <img id="animated-logo" src="assets/img/codebar-girl.gif" height="200"> | |
| <div id="message"> | |
| <h1> codebar.io is undergoing maintenance right now. <br> Please check back later. </h1> | |
| <h2> In the mean time why don't you <a href="https://codebar-slack.herokuapp.com/">join us on Slack.</a> </h2> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
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
| #main { | |
| text-align: center; | |
| width: 80%; | |
| min-width: 680px; | |
| margin: 0 auto; | |
| } | |
| #message { | |
| background-color: #f5f6f7; | |
| padding: 80px 0; | |
| border-radius: 4px; | |
| margin-top: -100px; | |
| } | |
| #animated-logo { | |
| border-radius: 50%; | |
| border: 2px solid #f5f6f7; | |
| } | |
| body { | |
| font-family: Helvetica, arial, sans-serif; | |
| font-size: 14px; | |
| line-height: 1.6; | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| background-color: white; | |
| padding: 30px; | |
| } | |
| h1 { | |
| color: #652f93; | |
| font-size: 2em; | |
| } | |
| a { | |
| color: #652f93; | |
| } | |
| a:visited, | |
| a:link, | |
| a:active { | |
| text-decoration: none; | |
| } | |
| a:hover { | |
| text-decoration: underline; | |
| } | |
| h1,h2,h3,h4,h5,h6 { | |
| margin: 20px 0 10px; | |
| padding: 0; | |
| font-weight: bold; | |
| -webkit-font-smoothing: antialiased; | |
| cursor: text; | |
| position: relative; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment