Advertisement
Guest User

Untitled

a guest
May 31st, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. @import url(ссыль на шрифт);
  2.  
  3. *, *:before, *:after{
  4. -webkit-box-sizing: border-box;
  5. -moz-box-sizing: border-box;
  6. box-sizing: border-box;
  7. padding: 0;
  8. margin: 0;
  9. font-family: 'Lato', sans-serif;
  10. }
  11.  
  12. /*| Navigation |*/
  13.  
  14. nav{
  15. position: fixed;
  16. top: 0;
  17. left: 0;
  18. width: 100%;
  19. background: #fff;
  20. box-shadow: 0 3px 10px -2px rgba(0,0,0,.1);
  21. border: 1px solid rgba(0,0,0,.1);
  22. }
  23. nav ul{
  24. list-style: none;
  25. position: relative;
  26. float: right;
  27. margin-right: 100px;
  28. display: inline-table;
  29. }
  30. nav ul li{
  31. float: left;
  32. -webkit-transition: all .2s ease-in-out;
  33. -moz-transition: all .2s ease-in-out;
  34. transition: all .2s ease-in-out;
  35. }
  36.  
  37. nav ul li:hover{background: rgba(0,0,0,.15);}
  38. nav ul li:hover > ul{display: block;}
  39. nav ul li{
  40. float: left;
  41. -webkit-transition: all .2s ease-in-out;
  42. -moz-transition: all .2s ease-in-out;
  43. transition: all .2s ease-in-out;
  44. }
  45. nav ul li a{
  46. display: block;
  47. padding: 30px 20px;
  48. color: #222;
  49. font-size: .9em;
  50. letter-spacing: 1px;
  51. text-decoration: none;
  52. text-transform: uppercase;
  53. }
  54. nav ul ul{
  55. display: none;
  56. background: #fff;
  57. position: absolute;
  58. top: 100%;
  59. box-shadow: -3px 3px 10px -2px rgba(0,0,0,.1);
  60. border: 1px solid rgba(0,0,0,.1);
  61. }
  62. nav ul ul li{float: none; position: relative;}
  63. nav ul ul li a {
  64. padding: 15px 30px;
  65. border-bottom: 1px solid rgba(0,0,0,.05);
  66. }
  67. nav ul ul ul {
  68. position: absolute;
  69. left: 100%;
  70. top:0;
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement