Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. /*
  2. compatibility:
  3. ie gte 7 and modern browsers
  4. add <meta name="viewport" content="width=device-width"> for mobile
  5.  
  6. usage examples:
  7. <div class="navicon"><a href="#">Menu</a></div>
  8. <button class="navicon"><i>Menu</i></button>
  9. */
  10. button.navicon::-moz-focus-inner {
  11. border: 0;
  12. padding: 0;
  13. }
  14. button.navicon {
  15. overflow: visible;
  16. -webkit-appearance: none;
  17. -moz-appearance: none;
  18. appearance: none;
  19. }
  20. .navicon {
  21. background-color: transparent;
  22. border: 0;
  23. display: block;
  24. font-size: 100%;
  25. position: relative;
  26. }
  27. .navicon,
  28. .navicon > :first-child {
  29. line-height: 1;
  30. margin: 0;
  31. padding: 0;
  32. }
  33. .navicon > :first-child {
  34. background-color: transparent;
  35. border-color: red;
  36. border-bottom-style: solid;
  37. border-bottom-width: .125em;
  38. border-top-style: double;
  39. border-top-width: .375em;
  40. color: red;
  41. cursor: pointer;
  42. display: block;
  43. font-size: 3em;
  44. height: .125em;
  45. position: absolute;
  46. text-decoration: none;
  47. text-indent: -9999em;
  48. top: 0;
  49. width: .75em;
  50. -moz-box-sizing: content-box;
  51. -webkit-box-sizing: content-box;
  52. box-sizing: content-box;
  53. -moz-transition: all 0.5s ease;
  54. -webikit-transition: all 0.5s ease;
  55. transition: all 0.5s ease;
  56. }
  57. .navicon > :first-child:focus,
  58. .navicon > :first-child:hover {
  59. opacity: .5;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement