-Annie-

01.Simple-Nav-Bar(Styles)

Feb 3rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.41 KB | None | 0 0
  1. body {
  2.     font-family: "Lato", sans-serif;
  3. }
  4.  
  5. ul {
  6.     padding: 0;
  7.     height: 40px;
  8.     line-height: 30px;
  9.     background-color: #84b3ad;
  10. }
  11.  
  12. li {
  13.     width: 100px;
  14.     margin: 0 5px;
  15.     padding: 5px 0;
  16.     cursor: pointer;
  17.     color: #ffffff;
  18.     text-align: center;
  19.     display:inline-block
  20. }
  21.  
  22. li:hover {
  23.     background-color: #135e3e;
  24.     padding-right: 5px 0;
  25. }
  26.  
  27. li a {
  28.     text-decoration: none;
  29.     color: rgb(255, 255, 255);
  30. }
Add Comment
Please, Sign In to add comment