Feat: implement callback for TwitterAPI linking

This commit is contained in:
kittentm 2026-03-22 21:00:40 +01:00
commit 67933ec76a
No known key found for this signature in database
GPG key ID: AC43DFDBC1F44A91
3 changed files with 76 additions and 0 deletions

22
callback/styles.css Normal file
View file

@ -0,0 +1,22 @@
body {
font-family: sans-serif;
text-align: center;
padding-top: 50px;
background: #1a1a1a;
color: white;
}
.loader {
border: 4px solid #f3f3f3;
border-top: 4px solid #1DA1F2;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 2s linear infinite;
margin: 20px auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}