Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>JS Bin</title>
  </head>
  <body>
    <nav>
      <div class="nav-wrapper">
        <ul>
          <li><a href="">Home</a></li>
          <li><a href="">Projekte</a></li>
        </ul>
      </div>
    </nav>
  </body>
</html>
 
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color:white;
  font-family: 'Open Sans', sans-serif;
}
.nav-wrapper {
  margin: 0 auto;
  margin-top: 50px;
  width: 60%;
  padding-top: 5px;
  padding-bottom: 5px;
  color:#787878;
  box-shadow: 2px 2px 3px #BDBDBD;
  border-radius: 5px;
  background: #f9f9f9; /* Old browsers */
  background: -moz-linear-gradient(top,  #f9f9f9 0%, #ededed 100%); /* FF3.6+      */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #f9f9f9 0%,#ededed 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #f9f9f9 0%,#ededed 100%); /* Opera   11.10+ */
  background: -ms-linear-gradient(top,  #f9f9f9 0%,#ededed 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #f9f9f9 0%,#ededed 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
}
ul {
  list-style: none;
}
li {
  display: inline;
  padding: 0 15px;
}
li:hover {
  box-shadow: 2px 2px 3px #BDBDBD inset, -2px -2px 3px #BDBDBD inset;
}
a {
  text-decoration: none;
  color:#787878;
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers