This commit is contained in:
parent
6f59cf76f7
commit
f925af6352
2 changed files with 10 additions and 8 deletions
|
@ -1,17 +1,19 @@
|
|||
<script>
|
||||
import BottomAppBar from './components/BottomAppBar.svelte';
|
||||
import Path from './components/Path.svelte';
|
||||
import Splash from './components/Splash.svelte';
|
||||
</script>
|
||||
|
||||
<Splash></Splash>
|
||||
<header>
|
||||
<div id="welcome-message">Benvenuti a <span class="bold">Pianello Val Tidone</span></div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<div id="route-cards">
|
||||
<Path color="#de0e1b" type="naturalistici" />
|
||||
<Path color="#f6ae04" type="storici" />
|
||||
<Path color="#213c8b" type="tradizionalisti" />
|
||||
<Path color="#de0e1b" type="naturalistici" />
|
||||
<Path color="#f6ae04" type="storici" />
|
||||
<Path color="#213c8b" type="tradizionalisti" />
|
||||
</div>
|
||||
</main>
|
||||
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
import { onMount } from 'svelte';
|
||||
import { fade } from 'svelte/transition';
|
||||
|
||||
let visible = false;
|
||||
let visible = true;
|
||||
|
||||
onMount(() => {
|
||||
setTimeout(() => {
|
||||
visible = true;
|
||||
}, 500);
|
||||
visible = false;
|
||||
}, 1000);
|
||||
});
|
||||
</script>
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
|||
|
||||
<style>
|
||||
img {
|
||||
height: auto;
|
||||
position: absolute;
|
||||
height: 100vh;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue