Guest User

Untitled

a guest
Feb 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <nav>
  2. <a href="#">INICIO</a>
  3. <a href="#">SERVICIOS</a>
  4. <a href="#">PROYECTOS</a>
  5. <a href="#">CONTACTOS</a>
  6.  
  7. </nav>
  8. </div>
  9.  
  10. <section class="contenido weapper">
  11.  
  12. body{
  13. background: #fffffa;
  14.  
  15.  
  16. }
  17.  
  18. header{
  19. width: 100%;
  20. overflow: :hidden;
  21. background: #252932;
  22. margin-bottom: 20px;
  23.  
  24.  
  25. }
  26.  
  27. .weapper{
  28. width: 90%;
  29. max-height: 160px;
  30. margin:auto;
  31. overflow:hidden;
  32. }
  33.  
  34. header .logo{
  35. color: #f2f2f2;
  36. font-size: 50px;
  37. line-height: 200px;
  38. float: left;
  39. }
  40.  
  41. header nav{
  42. float: right;
  43. line-height: 200px;
  44. }
  45.  
  46. header nav a{
  47. display: inline-block;
  48. color: #fff;
  49. text-decoration: none;
  50. padding: 10px 20px;
  51. line-height:normal;
  52. font-size: 20px;
  53. font-weight: bold;
  54. -webkit-transition:all 500ms ease;
  55. -o-transition:all 500ms ease;
  56. transition:all 500ms ease;
  57. }
  58.  
  59. header nav a:hover{
  60. background: #f56f3A;
  61. border-radius: 50px;
  62. }
  63.  
  64. }
Add Comment
Please, Sign In to add comment