-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from imarc/nav-variants
Nav variants
- Loading branch information
Showing
9 changed files
with
641 additions
and
3,209 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Progress Component - Imarc</title> | ||
<meta name="description" content="The Imarc Boilerplate is a streamlined starting point for building websites." /> | ||
<meta name="web_author" content="Imarc, A Digital Agency | Boston + Silicon Valley | more info at imarc.com" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<link rel="stylesheet" type="text/css" href="../css/styles.css" media="all" /> | ||
</head> | ||
<body> | ||
<div class="torso"> | ||
<main> | ||
<section class="intro"> | ||
<div class="container"> | ||
<h1>Breadcrumbs</h1> | ||
<p> | ||
Below is an example of breadcrumbs. | ||
</p> | ||
</div> | ||
</section> | ||
<section> | ||
<div class="container"> | ||
|
||
|
||
<!-- Begin component --> | ||
|
||
<nav class="breadcrumbs"> | ||
<ul> | ||
<li><a href="">Nav Item 1</a></li> | ||
<li class="active"><a href="">Nav Item 2</a></li> | ||
<li><a href="">Nav Item 3</a></li> | ||
</ul> | ||
</nav> | ||
|
||
</div> | ||
</section> | ||
</main> | ||
</div> | ||
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Progress Component - Imarc</title> | ||
<meta name="description" content="The Imarc Boilerplate is a streamlined starting point for building websites." /> | ||
<meta name="web_author" content="Imarc, A Digital Agency | Boston + Silicon Valley | more info at imarc.com" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<link rel="stylesheet" type="text/css" href="../css/styles.css" media="all" /> | ||
</head> | ||
<body> | ||
<div class="torso"> | ||
<main> | ||
<section class="intro"> | ||
<div class="container"> | ||
<h1>Progress Breadcrumb</h1> | ||
<p> | ||
Below is an example of a progress breadcrumb. | ||
</p> | ||
</div> | ||
</section> | ||
<section> | ||
<div class="container"> | ||
|
||
|
||
<!-- Begin component --> | ||
|
||
<nav class="progress"> | ||
<ul> | ||
<li class="complete"><a href="">Nav Item 1</a></li> | ||
<li class="complete"><a href="">Nav Item 2</a></li> | ||
<li class="active"><a href="">Nav Item 3</a></li> | ||
<li><a href="">Nav Item 4</a></li> | ||
<li><a href="">Nav Item 5</a></li> | ||
<li><a href="">Nav Item 6</a></li> | ||
</ul> | ||
</nav> | ||
|
||
</div> | ||
</section> | ||
</main> | ||
</div> | ||
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |
This file contains 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
Oops, something went wrong.