updated the css on the form.html page

pull/73/head
Maria-Aidarus 2023-11-22 22:57:09 +03:00
rodzic 312b2e686a
commit 4e1809280c
1 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -27,6 +27,7 @@
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
max-width: 400px; max-width: 400px;
width: 100%; width: 100%;
text-align: left; /* Left-align form elements */
} }
label { label {
@ -62,12 +63,12 @@
#result { #result {
margin-top: 20px; margin-top: 20px;
padding: 10px; padding: 10px;
background-color: #fff; background-color: transparent; /* Remove background color */
border: 1px solid #ccc; border: none; /* Remove border */
border-radius: 3px;
max-width: 400px; max-width: 400px;
width: 100%; width: 100%;
white-space: pre-wrap; white-space: pre-wrap;
text-align: left; /* Left-align text in result div */
} }
</style> </style>
</head> </head>