12345678910111213141516171819202122232425 |
- body {
- font-family: 'Courier New', Courier, monospace;
- }
- #msgField {
- background-color: rgba(16, 16, 65, 0.979);
- width: 90%;
- min-height: 200px;
- height: 500px;
- border: 10px double purple;
- margin-bottom: 10px;
- padding: 5px;
- color: white;
- overflow: auto;
- }
- #formContainer {
- width: fit-content;
- text-align: center;
- }
- input, textarea {
- width: 100%;
- margin-bottom: 5px;
- }
|