+ surfers setup
This commit is contained in:
parent
5a918b0350
commit
c6ff2f1110
1 changed files with 27 additions and 0 deletions
27
frontend/src/routes/surfers/+page.svelte
Normal file
27
frontend/src/routes/surfers/+page.svelte
Normal file
|
@ -0,0 +1,27 @@
|
|||
<script>
|
||||
import Logo from "$lib/img/topscorer_logo_web.png"
|
||||
</script>
|
||||
|
||||
<div class="header">
|
||||
<img src={Logo} alt="logo">
|
||||
<span class="title">Surfers Edit</span>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.header {
|
||||
background-color: black;
|
||||
display:grid;
|
||||
grid-template-columns: auto 2fr;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.header img {
|
||||
height: 3rem;
|
||||
}
|
||||
|
||||
.header .title {
|
||||
font-size: 1.5em;
|
||||
color: aliceblue;
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Reference in a new issue