Guest User

Untitled

a guest
Nov 22nd, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <ul>
  2. <a href="index.php"><li>INICIO</li></a>
  3. <a href="deportes.html"><li>DEPORTES</li></a>
  4. <a href="edicion.html"><li>VIDEOS</li></a>
  5. <a href="noticia.php"><li>VIRALES</li></a>
  6. <a href="contacto.html"><li>CONTACTO</li></a>
  7. </ul>
  8.  
  9. header ul li{
  10. font-family: 'Source Sans Pro', sans-serif;
  11. font-size: 14px;
  12. list-style: none;
  13. color: #000;
  14. padding: 15px 20px;
  15. transition: 0.2s;
  16. position: relative;
  17. }
  18.  
  19. header ul li:before{
  20. content: "";
  21. position: absolute;
  22. bottom: 0;
  23. left: 0;
  24. width: 100%;
  25. height: 100%;
  26. border-bottom:3px solid #83354F;
  27. opacity: 0;
  28. }
  29.  
  30. header ul li:hover:before{
  31. cursor: pointer;
  32. opacity: 1;
  33. }
Add Comment
Please, Sign In to add comment