Advertisement
alexandrefej

(CSS) Botão personalizado simples #1

Oct 31st, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.52 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>botao personalizado #1</title>
  4. <style type="text/css">
  5. body {
  6.   background: #eee;
  7.   color: white;
  8.   font-family: sans-serif;
  9. }
  10.  
  11. input[type="submit"] {
  12.   background: #3C689C;
  13.   border: 0;
  14.   width: 250px;
  15.   height: 40px;
  16.   border-radius: 3px;
  17.   color: white;
  18.   cursor: pointer;
  19.   transition: background 0.3s ease-in-out;
  20. }
  21. input[type="submit"]:hover {
  22.   background: #DCDCDC;
  23.   color:GRAY;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <center><input type='submit' value='Entrar'/></center>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement