Advertisement
Guest User

Forms

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