Advertisement
teslariu

formulario.css

Jun 29th, 2022
1,040
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.41 KB | None | 0 0
  1. body {
  2.     background-color: rgb(170, 220, 218);
  3.     text-align: center;
  4. }
  5.  
  6. form {
  7.     margin: auto;
  8.     width: 50%;
  9.     padding: 2em;
  10.     border: 1px solid;
  11.     border-radius: 1em;
  12.     background-color: rgb(107, 181, 158) ;
  13. }
  14.  
  15. div{
  16.     margin: 1em;
  17.     text-align: auto;
  18. }
  19.  
  20. button{
  21.     margin-left: 1em;
  22.     background-color: cornflowerblue;
  23. }
  24.  
  25. textarea{
  26.     width: 100%;
  27.     height: 100px;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement