style.css 425 B

12345678910111213141516171819202122232425
  1. body {
  2. font-family: 'Courier New', Courier, monospace;
  3. }
  4. #msgField {
  5. background-color: rgba(16, 16, 65, 0.979);
  6. width: 90%;
  7. min-height: 200px;
  8. height: 500px;
  9. border: 10px double purple;
  10. margin-bottom: 10px;
  11. padding: 5px;
  12. color: white;
  13. overflow: auto;
  14. }
  15. #formContainer {
  16. width: fit-content;
  17. text-align: center;
  18. }
  19. input, textarea {
  20. width: 100%;
  21. margin-bottom: 5px;
  22. }