Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.66 KB | None | 0 0
  1. body{
  2.     margin:0;
  3.     background-color:white;
  4. }
  5. .nav{
  6.     width:100%;
  7.     background-color:white;
  8.     overflow:auto;
  9. }
  10. ul{
  11.     padding:0;
  12.     margin:0 0 0 300px;
  13.     list-style: none;
  14.    
  15. }
  16. li{
  17.     float:left;
  18. }
  19. .logo img{
  20.     position: absolute;
  21.     margin-top:10px;
  22.     margin-left:10px;
  23.    
  24. }
  25. nav a{
  26.     width:130px;
  27.     display:block;
  28.     padding:30px 0px 0px 0px;
  29.    
  30.     color:gray;
  31.     text-decoration: none;
  32.     font-family: sans-serif;
  33.     font-size: 18px;
  34.     text-align: center;
  35.    
  36.    
  37. }
  38. nav li{
  39.     position:relative;
  40. }
  41.  
  42. .active .line:after{
  43.     width:120px;
  44.     height:3px;
  45.    
  46.     background-color:orange;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement