forked from spacebar/SplatNet
Feat: implement callback for TwitterAPI linking
This commit is contained in:
parent
7b586bbd5e
commit
67933ec76a
3 changed files with 76 additions and 0 deletions
22
callback/styles.css
Normal file
22
callback/styles.css
Normal 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); }
|
||||
}
|
||||
Loading…
Reference in a new issue