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>
|
||||
import { title } from '$lib/stores/store';
|
||||
import { title, heading, subtitle, content, date, address } from '$lib/stores/store';
|
||||
|
||||
const handleSubmit = async () => {
|
||||
console.log('submit');
|
||||
};
|
||||
const handleSubmit = async () => {
|
||||
console.log('submit');
|
||||
};
|
||||
</script>
|
||||
|
||||
<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>
|
||||
<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>
|
||||
|
||||
<style>
|
||||
form {
|
||||
margin: 1rem;
|
||||
display: block;
|
||||
}
|
||||
.form-group {
|
||||
margin: 2rem 0;
|
||||
}
|
||||
|
||||
input {
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: 1rem;
|
||||
font-family: monospace;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
form {
|
||||
margin: 1rem;
|
||||
display: block;
|
||||
}
|
||||
|
||||
label {
|
||||
display: block;
|
||||
font-size: 1rem;
|
||||
font-family: monospace;
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
input {
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: 1rem;
|
||||
font-family: monospace;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
label {
|
||||
display: block;
|
||||
font-size: 1rem;
|
||||
font-family: monospace;
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
</style>
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 2.6 MiB After Width: | Height: | Size: 866 KiB |
Loading…
Reference in New Issue