Created
September 6, 2016 00:00
-
-
Save bSampson0/ce1af9e12a30d4c63982a68083447b2c to your computer and use it in GitHub Desktop.
Cascade Canine Rescue
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
<nav class="navbar navbar-default navbar-fixed-top"> | |
<div class="container-fluid"> | |
<div class="navbar-header"> | |
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> | |
<span class="sr-only">Toggle navigation</span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</button> | |
<a class="navbar-brand" href="#"><span style="color:white;">CCREW</a> | |
</div> | |
<div id="navbar" class="navbar-collapse collapse"> | |
<ul class="nav navbar-nav"> | |
<li><a href="#"><span style="color:white;">Our Mission</span></a></li> | |
<li><a href="#"><span style="color:white;">Dogs for Adoption</a></li> | |
<li><a href="#"><span style="color:white;">Donate</a></li> | |
<li><a href="#"><span style="color:white;">Resources</a></li> | |
</ul> | |
</div><!--/.nav-collapse --> | |
</div><!--/.container-fluid --> | |
</nav> | |
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
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script> | |
<script src="https://npmcdn.com/[email protected]/dist/react.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> |
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
body { | |
font-family: 'Amatic SC', cursive; | |
} | |
.heading { | |
padding-top: 120px; | |
} | |
.navbar { | |
height: 100px; | |
} | |
.navbar-default { | |
background-color: #3c896d; | |
} | |
.navbar-brand { | |
padding-top:40px; | |
font-size: 80px; | |
height:100px; | |
padding-left: 30px; | |
} | |
#navbar li { | |
font-size: 30px; | |
padding-top: 25px; | |
padding-left: 35px; | |
padding-right: 25px; | |
} | |
li :hover { | |
font-size: 35px; | |
} | |
@media (min-width: 768px) and (max-width: 991px) { | |
.navbar-collapse.collapse { | |
display: none !important; | |
} | |
.navbar-collapse.collapse.in { | |
display: block !important; | |
} | |
.navbar-header .collapse, .navbar-toggle { | |
display:block !important; | |
} | |
.navbar-header { | |
float:none; | |
} | |
} | |
@media (min-width: 768px){ | |
.navbar-nav{ | |
margin: 0 auto; | |
display: table; | |
table-layout: fixed; | |
float:none; | |
} | |
} | |
.navbar-toggle { | |
background-color: white; | |
height: 75px; | |
width: 75px; | |
} |
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
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" /> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.1/animate.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment