-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1 lines (1 loc) · 1.93 KB
/
index.html
1
<!DOCTYPE html><html lang="en"><head><title>Twitter ID decomposition</title><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><script defer src="/twitterid/index.c16edda7.js"></script><link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet"></head><body class="bg-gray-50"> <div class="flex flex-col flex-nowrap items-center"> <div class="font-bold font-sans mb-6 mt-24 text-6xl text-gray-900"> Twitter ID decomposition </div> <div class="font-light font-sans mb-8 mt-0 text-gray-500 text-sm tracking-wide"> Discover what's inside the ID of a tweet </div> <div class="bg-gradient-to-r flex flex-row from-blue-400 mb-4 pb-6 pt-6 px-8 rounded shadow-md space-x-5 to-blue-600"> <input class="appearance-none border focus:outline-none focus:shadow-outline leading-tight px-3 py-2 rounded shadow text-gray-700 w-full" id="tweetid" type="text" placeholder="Type here the Tweet ID" "=""> <button id="button" class="bg-white border border-gray-400 font-semibold hover:bg-gray-100 px-4 py-2 rounded shadow text-gray-800"> Calculate! </button> </div> <div id="resultDIV" class="border-b border-gray-200 mt-12 overflow-hidden rounded shadow"> <table id="table" class="bg-white min-w-full"> <thead class="bg-gray-800 text-white"> <tr> <th class="font-semibold px-4 py-3 text-left text-sm uppercase">Tweet ID</th> <th class="font-semibold px-4 py-3 text-left text-sm uppercase">Twitter datetime</th> <th class="font-semibold px-4 py-3 text-left text-sm uppercase">Milliseconds</th> <th class="font-semibold px-4 py-3 text-left text-sm uppercase">Reserved Bit</th> <th class="font-semibold px-4 py-3 text-left text-sm uppercase">Datacenter</th> <th class="font-semibold px-4 py-3 text-left text-sm uppercase">Worker thread</th> <th class="font-semibold px-4 py-3 text-left text-sm uppercase">Sequence number</th> </tr> </thead> <tbody class="text-gray-700"> </tbody> </table> </div> </div> </body></html>