Advertisement
Guest User

Untitled

a guest
Oct 24th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5.  
  6. body {
  7. font-family: Arial, Helvetica, sans-serif;
  8. background-color: rgba(63, 63, 63, 1);
  9. }
  10.  
  11. header {
  12. width: 100%;
  13. height: 110px;
  14. background-color: black;
  15. opacity: 0,7;
  16. outline: 5px solid #eab600;
  17. }
  18.  
  19.  
  20. nav {
  21. width: 1100px;
  22. height: 170px;
  23. float: right;
  24. font-size: 35px;
  25.  
  26. }
  27.  
  28. nav ul {
  29. list-style-type: none;
  30. margin-left: 250px;
  31. }
  32.  
  33. nav li {
  34. float: left;
  35. }
  36.  
  37. nav a {
  38. display: block;
  39. color: white;
  40. text-decoration: none;
  41. border: 1px solid #000;
  42. padding: 30px 50px;
  43. background-color: black;
  44. -webkit-border-radius: 15px 15px 15px 15px;
  45. border-radius: 15px 15px 15px 15px;
  46. }
  47.  
  48. nav a:hover {
  49. background-color: lightgrey;
  50. }
  51. nav li:hover ul {
  52. display: block;
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement