This commit is contained in:
cupcakearmy 2020-07-24 15:30:46 +02:00
parent dec9552cd2
commit 6923124578
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
2 changed files with 40 additions and 2 deletions

View File

@ -2,4 +2,41 @@
export let project export let project
</script> </script>
<div>{project.title}</div> <style>
h2 {
font-size: 2em;
margin-bottom: 0.75em;
}
div {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: baseline;
}
section {
margin-bottom: 4em;
}
ion-icon {
transform: translateY(0.25em);
}
</style>
<section>
<div>
<h2>{project.name}</h2>
</div>
<div>
<b>{project.title}</b>
<b>{project.date}</b>
</div>
<p>{project.body}</p>
<ion-icon name="link-outline" />
<a href={project.link}>{project.link.replace(/https?:\/\//, '')}</a>
</section>

View File

@ -26,7 +26,7 @@ h5,
h6 { h6 {
font-family: 'Playfair Display', serif; font-family: 'Playfair Display', serif;
font-weight: normal; font-weight: normal;
margin: 0 0.5em 0 0; margin: 0.5em 0;
} }
p { p {
@ -40,4 +40,5 @@ p {
a { a {
color: inherit; color: inherit;
text-decoration: none;
} }