@ -0,0 +1,35 @@
|
|||||||
|
<script>
|
||||||
|
import { templates } from '$lib/templates/templates';
|
||||||
|
|
||||||
|
/** @type number */ export let templateIndex;
|
||||||
|
import { city } from '$lib/stores/store';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#if templates[templateIndex] && $city}
|
||||||
|
<div
|
||||||
|
class="city"
|
||||||
|
style="
|
||||||
|
top: {templates[templateIndex].city.top}px;
|
||||||
|
height: {templates[templateIndex].city.height}rem;
|
||||||
|
left: {templates[templateIndex].city.left}rem;
|
||||||
|
right: {templates[templateIndex].city.right}rem;
|
||||||
|
color: {templates[templateIndex].city.color};
|
||||||
|
font-size: {templates[templateIndex].city.fontSize}rem;
|
||||||
|
font-family: {templates[templateIndex].city.fontFamily};
|
||||||
|
line-height: {templates[templateIndex].city.lineHeight};
|
||||||
|
text-align: {templates[templateIndex].city.textAlign};
|
||||||
|
font-weight: {templates[templateIndex].city.fontWeight};
|
||||||
|
line-height: {templates[templateIndex].city.lineHeight}rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
{$city}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.city {
|
||||||
|
position: absolute;
|
||||||
|
overflow: hidden;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue