JSFiddle - React, Tailwind, and code Playground

CSS Arrow Nav

by Jennifer Perrin

HTML

<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<div class="wrapper"><!-- Wrapper begin -->

  <div id="header"><!-- Header begin -->
    <div class="container"><!-- Header Container begin -->
      <nav>
        <ul class="primary-nav">
          <li><a href="#">Forty-Nine</a></li>
          <li><a href="#">Three Times</a></li>
          <li><a href="#">About Us</a></li>
          <li><a class="selected" href="#">Home</a></li>
        </ul>
        <br class="clear">
      </nav>
    </div><!-- Header Container end -->
  </div><!-- Header end -->



  <div id="content"><!-- Content begin -->
    <div class="container"><!-- Content Container begin -->
        <div class="left"><!-- Container / Left begin -->
          <ul class="secondary-nav box">
            <li><a href="#">Mission Statement</a></li>
            <li><a href="#">Staff and Board</a></li>
            <li><a href="#">Membership Program</a></li>
            <li><a href="#">Services</a></li>
            <li><a href="#">Industry Sectors</a></li>
          </ul>
          <div class="box02">
              <h2>Discover more for Business Expansion.</h2>
          </div>
        </div><!-- Container / Left end -->
      
        <div class="right"><!-- Container / Right begin -->
        <article>
          <div class="module blue">
            <h2>What is Lorem Ipsum? <a href="#">Read More</a></h2>
            <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem...

CSS

@media screen {
@font-face {
  font-family: 'Yanone Kaffeesatz';
  font-style: normal;
  font-weight: 300;
  src: local('Yanone Kaffeesatz Light'), local('YanoneKaffeesatz-Light'), url('http://themes.googleusercontent.com/static/fonts/yanonekaffeesatz/v2/We_iSDqttE3etzfdfhuPRVMR8FhBa8rkfAKaPBwAU3s.woff') format('woff');
}
}

* {margin:0;padding:0;}
html, body {height:100%;background:url('http://dl.dropbox.com/u/1621719/demo/JSFiddle/whitey.png');background-repeat:repeat;font:16px/1.4 "myriad-pro-1","myriad-pro-2", "Lucida Grande", Sans-Serif;}
.clear {clear:both;height:0;line-height: 0px;}
.wrapper {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
  width:940px;
  margin:0 auto;
  background:#fff;
  box-shadow:0 0 15px rgba(100,100,100,0.4)
}

#header {
  position:relative;
  top:10px;
  background: rgb(30,87,153);
  background: -moz-linear-gradient(top, rgba(30,87,153,1) 0%, rgba(125,185,232,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1)));
  background: -webkit-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(125,185,232,1) 100%);
  background: -o-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(125,185,232,1) 100%);
  background: -ms-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(125,185,232,1) 100%);
  background: linear-gradient(top, rgba(30,87,153,1) 0%,rgba(125,185,232,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 );
  height:40px;
  border-top:1px solid #1e5799;
  border-bottom:1px solid #6088B6;
}

#header .container {width:940px;margin:0 auto;}

#content {width:940px;margin:0 auto;background:#fff;}
#content .container {width:940px;margin:0 auto;padding:40px 0 0 0;}

footer {position:absolute;left:0;width:100%;background:#333;}
.footer, .push {
    height: 142px; /* .push must be...