empieza a meter cosicas y una plantilla
parent
015172df86
commit
51602cf953
@ -1,7 +1,51 @@
|
|||||||
<script>
|
<script>
|
||||||
import {title} from '$lib/stores/store'
|
import {title, subtitle, date, address, content, heading} from '$lib/stores/store'
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="preview">
|
<div class="preview">
|
||||||
{$title}
|
<div class="result">
|
||||||
|
<div class="heading">{$heading}</div>
|
||||||
|
<div class="title">{$title}</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.preview {
|
||||||
|
padding: 1rem;
|
||||||
|
display: grid;
|
||||||
|
justify-content: center;
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.result {
|
||||||
|
display: block;
|
||||||
|
aspect-ratio: 1/1.4142;
|
||||||
|
max-height: 92vh;
|
||||||
|
align-self: center;
|
||||||
|
background-color: lightblue;
|
||||||
|
width: auto;
|
||||||
|
background-image: url('imagen01.png');
|
||||||
|
background-size: contain;
|
||||||
|
position: relative;
|
||||||
|
padding: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
position: absolute;
|
||||||
|
top: 370px;
|
||||||
|
left: 1rem;
|
||||||
|
font-family: 'Gill Sans', sans-serif;
|
||||||
|
font-size: 2.5rem;
|
||||||
|
font-variant: small-caps;
|
||||||
|
right: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading {
|
||||||
|
position: absolute;
|
||||||
|
top: 350px;
|
||||||
|
left: 1rem;
|
||||||
|
right: 1rem;
|
||||||
|
font-size: 2rem;
|
||||||
|
color: grey;
|
||||||
|
font-variant: small-caps;}
|
||||||
|
</style>
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
import {writable} from 'svelte/store'
|
import {writable} from 'svelte/store'
|
||||||
|
|
||||||
export const title = writable("");
|
export const title = writable("");
|
||||||
|
export const heading = writable("");
|
||||||
|
export const subtitle = writable("");
|
||||||
|
export const content = writable("");
|
||||||
|
export const date = writable("");
|
||||||
|
export const address = writable("");
|
||||||
|
Binary file not shown.
After Width: | Height: | Size: 2.6 MiB |
Loading…
Reference in New Issue