test routes

This commit is contained in:
2020-07-24 15:16:04 +02:00
parent ece775ba28
commit dec9552cd2
7 changed files with 82 additions and 2 deletions

View File

@@ -2,6 +2,29 @@
import SimplePage from '../components/SimplePage.svelte'
</script>
<style>
img {
position: absolute;
z-index: -1;
object-fit: contain;
width: 24vw;
height: 30vw;
left: 35em;
top: 12em;
}
@media (max-width: 55em) {
img {
position: initial;
width: 100%;
height: 100%;
object-position: right;
max-height: 20em;
margin-top: 4em;
}
}
</style>
<svelte:head>
<title>About</title>
</svelte:head>
@@ -19,4 +42,5 @@
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur
sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<img src="/images/about.jpg" alt="decoration" />
</SimplePage>