Add some dark styles

This commit is contained in:
2019-09-10 21:23:50 +02:00
parent 3fc5ad4d90
commit 5e6971692e
5 changed files with 75 additions and 17 deletions

View File

@@ -15,6 +15,16 @@
export let content
</script>
<style>
:global([id])::before {
content: '';
display: block;
height: 3em;
margin-top: -3em;
visibility: hidden;
}
</style>
<svelte:head>
<title>{content.title}</title>
</svelte:head>
@@ -23,11 +33,11 @@
<h2>Software Developer</h2>
<section class="personal-information">
<section id="personal-information">
{@html content.body}
</section>
<section class="work-history">
<section id="work-history">
<h2>Work experience</h2>
<section class="work-history-prelude">
{@html content.workHistoryPrelude}
@@ -41,7 +51,7 @@
</ul>
</section>
<section class="projects">
<section id="projects">
<h2>Projects</h2>
<ul>
{#each content.projects as project}
@@ -52,7 +62,7 @@
</ul>
</section>
<section class="education">
<section id="education">
<h2>Education</h2>
<ul>
{#each content.education as work}