cleanup, tweak design
This commit is contained in:
parent
e7d8632154
commit
bd6e2827c9
|
@ -36,14 +36,6 @@ input {
|
|||
padding: 5px;
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
input {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
button {
|
||||
font-size: 1.2em;
|
||||
border: 1px solid #333;
|
||||
|
@ -74,8 +66,6 @@ button.primary:active {
|
|||
background: #99b3ff;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
p, label, input {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
p, label, input {
|
||||
font-size: 1.3em;
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" viewBox="0 0 100 125" x="0px" y="0px"><title>Artboard 1</title><path d="M92.12,59.93H59.87V8.23C70.4,14.9,87.34,30,92.12,59.93ZM31,26.9A122.4,122.4,0,0,1,9.39,60.35H31ZM37.76,99H62.24A30.67,30.67,0,0,0,92.91,68.33H50.52V6.27A5.27,5.27,0,0,0,40,6.27V68.33H7.09A30.67,30.67,0,0,0,37.76,99Z"/><text x="0" y="115" fill="#000000" font-size="5px" font-weight="bold" font-family="'Helvetica Neue', Helvetica, Arial-Unicode, Arial, Sans-serif">Created by Gregor Cresnar</text><text x="0" y="120" fill="#000000" font-size="5px" font-weight="bold" font-family="'Helvetica Neue', Helvetica, Arial-Unicode, Arial, Sans-serif">from the Noun Project</text></svg>
|
Before Width: | Height: | Size: 708 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" viewBox="0 0 100 100" x="0px" y="0px"><title>Artboard 1</title><path d="M92.12,59.93H59.87V8.23C70.4,14.9,87.34,30,92.12,59.93ZM31,26.9A122.4,122.4,0,0,1,9.39,60.35H31ZM37.76,99H62.24A30.67,30.67,0,0,0,92.91,68.33H50.52V6.27A5.27,5.27,0,0,0,40,6.27V68.33H7.09A30.67,30.67,0,0,0,37.76,99Z" fill="#ffffff"/></svg>
|
Before Width: | Height: | Size: 372 B |
|
@ -3,9 +3,8 @@
|
|||
</:Head>
|
||||
|
||||
<Layout page='federated'>
|
||||
<h1>Federated</h1>
|
||||
<h1>Federated Timeline</h1>
|
||||
|
||||
<p>This is the 'federated' page. There's not much here.</p>
|
||||
</Layout>
|
||||
|
||||
<script>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<svg alt="Pinafore logo" class="logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M92.12 59.93H59.87V8.23C70.4 14.9 87.34 30 92.12 59.93zM31 26.9A122.4 122.4 0 0 1 9.39 60.35H31zM37.76 99h24.48a30.67 30.67 0 0 0 30.67-30.67H50.52V6.27a5.27 5.27 0 0 0-10.52 0v62.06H7.09A30.67 30.67 0 0 0 37.76 99z"/></svg>
|
||||
<h1>Pinafore</h1>
|
||||
</div>
|
||||
<p>Pinafore is a web client for <a href="https://joinmastodon.org">Mastodon</a>, optimized for performance and simplicity.</p>
|
||||
<p>Pinafore is a web client for <a href="https://joinmastodon.org">Mastodon</a>, optimized for speed and simplicity.</p>
|
||||
|
||||
<p>To get started, <a href="/settings/add-instance">log in to an instance</a>.</p>
|
||||
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
<Layout page='local'>
|
||||
<h1>Local</h1>
|
||||
|
||||
<p>This is the 'local' page. There's not much here.</p>
|
||||
</Layout>
|
||||
|
||||
<script>
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
<Layout page='notifications'>
|
||||
<h1>Notifications</h1>
|
||||
|
||||
<p>This is the 'notifications' page. There's not much here.</p>
|
||||
</Layout>
|
||||
|
||||
<script>
|
||||
|
|
|
@ -10,9 +10,7 @@
|
|||
<link rel='icon' type='image/png' href='/favicon.png'>
|
||||
|
||||
<script>
|
||||
if (!location.origin.match('localhost') &&
|
||||
!location.origin.match('127.0.0.1') &&
|
||||
'serviceWorker' in navigator) {
|
||||
if (!location.origin.match('localhost') && 'serviceWorker' in navigator) {
|
||||
navigator.serviceWorker.register('/service-worker.js');
|
||||
}
|
||||
</script>
|
||||
|
|
Loading…
Reference in New Issue