Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <header class="siteHeader">
  2. <nav>
  3. <select id="change_font_size">
  4. <option value="200">200</option>
  5. <option value="225">225</option>
  6. <option value="250">250</option>
  7. <option value="275">275</option>
  8. <option value="300">300</option>
  9. </select>
  10. <ul>
  11. <li><a href="menu.html">MENU</a></li>
  12. <li><a href="burritos.html">BURRITOS</a></li>
  13. <li><a href="index.html"><img class="header-image" src="assets/Headerlogo1.png"></a></li>
  14. <li><a href="contact.html">CONTACT</a></li>
  15. <li><a href="about.html">ABOUT</a></li>
  16. </ul>
  17. </nav>
  18. </header>
  19.  
  20. .siteHeader {
  21. background-color: #1c1c1b;
  22. font-family: 'Yanone Kaffeesatz';
  23. font-size: 250%;
  24. height: 100px;
  25. width: 100%;
  26. border-bottom: solid;
  27. border-bottom-color: #009641;
  28. border-bottom-width: 5px;
  29. position: fixed;
  30. line-height: 50px;
  31. z-index: 1000;
  32. overflow: hidden;
  33. transition: all 0.8s ease;
  34. }
  35.  
  36. $("#change_font_size").change(function() {
  37. var font_size = $(this).val();
  38. $('.siteHeader > *').css("font-size", font_size + "%");
  39. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement