Guest User

Untitled

a guest
Jun 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. * {
  2. box-sizing: border-box;
  3. }
  4.  
  5. body {
  6. background-color: #eaeaea;
  7. margin: 0;
  8. }
  9.  
  10. .container{
  11. max-width: 1000px;
  12. margin: 0 auto;
  13.  
  14.  
  15. }
  16. nav{
  17. background: #fff;
  18. border-radius: 5px;
  19. margin: 5px;
  20.  
  21.  
  22. }
  23. nav ul{
  24. margin: 0;
  25. padding: 0;
  26. list-style: none;
  27. position: relative;
  28. text-align: left;
  29. }
  30. nav li{
  31. display: inline-block;
  32.  
  33. }
  34. nav li:hover {
  35. background: #333;
  36. }
  37.  
  38. nav a{
  39. color: #444;
  40. text-decoration: none;
  41. display: block;
  42. padding: .75em 1.75em;
  43. }
  44. nav a:hover{
  45. color: #fff;
  46. }
  47. .menu-sub{
  48. position: absolute;
  49. }
Add Comment
Please, Sign In to add comment