A Pen by Ignacio Correia on CodePen.
Last active
November 4, 2017 11:40
-
-
Save Igcorreia/6b8abc5b5d4872731bdc2c1640eb36dd to your computer and use it in GitHub Desktop.
Minimum Bootstrap 4 Coming Soon Page Centered
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
<div class="container"> | |
<div class="row vh-100 align-items-center"> | |
<div class="col text-center"> | |
<div class="content"> | |
<h1>Something new coming soon.</h1> | |
<a class="btn btn-outline-primary mt-4" href="http://www.unyk.tv" target="_blank">Visit www.unyk.tv</a> | |
</div> | |
</div> | |
</div> | |
</div> |
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
.vh-100{ | |
height: 100vh; | |
min-height:100vh; | |
} |
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
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment