editProfile.css 711 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. html, body {
  2. background-color: black;
  3. color: orange;
  4. font-family: Arial, Helvetica, sans-serif;
  5. font-size: 20px;
  6. margin: 0;
  7. width: 100vw;
  8. height: 100vh;
  9. }
  10. body {
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. }
  15. .form {
  16. background-color: #2a2a2a;
  17. padding: 10px;
  18. border-radius: 10px;
  19. display: flex;
  20. flex-direction: column;
  21. gap: 10px;
  22. }
  23. input {
  24. background-color: black;
  25. color: orange;
  26. font-family: cursive;
  27. border-radius: 20px;
  28. border: none;
  29. padding: 5px;
  30. }
  31. textarea {
  32. background-color: black;
  33. color: orange;
  34. font-family: cursive;
  35. border-radius: 20px;
  36. border: none;
  37. padding: 5px;
  38. }