Advertisement
teslariu

form.css

Jul 12th, 2023 (edited)
1,328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.65 KB | None | 0 0
  1. form {
  2.     margin: 0 auto;
  3.     width: 400px;
  4.     padding: 1em;
  5.     border: 1px solid #ccc;
  6.     border-radius: 1em;
  7. }
  8.  
  9. ul {
  10.     list-style: none;
  11.     padding: 0;
  12.     margin: 0;
  13. }
  14.  
  15. form li + li {
  16.     margin-top: 1em;
  17. }
  18.  
  19. label {
  20.     display: inline-block;
  21.     width: 90px;
  22.     text-align: right;
  23. }
  24.  
  25. input, textarea {
  26.     font: 1em sans-serif;
  27.     width: 300px;
  28.     box-sizing: border-box;
  29.     border: 1px solid #999;
  30. }
  31.  
  32. input:focus,
  33. textarea:focus{
  34.     border-color: #000;
  35. }
  36.  
  37. textarea {
  38.     vertical-align: top;
  39.     height: 5em;
  40.     resize: none;
  41. }
  42.  
  43. .button {
  44.     padding-left: 90px;
  45. }
  46.  
  47. button {
  48.     margin-left: 2em;
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement