1
Fork 0

Make everything fit on 1 page

This commit is contained in:
Jake Howard 2019-02-04 21:51:20 +00:00
parent d211c0a2aa
commit 287a5323da
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 5 additions and 3 deletions

View file

@ -7,7 +7,7 @@
{{ partial "style.html" "scss/index.scss" }} {{ partial "style.html" "scss/index.scss" }}
</head> </head>
<body> <body>
<div class="jumbotron mb-0 jumbotron-fluid text-center vertical-center hero-jumbotron"> <div class="jumbotron mb-0 jumbotron-fluid text-center vertical-center">
<div class="container"> <div class="container">
<h1 class="display-1">{{ .Site.Title }}</h1> <h1 class="display-1">{{ .Site.Title }}</h1>
<p class="lead">You should give me money. Here's how:</p> <p class="lead">You should give me money. Here's how:</p>

View file

@ -5,6 +5,8 @@
align-items: center; align-items: center;
} }
.hero-jumbotron { @include media-breakpoint-up(lg) {
height: 100vh; .jumbotron {
height: 50vh;
}
} }