blob: f9467df5c26b005c6b0b75ceac2a6786bc03bff7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<svelte:head>
<title>Home | Capybara Markets</title>
<meta name="description" content="Dashboard" />
</svelte:head>
<section>
<!-- <h1>
<span class="welcome">
<img src="NameYellow.png" alt="Capybara Markets" />
</span>
</h1> -->
<h1>Capybara Markets</h1>
<h2>Your one-stop shop to all things finance</h2>
<p>
Capybara Markets delivers complete coverage of finance, <strong>#crypto</strong>, and the world.
</p>
</section>
<style>
section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex: 1;
width: 100%;
max-width: var(--column-width);
margin: var(--column-margin-top) auto 0 auto;
}
/* h1 {
width: 60%;
} */
/* .welcome {
display: block;
position: relative;
width: 100%;
height: 0;
padding: 0 0 calc(100% * 495 / 2048) 0;
}
.welcome img {
position: absolute;
width: 100%;
height: 100%;
top: 0;
display: block;
} */
</style>
|