Advertisement
Guest User

Untitled

a guest
May 20th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <style>
  2. input[type=text], select {
  3. width: 100%;
  4. padding: 12px 20px;
  5. margin: 8px 0;
  6. display: inline-block;
  7. border: 1px solid #ccc;
  8. border-radius: 4px;
  9. box-sizing: border-box;
  10. }
  11.  
  12. input[type=submit] {
  13. width: 100%;
  14. background-color: #4CAF50;
  15. color: white;
  16. padding: 14px 20px;
  17. margin: 8px 0;
  18. border: none;
  19. border-radius: 4px;
  20. cursor: pointer;
  21. }
  22.  
  23. input[type=submit]:hover {
  24. background-color: #45a049;
  25. }
  26.  
  27. div {
  28. border-radius: 5px;
  29. background-color: #f2f2f2;
  30. padding: 20px;
  31. }
  32. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement