Guest User

Untitled

a guest
Mar 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. /*FOOTER */
  2.  
  3. .footitem{
  4. padding:10px;
  5. text-align: center;
  6. }
  7.  
  8.  
  9. .icone_reseaux{
  10. padding:10px;
  11. display:inline;
  12. }
  13.  
  14. .icone_reseaux > a > img {
  15. /* La transition s'applique à la fois sur la largeur et la hauteur, avec une durée d'une seconde. */
  16. -webkit-transition: all 0.5s ease; /* Safari et Chrome */
  17. -moz-transition: all 0.5s ease; /* Firefox */
  18. -ms-transition: all 0.5s ease; /* Internet Explorer 9 */
  19. -o-transition: all 0.5s ease; /* Opera */
  20. transition: all 0.5s ease;
  21. }
  22.  
  23.  
  24. .icone_reseaux > a > img:hover {
  25. /* L'image est grossie de 25% */
  26. -webkit-transform:scale(1.20); /* Safari et Chrome */
  27. -moz-transform:scale(1.20); /* Firefox */
  28. -ms-transform:scale(1.20); /* Internet Explorer 9 */
  29. -o-transform:scale(1.20); /* Opera */
  30. transform:scale(1.20);
  31. }
  32.  
  33. footer .row {
  34. color: white;
  35. margin-top: 15px;
  36. }
  37.  
  38. footer .container-fluid{
  39. background-color:grey;
  40. }
  41.  
  42. footer .row a{
  43. color: white;
  44. }
Add Comment
Please, Sign In to add comment