2023-06-15 18:19:23 +01:00
|
|
|
<script>
|
|
|
|
import Island from "$lib/islands/island.svelte";
|
|
|
|
export let variables = {
|
|
|
|
title: "Uninitialised",
|
|
|
|
action: "/",
|
|
|
|
placeholder: "Uninitialised",
|
|
|
|
queryName: "uninitiailsed"
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
2023-06-15 21:32:14 +01:00
|
|
|
<Island {variables}>
|
2023-06-15 18:19:23 +01:00
|
|
|
<form action={variables.action}>
|
|
|
|
<input class="form-input" type="text" id="input-headcode" name={variables.queryName} placeholder={variables.placeholder}>
|
|
|
|
<br>
|
2023-06-16 11:59:15 +01:00
|
|
|
<button type="submit">Submit</button>
|
2023-06-15 18:19:23 +01:00
|
|
|
</form>
|
2023-06-15 21:32:14 +01:00
|
|
|
</Island>
|
2023-06-15 18:19:23 +01:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.form-input {
|
|
|
|
width: 75%;
|
2023-06-15 21:32:14 +01:00
|
|
|
height: 32px;
|
2023-06-15 18:19:23 +01:00
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
border-radius: 50px;
|
|
|
|
border: none;
|
|
|
|
text-align: center;
|
|
|
|
font-family: urwgothic, 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
|
2023-06-15 21:32:14 +01:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 15px;
|
2023-06-15 18:19:23 +01:00
|
|
|
}
|
2023-06-16 11:59:15 +01:00
|
|
|
button {
|
2023-06-15 18:19:23 +01:00
|
|
|
width: 50%;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
margin-top: 5px;
|
|
|
|
border: none;
|
|
|
|
border-radius: 20px;
|
|
|
|
padding: 5px;
|
|
|
|
font-family: urwgothic, 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 400;
|
|
|
|
background-color: var(--main-bg-color);
|
|
|
|
color: var(--link-color);
|
|
|
|
}
|
|
|
|
</style>
|