Guest User

Untitled

a guest
Sep 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. /* Botões */
  2. input[type="button"],
  3. input[type="submit"],
  4. input[type="reset"],
  5. button,
  6. .button {
  7. background: #222222;
  8. border: none;
  9. color: white;
  10. cursor: pointer;
  11. font-size: 12px;
  12. padding: 3px 6px;
  13. margin: 2px 3px;
  14. border-radius: 5px;
  15. box-shadow: inset 0 12px 2px rgba(255,255,255,0.2), 0 1px 3px #000000;
  16. text-shadow: 0 1px 1px #000000;
  17. -o-transition: all 1s;
  18. -moz-transition: all 1s;
  19. -webkit-transition: all 1s;
  20. transition: all 1s;
  21. }
  22. input[type="button"]:hover,
  23. input[type="submit"]:hover,
  24. input[type="reset"]:hover,
  25. button:hover,
  26. .button:hover {
  27. background: #333333;
  28. }
  29. input[type="button"]:active,
  30. input[type="submit"]:active,
  31. input[type="reset"]:active,
  32. button:active,
  33. .button:active {
  34. background: #000000;
  35. }
  36.  
  37. /* Imagem que troca ao passar o mouse */
  38. .imgToggle {
  39. display: inline-block;
  40. width: 300px; /* Largura da imagem */
  41. height: 300px; /* Altura da imagem */
  42. background-repeat: no-repeat;
  43. background-position: center;
  44. background-image: url('caminho/da/imagem.jpg'); /* Primeira imagem */
  45. }
  46. .imgToggle:hover {
  47. background-image: url('caminho/da/imagem2.jpg'); /* Primeira imagem */
  48. }
Add Comment
Please, Sign In to add comment