eeeeee macarena
This commit is contained in:
parent
494f2f8e4a
commit
d58073d1be
Binary file not shown.
Before Width: | Height: | Size: 444 KiB After Width: | Height: | Size: 443 KiB |
|
@ -1,6 +1,7 @@
|
|||
body {
|
||||
margin: 0;
|
||||
font-family: sans-serif;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
*, *::before, *::after {
|
||||
|
@ -13,6 +14,18 @@ body > section, body > header {
|
|||
margin-right: auto;
|
||||
padding-left: 3rem;
|
||||
padding-right: 3rem;
|
||||
}
|
||||
|
||||
header > h1 {
|
||||
margin: 0;
|
||||
text-indent:-1000vw;
|
||||
background: url('/static/logotype.png') no-repeat 2rem bottom, white;
|
||||
background-size: contain;
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
|
||||
body > section {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
|
@ -41,14 +54,6 @@ header {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
margin-top: 0;
|
||||
text-indent:-1000vw;
|
||||
background: url('/static/logotype.png') no-repeat 2rem bottom, white;
|
||||
background-size: contain;
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
input[type=number]{
|
||||
max-width: 8ch;
|
||||
}
|
||||
|
|
|
@ -54,12 +54,17 @@
|
|||
<section>
|
||||
|
||||
<h2>Tweet archive import</h2>
|
||||
<p>
|
||||
Twitter's API only lets us access up to 3200 of your most recent tweets. If you have more tweets than that, you can request an archive of your tweets from
|
||||
<a href="https://twitter.com/settings/account">Twitter's settings page</a>,
|
||||
and upload it here.
|
||||
</p>
|
||||
<form action='{{url_for('upload_tweet_archive')}}' method='post' enctype='multipart/form-data'>
|
||||
<input type="file" name='file'><input type="submit">
|
||||
<input type="file" name='file'><input type="submit" value="Upload">
|
||||
</form>
|
||||
|
||||
{% if g.viewer.account.twitter_archives %}
|
||||
<h3 >Recent tweet archive imports</h3>
|
||||
<h3 >Recent imports</h3>
|
||||
<ul>
|
||||
{% for archive in g.viewer.account.twitter_archives %}
|
||||
<li>{{archive.created_at.strftime('%Y-%m-%d %H:%M')}}<br>
|
||||
|
|
Loading…
Reference in New Issue