36 lines
629 B
Svelte
36 lines
629 B
Svelte
<svelte:head>
|
|
<title>WompMacho.com</title>
|
|
</svelte:head>
|
|
|
|
<img class="rounded" src="./img/old_photos/swordColorBalenced_1.jpg" alt="django gif">
|
|
|
|
<h1>wadup fool</h1>
|
|
|
|
<div class="container rounded">
|
|
<p>Eventually This will be replaced with an embed of the stream when live. Working on other things atm.</p>
|
|
</div>
|
|
|
|
<style>
|
|
h1 {
|
|
text-align: center;
|
|
font-size: x-large;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
}
|
|
|
|
img{
|
|
width: 100%;
|
|
padding: 1em;
|
|
}
|
|
|
|
.container{
|
|
display: inline-flexbox;
|
|
}
|
|
|
|
p{
|
|
margin: 1em;
|
|
border-radius: 5px;
|
|
padding: 1em;
|
|
background-color: #333333;
|
|
}
|
|
</style> |