upload.css 840 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. html, body {
  2. width: 100vw;
  3. height: 100vh;
  4. margin: 0;
  5. background-color: black;
  6. font-size: 20px;
  7. color: orange;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. flex-direction: column;
  12. }
  13. .form {
  14. padding: 10px;
  15. background: #232323;
  16. border-radius: 10px;
  17. color: orange;
  18. border: 2px solid black;
  19. display: flex;
  20. flex-direction: column;
  21. gap: 10px;
  22. width: 600px;
  23. }
  24. input {
  25. background-color: black;
  26. color: orange;
  27. font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  28. border: none;
  29. border-radius: 20px;
  30. font-size: 20px;
  31. }
  32. textarea {
  33. background-color: purple;
  34. color: white;
  35. border: none;
  36. text-decoration: dotted;
  37. font-size: 17px;
  38. font-family: cursive;
  39. }
  40. .disabled {
  41. display: none;
  42. }