Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Binary file added Jumbotron Template for Bootstrap 3.3 Mockup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
assignment_bootstrap_sprint
===========================

Pick yourself up!
by Brennan Fulmer

https://brennanfulmer.github.io/assignment_bootstrap_sprint/

link to the mockup:
http://getbootstrap.com/docs/3.3/examples/jumbotron/

(note that I used bootstrap 4.0 for this project so I wasn't able to exactly replicate the 3.3 version template)

[A Bootstrap, HTM5 and SASS project from the Viking Code School](http://www.vikingcodeschool.com)
7 changes: 7 additions & 0 deletions assets/css/bootstrap.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/css/bootstrap.min.css.map

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions assets/css/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

body {
padding: {
top: 50px;
bottom: 20px;
}
}


5 changes: 5 additions & 0 deletions assets/css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions assets/css/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions assets/js/bootstrap.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/js/bootstrap.min.js.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions assets/js/jquery-3.2.1.slim.min.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions assets/js/popper.min.js

Large diffs are not rendered by default.

141 changes: 141 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Jumbotron Template</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>

<body>

<!-- navbar -->
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">

<div class="container">

<h3 class="navbar-brand text-secondary mt-1">
Project Name
</h3>

<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>

<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<div class="mr-auto">
</div>

<form class="form-inline">
<input class="form-control" type="email" placeholder="Email">
<input class="form-control ml-1 mr-1" type="password" placeholder="Password">
<button type="button" class="btn btn-success">Sign In</button>
</form>

</div>

</div>

</nav>
<!-- navbar -->

<!-- jumbotron -->
<main class="jumbotron">

<div class="container">
<h1 class="display-4 font-weight-bold">
Hello, world!
</h1>

<p class="lead">
This is a template for a simple marketing or informational website.
It includes a large callout called a jumbotron and three supporting
pieces of content. Use it as a starting point to create something
more unique.
</p>

<button type="button" class="btn btn-primary">Learn more »</button>
</div>

</main>
<!-- jumbotron -->

<!-- bottom articles -->
<div class="container">
<div class="row">
<!-- article 1 -->
<article class="col-md-4">

<h2>
Heading
</h2>

<p>
Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus
ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa
justo sit amet risus. Etiam porta sem malesuada magna mollis euismod.
Donec sed odio dui.
</p>

<button type="button" class="btn btn-light border border-secondary mb-3">View Details »</button>

</article>
<!-- article 1 -->

<!-- article 2 -->
<article class="col-md-4">

<h2>
Heading
</h2>

<p>
Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus
ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa
justo sit amet risus. Etiam porta sem malesuada magna mollis euismod.
Donec sed odio dui.
</p>

<button type="button" class="btn btn-light border border-secondary mb-3">View Details »</button>

</article>
<!-- article 2 -->

<!-- article 3 -->
<article class="col-md-4">

<h2>
Heading
</h2>

<p>
Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus
ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa
justo sit amet risus. Etiam porta sem malesuada magna mollis euismod.
Donec sed odio dui.
</p>

<button type="button" class="btn btn-light border border-secondary mb-3">View Details »</button>

</article>
<!-- article 3 -->

</div>

<hr>

<footer>
<p>© 2016 Company, Inc.</p>
</footer>

</div>
<!-- bottom articles -->

</body>

<script src="assets/js/jquery-3.2.1.slim.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>

</html>