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.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ assignment_bootstrap_sprint
Pick yourself up!

[A Bootstrap, HTM5 and SASS project from the Viking Code School](http://www.vikingcodeschool.com)

Steven Zarrella
88 changes: 88 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Bootstrap 101 Template</title>

<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="/styles.css">

</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-1">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Project name</a>
</div>

<div id="navbar-collapse-1" class="navbar-collapse collapse">
<form class="navbar-form navbar-right">
<div class="form-group">
<input type="text" class="form-control" placeholder="Email">
</div>
<div class="form-group">
<input type="password" class="form-control" placeholder="Password">
</div>
<button type="submit" class="btn btn-success btn-m">Sign in</button>
</form>

</div>
</div>
</nav>

<section class="jumbotron">
<div class="container">
<h1>Hello, world!</h1>
<p>Vice gentrify man braid franzen, taiyaki portland food truck selfies chillwave cred trust fund. Portland migas man braid small batch. Skateboard cornhole etsy, sriracha tote bag taxidermy crucifix edison bulb shabby chic blue bottle next level truffaut vape.</p>
<p>
<a class="btn btn-primary btn-lg" href="#">Learn more &#187;</a>
</p>
</div><!--/jumbotron container-->
</section><!--/jumbotron-->

<section class="container">
<div class="row">
<article class="col-md-4">
<h2>Heading</h2>
<p>Yuccie intelligentsia mustache ennui, cronut pork belly knausgaard cred blue bottle ugh coloring book godard palo santo. Farm-to-table taxidermy wolf leggings, adaptogen fashion axe lomo green juice franzen.</p>
<p>
<a class="btn btn-default" href="#">View details &#187;</a>
</p>
</article>
<article class="col-md-4">
<h2>Heading</h2>
<p>Yuccie intelligentsia mustache ennui, cronut pork belly knausgaard cred blue bottle ugh coloring book godard palo santo. Farm-to-table taxidermy wolf leggings, adaptogen fashion axe lomo green juice franzen.</p>
<p>
<a class="btn btn-default" href="#">View details &#187;</a>
</p>
</article>
<article class="col-md-4">
<h2>Heading</h2>
<p>Yuccie intelligentsia mustache ennui, cronut pork belly knausgaard cred blue bottle ugh coloring book godard palo santo. Farm-to-table taxidermy wolf leggings, adaptogen fashion axe lomo green juice franzen.</p>
<p>
<a class="btn btn-default" href="#">View details &#187;</a>
</p>
</article>
</div>
</section>

<footer class="container">
<hr>
<p>&#169; 2017 Company, Inc.</p>
</footer>

<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions styles.css

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

7 changes: 7 additions & 0 deletions styles.css.map

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

4 changes: 4 additions & 0 deletions styles.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
body {
padding-top: 50px;
padding-bottom: 20px;
}