Compare commits
No commits in common. "28190d08044d067add2c7615a92b951095489e9d" and "e7a69f2e7829aabacea5c48b2776404e1400a768" have entirely different histories.
28190d0804
...
e7a69f2e78
6 changed files with 33 additions and 118 deletions
|
@ -1,41 +0,0 @@
|
||||||
|
|
||||||
: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');
|
|
||||||
}
|
|
|
@ -1,5 +1,4 @@
|
||||||
<div id="container-of-container">
|
<div id="container">
|
||||||
<div id="container">
|
|
||||||
<a href="/">
|
<a href="/">
|
||||||
<img src="/images/home-icon.png" alt="home" />
|
<img src="/images/home-icon.png" alt="home" />
|
||||||
</a>
|
</a>
|
||||||
|
@ -9,25 +8,18 @@
|
||||||
<a href="/settings">
|
<a href="/settings">
|
||||||
<img src="/images/settings-icon.png" alt="settings" />
|
<img src="/images/settings-icon.png" alt="settings" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
#container-of-container {
|
|
||||||
width: 100%;
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
#container {
|
#container {
|
||||||
display: flex;
|
display: flex;
|
||||||
height: 10vh;
|
height: 68px;
|
||||||
justify-content: center;
|
|
||||||
width: 90%;
|
width: 90%;
|
||||||
border-radius: 90px;
|
border-radius: 90px;
|
||||||
box-shadow: 0 0 50px #ccc;
|
box-shadow: 0 0 50px #ccc;
|
||||||
background-color: var(--card-background-color);
|
background-color: var(--card-background-color);
|
||||||
margin: 0 auto;
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,14 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export let title: string = 'Naturalistici';
|
export let title: string = 'Naturalistici';
|
||||||
|
export let transparent = false;
|
||||||
|
|
||||||
const goBack = () => {
|
const goBack = () => {
|
||||||
history.back();
|
history.back();
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div style=''>
|
{#if transparent}
|
||||||
|
<div style='background-color: transparent; color: black; justify-content: space-between; margin: 0 auto; width: 80%;'>
|
||||||
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
||||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
||||||
<!-- svelte-ignore a11y-missing-attribute -->
|
<!-- svelte-ignore a11y-missing-attribute -->
|
||||||
|
@ -16,20 +18,28 @@
|
||||||
|
|
||||||
<img src="/images/app-bar-logo.png" alt="" />
|
<img src="/images/app-bar-logo.png" alt="" />
|
||||||
</div>
|
</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>
|
<style>
|
||||||
div {
|
div {
|
||||||
position: fixed;
|
color: white;
|
||||||
padding: 15px;
|
padding: 5px;
|
||||||
background-color: transparent;
|
|
||||||
color: black;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding-left: 15px;
|
|
||||||
padding-right: 15px;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-evenly;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
background-color: #de0e1b;
|
||||||
}
|
}
|
||||||
div a {
|
div a {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
<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,7 +59,6 @@
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid #eee;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab {
|
.tab {
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
<Header></Header>
|
<Header transparent></Header>
|
||||||
<img src='/splash.jpeg' alt='splash'>
|
<img src='/splash.jpeg' alt='splash'>
|
||||||
|
|
||||||
<div id='divider'>
|
<div id='divider'>
|
||||||
|
@ -21,12 +21,10 @@
|
||||||
#divider {
|
#divider {
|
||||||
background: white;
|
background: white;
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
margin-top: 20vh;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue