updated the css on the form.html page

pull/73/head
Maria-Aidarus 2023-11-22 23:06:00 +03:00
rodzic b27909a84b
commit 3e2020af2c
1 zmienionych plików z 9 dodań i 2 usunięć

Wyświetl plik

@ -17,7 +17,7 @@
}
h1 {
color: #333;
color: #000;
}
form {
@ -46,6 +46,11 @@
box-sizing: border-box;
}
.button-container {
display: flex;
justify-content: center;
}
input[type="submit"] {
background-color: #3fbfff;
color: #fff;
@ -83,7 +88,9 @@
<label for="apiKey">API Key:</label>
<input type="text" id="apiKey" name="apiKey" value="your-api-key">
<input type="submit" value="Invoke Function">
<div class="button-container">
<input type="submit" value="Invoke Function">
</div>
</form>
<div id="result"></div>