Advertisement
Guest User

Untitled

a guest
Mar 1st, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.45 KB | None | 0 0
  1. body {
  2.   margin: 0;
  3.   padding: 0;
  4.   background: #ccc;
  5. }
  6.  
  7. .nav ul {
  8.   list-style: none;
  9.   background-color: #444;
  10.   text-align: center;
  11.   padding: 0;
  12.   margin: 0;
  13. }
  14. .nav li {
  15.   font-family: 'Oswald', sans-serif;
  16.   font-size: 1.2em;
  17.   line-height: 40px;
  18.   height: 40px;
  19.   border-bottom: 1px solid #888;
  20. }
  21.  
  22. .nav a {
  23.   text-decoration: none;
  24.   color: #fff;
  25.   display: block;
  26.   transition: .3s background-color;
  27. }
  28.  
  29. .nav a:hover {
  30.   background-color: #005f5f;
  31. }
  32.  
  33. .nav a.active {
  34.   background-color: #fff;
  35.   color: #444;
  36.   cursor: default;
  37. }
  38.  
  39. @media screen and (min-width: 600px) {
  40.   .nav li {
  41.     width: 120px;
  42.     border-bottom: none;
  43.     height: 50px;
  44.     line-height: 50px;
  45.     font-size: 1.4em;
  46.   }
  47.  
  48.   /* Option 1 - Display Inline */
  49.   .nav li {
  50.     display: inline-block;
  51.     margin-right: -4px;
  52.   }
  53.  
  54.   /* Options 2 - Float
  55.   .nav li {
  56.     float: left;
  57.   }
  58.   .nav ul {
  59.     overflow: auto;
  60.     width: 600px;
  61.     margin: 0 auto;
  62.   }
  63.   .nav {
  64.     background-color: #444;
  65.   }
  66.   */
  67. }
  68.  
  69.  
  70.  
  71. html ====
  72.  
  73. <body class="news">
  74.   <header>
  75.     <div class="nav">
  76.       <ul>
  77.         <li class="home"><a href="#">Home</a></li>
  78.         <li class="tutorials"><a class="active" href="#">Tutorials</a></li>
  79.         <li class="about"><a href="#">About</a></li>
  80.         <li class="news"><a href="#">Newsletter</a></li>
  81.         <li class="contact"><a href="#">Contact</a></li>
  82.       </ul>
  83.     </div>
  84.   </header>
  85. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement