This commit is contained in:
parent
38f587c7e0
commit
28190d0804
6 changed files with 98 additions and 22 deletions
41
frontend/src/css/app.css
Normal file
41
frontend/src/css/app.css
Normal file
|
@ -0,0 +1,41 @@
|
|||
|
||||
:root {
|
||||
--footer-height: calc(68px + 20px + 20px);
|
||||
--accent-color: #213c8b;
|
||||
--pianello-red: #de0e1b;
|
||||
--pianello-yellow: #f6ae04;
|
||||
--pianello-blue: #213c8b;
|
||||
--card-background-color: #f9f4f1;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
background-color: #fff;
|
||||
font-family: 'Roboto-Regular';
|
||||
display: grid;
|
||||
}
|
||||
|
||||
header,
|
||||
main,
|
||||
footer {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Regular';
|
||||
src: url('/fonts/roboto/Roboto-Regular.ttf') format('TrueType');
|
||||
}
|
|
@ -18,11 +18,10 @@
|
|||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
|
||||
}
|
||||
#container {
|
||||
display: flex;
|
||||
height: 68px;
|
||||
height: 10vh;
|
||||
justify-content: center;
|
||||
width: 90%;
|
||||
border-radius: 90px;
|
||||
|
|
|
@ -1,14 +1,12 @@
|
|||
<script lang="ts">
|
||||
export let title: string = 'Naturalistici';
|
||||
export let transparent = false;
|
||||
|
||||
const goBack = () => {
|
||||
history.back();
|
||||
};
|
||||
</script>
|
||||
|
||||
{#if transparent}
|
||||
<div style='background-color: transparent; color: black; justify-content: space-between; margin: 0 auto; width: 80%;'>
|
||||
<div style=''>
|
||||
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
||||
<!-- svelte-ignore a11y-missing-attribute -->
|
||||
|
@ -18,28 +16,20 @@
|
|||
|
||||
<img src="/images/app-bar-logo.png" alt="" />
|
||||
</div>
|
||||
{:else}
|
||||
<div>
|
||||
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
||||
<!-- svelte-ignore a11y-missing-attribute -->
|
||||
<a on:click={goBack}>
|
||||
<img class="back" src="/images/white-back-arrow.png" alt="" />
|
||||
</a>
|
||||
<p>Percorsi <b>{title}</b></p>
|
||||
<img src="/images/app-bar-logo.png" alt="" />
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<style>
|
||||
div {
|
||||
color: white;
|
||||
padding: 5px;
|
||||
position: fixed;
|
||||
padding: 15px;
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
margin: 0 auto;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-evenly;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
background-color: #de0e1b;
|
||||
}
|
||||
div a {
|
||||
cursor: pointer;
|
||||
|
|
43
frontend/src/lib/components/HomeHeader.svelte
Normal file
43
frontend/src/lib/components/HomeHeader.svelte
Normal file
|
@ -0,0 +1,43 @@
|
|||
<script lang="ts">
|
||||
export let title: string = 'Naturalistici';
|
||||
|
||||
const goBack = () => {
|
||||
history.back();
|
||||
};
|
||||
</script>
|
||||
|
||||
<div>
|
||||
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
||||
<!-- svelte-ignore a11y-missing-attribute -->
|
||||
<a on:click={goBack}>
|
||||
<img class="back" src="/images/white-back-arrow.png" alt="" />
|
||||
</a>
|
||||
<p>Percorsi <b>{title}</b></p>
|
||||
<img src="/images/app-bar-logo.png" alt="" />
|
||||
</div>
|
||||
|
||||
<style>
|
||||
div {
|
||||
color: white;
|
||||
padding: 5px;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-evenly;
|
||||
align-items: center;
|
||||
background-color: #de0e1b;
|
||||
}
|
||||
div a {
|
||||
cursor: pointer;
|
||||
}
|
||||
div a img {
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
img {
|
||||
height: 40px;
|
||||
}
|
||||
.back {
|
||||
height: 20px;
|
||||
}
|
||||
</style>
|
|
@ -59,6 +59,7 @@
|
|||
padding: 15px;
|
||||
border-bottom: 1px solid #eee;
|
||||
cursor: pointer;
|
||||
|
||||
}
|
||||
|
||||
.tab {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
</script>
|
||||
|
||||
|
||||
<Header transparent></Header>
|
||||
<Header></Header>
|
||||
<img src='/splash.jpeg' alt='splash'>
|
||||
|
||||
<div id='divider'>
|
||||
|
@ -21,10 +21,12 @@
|
|||
#divider {
|
||||
background: white;
|
||||
margin-top: 0px;
|
||||
margin-top: 20vh;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue