1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 22:57:36 +01:00

56 lines
1.3 KiB
HTML
Raw Normal View History

2018-01-20 20:30:49 -08:00
<HiddenFromSSR>
<FreeTextLayout>
<div class="not-logged-in-home">
<div class="banner">
<svg aria-hidden="true" class="logo">
<use xlink:href="#pinafore-logo" />
</svg>
<h1>Pinafore</h1>
</div>
<p>Pinafore is a web client for <a rel="noopener" target="_blank" href="https://joinmastodon.org">Mastodon</a>, optimized for speed and simplicity.</p>
2018-01-08 18:14:21 -08:00
2018-01-20 20:30:49 -08:00
<p>To get started, <a href="/settings/instances/add">log in to an instance</a>.</p>
2018-01-08 18:14:21 -08:00
2018-01-20 20:30:49 -08:00
<p>Don't have an instance? <a rel="noopener" target="_blank" href="https://joinmastodon.org">Join Mastodon!</a></p>
</div>
</FreeTextLayout>
</HiddenFromSSR>
2018-01-08 18:14:21 -08:00
<style>
2018-01-15 21:58:31 -08:00
.not-logged-in-home {
margin: 10px;
}
.not-logged-in-home .banner {
2018-01-08 18:14:21 -08:00
display: flex;
align-items: center;
2018-01-13 10:53:25 -08:00
margin: 0 0 30px;
2018-01-08 18:14:21 -08:00
}
.not-logged-in-home svg {
2018-01-08 18:14:21 -08:00
width: 70px;
height: 70px;
fill: royalblue;
display: inline-block;
}
.not-logged-in-home h1 {
2018-01-08 18:14:21 -08:00
color: royalblue;
display: inline-block;
font-size: 3em;
margin: auto 15px;
}
@media (max-width: 767px) {
.not-logged-in-home h1 {
2018-01-08 18:14:21 -08:00
font-size: 2.7em;
}
}
2018-01-12 18:57:50 -08:00
</style>
<script>
import FreeTextLayout from './FreeTextLayout.html'
2018-01-20 20:30:49 -08:00
import HiddenFromSSR from './HiddenFromSSR.html'
2018-01-13 20:33:14 -08:00
2018-01-12 18:57:50 -08:00
export default {
components: {
2018-01-20 20:30:49 -08:00
FreeTextLayout,
HiddenFromSSR
2018-01-12 18:57:50 -08:00
}
}
</script>