30 lines
632 B
Svelte
30 lines
632 B
Svelte
<script>
|
|
export let title = "Quartznet";
|
|
</script>
|
|
|
|
<style>
|
|
.overlay {
|
|
display: flex;
|
|
background-image: url("/img/bluenebula.webp");
|
|
background-size: cover;
|
|
background-position: center;
|
|
min-height: 200px;
|
|
text-align: center;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.title {
|
|
display: inline-block;
|
|
font-size: 3rem;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
|
|
<div class="overlay">
|
|
<div class="description col-md-5">
|
|
<h1 class="title">{title}</h1>
|
|
<p>Software, Games, Science, Space!</p>
|
|
</div>
|
|
</div>
|