ya añade varios elementos sobre una imagen que no se adapta al tamaño de la pantalla sino que es más fija que el copón
parent
51602cf953
commit
5fa2cb6d1b
@ -1,34 +1,52 @@
|
|||||||
<script>
|
<script>
|
||||||
import { title } from '$lib/stores/store';
|
import { title, heading, subtitle, content, date, address } from '$lib/stores/store';
|
||||||
|
|
||||||
const handleSubmit = async () => {
|
const handleSubmit = async () => {
|
||||||
console.log('submit');
|
console.log('submit');
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<form on:submit|preventDefault={handleSubmit}>
|
<form on:submit|preventDefault={handleSubmit}>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="heading">Antetítulo</label>
|
||||||
|
<input bind:value={$heading} type="text" name="heading" placeholder="Antetítulo" />
|
||||||
|
</div>
|
||||||
|
<div clasS="form-group">
|
||||||
<label for="title">Título</label>
|
<label for="title">Título</label>
|
||||||
<input bind:value={$title} type="text" name="title" placeholder="Título" />
|
<input bind:value={$title} type="text" name="title" placeholder="Título" />
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="subtitle">Subtítulo</label>
|
||||||
|
<input bind:value={$subtitle} type="text" name="subtitle" placeholder="Subtítulo" />
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="content">Contenido</label>
|
||||||
|
<input bind:value={$content} type="text" name="content" placeholder="Contenido" />
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
form {
|
.form-group {
|
||||||
margin: 1rem;
|
margin: 2rem 0;
|
||||||
display: block;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
input {
|
form {
|
||||||
display: block;
|
margin: 1rem;
|
||||||
width: 100%;
|
display: block;
|
||||||
font-size: 1rem;
|
}
|
||||||
font-family: monospace;
|
|
||||||
padding: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
input {
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 1rem;
|
width: 100%;
|
||||||
font-family: monospace;
|
font-size: 1rem;
|
||||||
margin: 0.5rem 0;
|
font-family: monospace;
|
||||||
}
|
padding: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
display: block;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-family: monospace;
|
||||||
|
margin: 0.5rem 0;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 2.6 MiB After Width: | Height: | Size: 866 KiB |
Loading…
Reference in New Issue