Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. .forma {
  2. display: block;
  3. margin: auto;
  4. width: 200px;
  5.  
  6.  
  7. }
  8. button, input {
  9. border: 1px dashed black;
  10. color: red;
  11. border-radius: 3px;
  12. transition: all .5s;
  13. background-color: black;
  14.  
  15. }
  16. button:hover {
  17. color:blue;
  18. }
  19. h1{
  20. text-align: center;
  21. }
  22. input:focus{
  23. border: 1px solid black;
  24. background-color: blue;
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement